2016-07-16 23:53:46 -04:00
|
|
|
package main
|
|
|
|
|
2019-09-10 00:02:48 -04:00
|
|
|
//go:generate go run main.go
|
|
|
|
|
2016-07-16 23:53:46 -04:00
|
|
|
import (
|
|
|
|
"fmt"
|
2019-09-10 00:02:48 -04:00
|
|
|
"os"
|
2016-07-16 23:53:46 -04:00
|
|
|
|
2019-09-10 00:02:48 -04:00
|
|
|
"github.com/wcharczuk/go-chart"
|
2016-07-16 23:53:46 -04:00
|
|
|
)
|
|
|
|
|
2019-09-10 00:02:48 -04:00
|
|
|
func main() {
|
2016-07-16 23:53:46 -04:00
|
|
|
/*
|
|
|
|
In this example we use a custom `ValueFormatter` for the y axis, letting us specify how to format text of the y-axis ticks.
|
|
|
|
You can also do this for the x-axis, or the secondary y-axis.
|
|
|
|
This example also shows what the chart looks like with the x-axis left off or not shown.
|
|
|
|
*/
|
|
|
|
|
|
|
|
graph := chart.Chart{
|
|
|
|
YAxis: chart.YAxis{
|
|
|
|
ValueFormatter: func(v interface{}) string {
|
|
|
|
if vf, isFloat := v.(float64); isFloat {
|
|
|
|
return fmt.Sprintf("%0.6f", vf)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2019-09-10 00:02:48 -04:00
|
|
|
f, _ := os.Create("output.png")
|
|
|
|
defer f.Close()
|
|
|
|
graph.Render(chart.PNG, f)
|
2016-07-16 23:53:46 -04:00
|
|
|
}
|