示例#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)
}
示例#2
0
文件: svg.go 项目: RobinTec/chart
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) {
	chart.GenericXAxis(sg, xr, ys, yms, options)
}
示例#3
0
文件: svg.go 项目: ajstarks/chart
func (sg *SvgGraphics) XAxis(xr chart.Range, ys, yms int) {
	chart.GenericXAxis(sg, xr, ys, yms)
}
示例#4
0
文件: image.go 项目: RobinTec/chart
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int, options chart.PlotOptions) {
	chart.GenericXAxis(ig, xr, ys, yms, options)
}
示例#5
0
文件: image.go 项目: ajstarks/chart
func (ig *ImageGraphics) XAxis(xr chart.Range, ys, yms int) {
	chart.GenericXAxis(ig, xr, ys, yms)
}