コード例 #1
0
ファイル: openglg.go プロジェクト: go-gl-legacy/glchart
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)
}