HideAxes hides the X and Y axes.
()
| 472 | |
| 473 | // HideAxes hides the X and Y axes. |
| 474 | func (p *Plot) HideAxes() { |
| 475 | p.HideX() |
| 476 | p.HideY() |
| 477 | } |
| 478 | |
| 479 | // NominalY is like NominalX, but for the Y axis. |
| 480 | func (p *Plot) NominalY(names ...string) { |