rgoplot/line_no_dot.go

21 lines
389 B
Go
Raw Permalink Normal View History

2013-09-27 22:10:34 +08:00
package main
import (
"fmt"
)
type LineNoDotChart struct {
LineChart
}
func (l *LineNoDotChart) NewChart(name string) string {
return fmt.Sprintf("new Chart(document.getElementById(\"%s\").getContext(\"2d\")).Line(eval('('+lineJsonStr+')'), {pointDot : false});", name)
}
func init() {
line := new(LineNoDotChart)
line.name = "line_no_dot"
ChartHandlers["line_no_dot"] = line
}