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