示例#1
0
func (sg *OpenGLGraphics) Key(x, y int, key chart.Key, options chart.PlotOptions) {
	//log.Panicf("Unimplemented: %s", whoami())
	chart.GenericKey(sg, x, y, key, options)
}
示例#2
0
文件: svg.go 项目: RobinTec/chart
func (sg *SvgGraphics) Key(x, y int, key chart.Key, options chart.PlotOptions) {
	chart.GenericKey(sg, x, y, key, options)
}
示例#3
0
文件: svg.go 项目: ajstarks/chart
func (sg *SvgGraphics) Key(x, y int, key chart.Key) {
	chart.GenericKey(sg, x, y, key)
}
示例#4
0
文件: image.go 项目: RobinTec/chart
func (ig *ImageGraphics) Key(x, y int, key chart.Key, options chart.PlotOptions) {
	chart.GenericKey(ig, x, y, key, options)
}
示例#5
0
文件: image.go 项目: ajstarks/chart
func (ig *ImageGraphics) Key(x, y int, key chart.Key) {
	chart.GenericKey(ig, x, y, key)
}