SetFormatX sets the string format of the X scale labels
(format string)
| 126 | |
| 127 | // SetFormatX sets the string format of the X scale labels |
| 128 | func (ch *Chart) SetFormatX(format string) { |
| 129 | |
| 130 | ch.formatX = format |
| 131 | ch.updateLabelsX() |
| 132 | } |
| 133 | |
| 134 | // SetFormatY sets the string format of the Y scale labels |
| 135 | func (ch *Chart) SetFormatY(format string) { |
no test coverage detected