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 (
|
2017-02-03 13:47:48 -05:00
|
|
|
"fmt"
|
2019-09-10 00:02:48 -04:00
|
|
|
"os"
|
2016-07-16 23:53:46 -04:00
|
|
|
|
2024-10-27 22:52:38 -04:00
|
|
|
"git.smarteching.com/zeni/go-chart/v2"
|
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 add a second series, and assign it to the secondary y axis, giving that series it's own range.
|
|
|
|
|
|
|
|
We also enable all of the axes by setting the `Show` propery of their respective styles to `true`.
|
|
|
|
*/
|
|
|
|
|
|
|
|
graph := chart.Chart{
|
|
|
|
XAxis: chart.XAxis{
|
2017-02-03 13:47:48 -05:00
|
|
|
TickPosition: chart.TickPositionBetweenTicks,
|
|
|
|
ValueFormatter: func(v interface{}) string {
|
|
|
|
typed := v.(float64)
|
2019-02-13 21:55:13 -05:00
|
|
|
typedDate := chart.TimeFromFloat64(typed)
|
2017-02-03 13:47:48 -05:00
|
|
|
return fmt.Sprintf("%d-%d\n%d", typedDate.Month(), typedDate.Day(), typedDate.Year())
|
|
|
|
},
|
2016-07-16 23:53:46 -04:00
|
|
|
},
|
|
|
|
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},
|
|
|
|
},
|
|
|
|
chart.ContinuousSeries{
|
|
|
|
YAxis: chart.YAxisSecondary,
|
|
|
|
XValues: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
|
|
|
|
YValues: []float64{50.0, 40.0, 30.0, 20.0, 10.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
|
|
|
}
|