Grid implements the plot.Plotter interface, drawing a set of grid lines at the major tick marks.
| 23 | // Grid implements the plot.Plotter interface, drawing |
| 24 | // a set of grid lines at the major tick marks. |
| 25 | type Grid struct { |
| 26 | // Vertical is the style of the vertical lines. |
| 27 | Vertical draw.LineStyle |
| 28 | |
| 29 | // Horizontal is the style of the horizontal lines. |
| 30 | Horizontal draw.LineStyle |
| 31 | } |
| 32 | |
| 33 | // NewGrid returns a new grid with both vertical and |
| 34 | // horizontal lines using the default grid line style. |
nothing calls this directly
no outgoing calls
no test coverage detected