OpenFS opens the Table data from a csv (comma-separated values) file (or any delim) from the given filesystem.
(fsys fs.FS, filename core.Filename, delim table.Delims)
| 235 | // OpenFS opens the Table data from a csv (comma-separated values) file (or any delim) |
| 236 | // from the given filesystem. |
| 237 | func (pl *PlotEditor) OpenFS(fsys fs.FS, filename core.Filename, delim table.Delims) { |
| 238 | pl.table.Table.OpenFS(fsys, string(filename), delim) |
| 239 | pl.dataFile = filename |
| 240 | pl.UpdatePlot() |
| 241 | } |
| 242 | |
| 243 | // yLabel returns the Y-axis label |
| 244 | func (pl *PlotEditor) yLabel() string { |
nothing calls this directly
no test coverage detected