Ejemplo n.º 1
0
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)
}
Ejemplo n.º 2
0
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) {
	chart.GenericXAxis(sg, xr, ys, yms, options)
}
Ejemplo n.º 3
0
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int) {
	chart.GenericXAxis(sg, xr, ys, yms)
}
Ejemplo n.º 4
0
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) {
	chart.GenericXAxis(ig, xr, ys, yms, options)
}
Ejemplo n.º 5
0
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int) {
	chart.GenericXAxis(ig, xr, ys, yms)
}