go-chart/examples/basic/main.go

24 lines
378 B
Go
Raw Normal View History

2019-09-10 00:02:48 -04:00
package main
//go:generate go run main.go
import (
"os"
"github.com/wcharczuk/go-chart"
)
func main() {
graph := chart.Chart{
Series: []chart.Series{
chart.ContinuousSeries{
XValues: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
YValues: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
},
},
}
f, _ := os.Create("output.png")
defer f.Close()
graph.Render(chart.PNG, f)
}