コード例 #1
0
ファイル: svg.go プロジェクト: RobinTec/chart
func (sg *SvgGraphics) Boxes(boxes []chart.Box, width int, style chart.Style) {
	chart.GenericBoxes(sg, boxes, width, style)
}
コード例 #2
0
ファイル: openglg.go プロジェクト: go-gl-legacy/glchart
func (sg *OpenGLGraphics) Boxes(boxes []chart.Box, width int, style chart.Style) {
	//log.Panicf("Unimplemented: %s", whoami())
	chart.GenericBoxes(sg, boxes, width, style)
}
コード例 #3
0
ファイル: image.go プロジェクト: RobinTec/chart
func (ig *ImageGraphics) Boxes(boxes []chart.Box, width int, style chart.Style) {
	chart.GenericBoxes(ig, boxes, width, style)
}