Example #1
0
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)
}
Example #2
0
func (sg *SvgGraphics) YAxis(yr chart.Range, xs, xms int, options chart.PlotOptions) {
	chart.GenericYAxis(sg, yr, xs, xms, options)
}
Example #3
0
func (sg *SvgGraphics) YAxis(yr chart.Range, xs, xms int) {
	chart.GenericYAxis(sg, yr, xs, xms)
}
Example #4
0
func (ig *ImageGraphics) YAxis(yr chart.Range, xs, xms int, options chart.PlotOptions) {
	chart.GenericYAxis(ig, yr, xs, xms, options)
}
Example #5
0
func (ig *ImageGraphics) YAxis(yr chart.Range, xs, xms int) {
	chart.GenericYAxis(ig, yr, xs, xms)
}