XY implements the XY method of the XYer interface.
(i int)
| 228 | |
| 229 | // XY implements the XY method of the XYer interface. |
| 230 | func (xy XYValues) XY(i int) (float64, float64) { |
| 231 | x, y, _ := xy.XYZ(i) |
| 232 | return x, y |
| 233 | } |
| 234 | |
| 235 | // Labeller wraps the Label methods. |
| 236 | type Labeller interface { |