go-chart/_examples/min_max/main.go

71 lines
1.5 KiB
Go
Raw Normal View History

2016-08-07 00:53:14 +02:00
package main
import (
"net/http"
2018-12-06 16:46:27 +01:00
"git.gutmet.org/go-chart.git"
"git.gutmet.org/go-chart.git/seq"
2016-08-07 00:53:14 +02:00
)
func drawChart(res http.ResponseWriter, req *http.Request) {
mainSeries := chart.ContinuousSeries{
Name: "A test series",
XValues: seq.Range(1.0, 100.0),
2018-09-08 00:25:58 +02:00
YValues: seq.New(seq.NewRandom().WithLen(100).WithMax(150).WithMin(50)).Array(),
2016-08-07 00:53:14 +02:00
}
minSeries := &chart.MinSeries{
Style: chart.Style{
Show: true,
StrokeColor: chart.ColorAlternateGray,
StrokeDashArray: []float64{5.0, 5.0},
},
InnerSeries: mainSeries,
}
maxSeries := &chart.MaxSeries{
Style: chart.Style{
Show: true,
StrokeColor: chart.ColorAlternateGray,
StrokeDashArray: []float64{5.0, 5.0},
},
InnerSeries: mainSeries,
}
graph := chart.Chart{
2016-08-07 06:59:46 +02:00
Width: 1920,
Height: 1080,
2016-08-07 00:53:14 +02:00
YAxis: chart.YAxis{
2016-08-07 06:59:46 +02:00
Name: "Random Values",
NameStyle: chart.StyleShow(),
Style: chart.StyleShow(),
2016-08-07 00:53:14 +02:00
Range: &chart.ContinuousRange{
Min: 25,
Max: 175,
},
},
XAxis: chart.XAxis{
2016-08-07 07:27:26 +02:00
Name: "Random Other Values",
NameStyle: chart.StyleShow(),
Style: chart.StyleShow(),
2016-08-07 00:53:14 +02:00
},
Series: []chart.Series{
mainSeries,
minSeries,
maxSeries,
chart.LastValueAnnotation(minSeries),
chart.LastValueAnnotation(maxSeries),
},
}
2016-08-07 06:59:46 +02:00
graph.Elements = []chart.Renderable{chart.Legend(&graph)}
2016-08-07 07:27:26 +02:00
res.Header().Set("Content-Type", "image/png")
graph.Render(chart.PNG, res)
2016-08-07 00:53:14 +02:00
}
func main() {
http.HandleFunc("/", drawChart)
http.ListenAndServe(":8080", nil)
}