예제 #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)
}