func (sg *OpenGLGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) { //log.Panicf("Unimplemented: %s", whoami()) chart.GenericXAxis(sg, xr, ys, yms, options) //log.Printf("X: %v %v %v %+v", xr, ys, yms, options) }
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) { chart.GenericXAxis(sg, xr, ys, yms, options) }
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int) { chart.GenericXAxis(sg, xr, ys, yms) }
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) { chart.GenericXAxis(ig, xr, ys, yms, options) }
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int) { chart.GenericXAxis(ig, xr, ys, yms) }