XYLabels holds XY data with labels. The ith label corresponds to the ith XY.
| 113 | // XYLabels holds XY data with labels. |
| 114 | // The ith label corresponds to the ith XY. |
| 115 | type XYLabels struct { |
| 116 | XYs |
| 117 | Labels []string |
| 118 | } |
| 119 | |
| 120 | // Label returns the label for point index i. |
| 121 | func (l XYLabels) Label(i int) string { |
nothing calls this directly
no outgoing calls
no test coverage detected