2016-07-16 23:53:46 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2019-02-13 19:09:26 -05:00
|
|
|
chart "github.com/wcharczuk/go-chart"
|
2016-07-16 23:53:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func drawChart(res http.ResponseWriter, req *http.Request) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
In this example we add a `Renderable` or a custom component to the `Elements` array.
|
|
|
|
In this specific case it is a pre-built renderable (`CreateLegend`) that draws a legend for the chart's series.
|
|
|
|
If you like, you can use `CreateLegend` as a template for writing your own renderable, or even your own legend.
|
|
|
|
*/
|
|
|
|
|
|
|
|
graph := chart.Chart{
|
2016-07-17 19:58:52 -04:00
|
|
|
XAxis: chart.XAxis{
|
2018-10-11 20:20:44 -04:00
|
|
|
Style: chart.StyleShow(),
|
2016-07-17 19:58:52 -04:00
|
|
|
},
|
|
|
|
YAxis: chart.YAxis{
|
2018-10-11 20:20:44 -04:00
|
|
|
Style: chart.StyleShow(),
|
2016-07-17 19:58:52 -04:00
|
|
|
},
|
|
|
|
Background: chart.Style{
|
|
|
|
Padding: chart.Box{
|
|
|
|
Top: 20,
|
|
|
|
Left: 20,
|
|
|
|
},
|
|
|
|
},
|
2016-07-16 23:53:46 -04:00
|
|
|
Series: []chart.Series{
|
|
|
|
chart.ContinuousSeries{
|
|
|
|
Name: "A test series",
|
|
|
|
XValues: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
|
|
|
|
YValues: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
//note we have to do this as a separate step because we need a reference to graph
|
|
|
|
graph.Elements = []chart.Renderable{
|
2016-07-29 21:24:25 -04:00
|
|
|
chart.Legend(&graph),
|
2016-07-16 23:53:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
res.Header().Set("Content-Type", "image/png")
|
|
|
|
graph.Render(chart.PNG, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
http.HandleFunc("/", drawChart)
|
|
|
|
http.ListenAndServe(":8080", nil)
|
|
|
|
}
|