func (sg *OpenGLGraphics) YAxis(yr chart.Range, xs, xms int, options chart.PlotOptions) { //log.Panicf("Unimplemented: %s", whoami()) chart.GenericYAxis(sg, yr, xs, xms, options) //log.Printf("Y: %v %v %v %+v", yr, xs, xms, options) }
func (sg *SvgGraphics) YAxis(yr chart.Range, xs, xms int, options chart.PlotOptions) { chart.GenericYAxis(sg, yr, xs, xms, options) }
func (sg *SvgGraphics) YAxis(yr chart.Range, xs, xms int) { chart.GenericYAxis(sg, yr, xs, xms) }
func (ig *ImageGraphics) YAxis(yr chart.Range, xs, xms int, options chart.PlotOptions) { chart.GenericYAxis(ig, yr, xs, xms, options) }
func (ig *ImageGraphics) YAxis(yr chart.Range, xs, xms int) { chart.GenericYAxis(ig, yr, xs, xms) }