SavePNG saves the current plot to a png, capturing current render
(fname core.Filename)
| 205 | |
| 206 | // SavePNG saves the current plot to a png, capturing current render |
| 207 | func (pl *PlotEditor) SavePNG(fname core.Filename) { //types:add |
| 208 | pl.UpdatePlot() |
| 209 | imagex.Save(pl.plot.Pixels, string(fname)) |
| 210 | } |
| 211 | |
| 212 | // SaveCSV saves the Table data to a csv (comma-separated values) file with headers (any delim) |
| 213 | func (pl *PlotEditor) SaveCSV(fname core.Filename, delim table.Delims) { //types:add |
no test coverage detected