SeriesColors sets the series colors.
(ac ...AnsiColor)
| 178 | |
| 179 | // SeriesColors sets the series colors. |
| 180 | func SeriesColors(ac ...AnsiColor) Option { |
| 181 | return optionFunc(func(c *config) { |
| 182 | c.SeriesColors = ac |
| 183 | }) |
| 184 | } |
| 185 | |
| 186 | // SeriesColorGradient colors each plotted point by its value along the given |
| 187 | // stops (lowest value uses the first stop, highest the last), producing a |
searching dependent graphs…