ColumnsFromMetaMap updates all the column settings from given meta map
(meta map[string]string)
| 430 | |
| 431 | // ColumnsFromMetaMap updates all the column settings from given meta map |
| 432 | func (pl *PlotEditor) ColumnsFromMetaMap(meta map[string]string) { |
| 433 | for _, cp := range pl.Columns { |
| 434 | cp.fromMetaMap(meta) |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | // setAllColumns turns all Columns on or off (except X axis) |
| 439 | func (pl *PlotEditor) setAllColumns(on bool) { |
nothing calls this directly
no test coverage detected