2019-09-10 00:02:48 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
//go:generate go run main.go
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2020-11-22 19:45:10 -05:00
|
|
|
"github.com/wcharczuk/go-chart/v2"
|
2019-09-10 00:02:48 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|