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