24 lines
378 B
Go
24 lines
378 B
Go
|
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)
|
||
|
}
|