SetFormatY sets the string format of the Y scale labels
(format string)
| 133 | |
| 134 | // SetFormatY sets the string format of the Y scale labels |
| 135 | func (ch *Chart) SetFormatY(format string) { |
| 136 | |
| 137 | ch.formatY = format |
| 138 | ch.updateLabelsY() |
| 139 | } |
| 140 | |
| 141 | // SetFontSizeX sets the font size for the x scale labels |
| 142 | func (ch *Chart) SetFontSizeX(size float64) { |
no test coverage detected