go-chart/testserver/main.go

90 lines
1.7 KiB
Go
Raw Normal View History

2016-07-07 23:44:03 +02:00
package main
import (
"log"
2016-07-12 03:48:51 +02:00
"math/rand"
2016-07-09 02:57:14 +02:00
"net/http"
2016-07-12 03:48:51 +02:00
"time"
2016-07-07 23:44:03 +02:00
"github.com/wcharczuk/go-chart"
"github.com/wcharczuk/go-web"
)
2016-07-09 18:11:47 +02:00
func chartHandler(rc *web.RequestContext) web.ControllerResult {
2016-07-12 03:48:51 +02:00
rnd := rand.New(rand.NewSource(0))
2016-07-09 18:11:47 +02:00
format, err := rc.RouteParameter("format")
if err != nil {
format = "png"
}
if format == "png" {
2016-07-08 09:16:02 +02:00
rc.Response.Header().Set("Content-Type", "image/png")
2016-07-09 18:11:47 +02:00
} else {
rc.Response.Header().Set("Content-Type", "image/svg+xml")
}
2016-07-12 03:48:51 +02:00
var s1x []time.Time
for x := 0; x < 100; x++ {
s1x = append([]time.Time{time.Now().AddDate(0, 0, -1*x)}, s1x...)
}
var s1y []float64
for x := 0; x < 100; x++ {
s1y = append(s1y, rnd.Float64()*1024)
}
2016-07-10 19:43:04 +02:00
2016-07-09 18:11:47 +02:00
c := chart.Chart{
Title: "A Test Chart",
TitleStyle: chart.Style{
2016-07-10 19:43:04 +02:00
Show: true,
2016-07-09 18:11:47 +02:00
},
2016-07-10 19:43:04 +02:00
Width: 1024,
Height: 400,
XAxis: chart.XAxis{
Style: chart.Style{
2016-07-11 03:09:41 +02:00
Show: true,
2016-07-10 19:43:04 +02:00
},
2016-07-09 18:11:47 +02:00
},
2016-07-10 19:43:04 +02:00
YAxis: chart.YAxis{
Style: chart.Style{
2016-07-11 03:09:41 +02:00
Show: true,
2016-07-10 19:43:04 +02:00
},
2016-07-12 03:48:51 +02:00
Zero: chart.GridLine{
Style: chart.Style{
Show: true,
StrokeWidth: 1.0,
},
2016-07-10 20:19:56 +02:00
},
},
2016-07-09 18:11:47 +02:00
Series: []chart.Series{
2016-07-12 03:48:51 +02:00
chart.TimeSeries{
2016-07-09 18:11:47 +02:00
Name: "a",
2016-07-10 19:43:04 +02:00
XValues: s1x,
YValues: s1y,
},
2016-07-09 18:11:47 +02:00
},
}
if format == "png" {
err = c.Render(chart.PNG, rc.Response)
} else {
err = c.Render(chart.SVG, rc.Response)
}
if err != nil {
return rc.API().InternalError(err)
}
rc.Response.WriteHeader(http.StatusOK)
return nil
}
2016-07-07 23:44:03 +02:00
2016-07-09 18:11:47 +02:00
func main() {
app := web.New()
app.SetName("Chart Test Server")
app.SetLogger(web.NewStandardOutputLogger())
app.GET("/", chartHandler)
2016-07-10 19:43:04 +02:00
app.GET("/format/:format", chartHandler)
app.GET("/favico.ico", func(rc *web.RequestContext) web.ControllerResult {
return rc.Raw([]byte{})
})
2016-07-07 23:44:03 +02:00
log.Fatal(app.Start())
}