go-chart/testserver/main.go

90 lines
1.7 KiB
Go
Raw Normal View History

2016-07-07 17:44:03 -04:00
package main
import (
"log"
2016-07-11 21:48:51 -04:00
"math/rand"
2016-07-08 20:57:14 -04:00
"net/http"
2016-07-11 21:48:51 -04:00
"time"
2016-07-07 17:44:03 -04:00
"github.com/wcharczuk/go-chart"
"github.com/wcharczuk/go-web"
)
2016-07-09 12:11:47 -04:00
func chartHandler(rc *web.RequestContext) web.ControllerResult {
2016-07-11 21:48:51 -04:00
rnd := rand.New(rand.NewSource(0))
2016-07-09 12:11:47 -04:00
format, err := rc.RouteParameter("format")
if err != nil {
format = "png"
}
if format == "png" {
2016-07-08 03:16:02 -04:00
rc.Response.Header().Set("Content-Type", "image/png")
2016-07-09 12:11:47 -04:00
} else {
rc.Response.Header().Set("Content-Type", "image/svg+xml")
}
2016-07-11 21:48:51 -04: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 13:43:04 -04:00
2016-07-09 12:11:47 -04:00
c := chart.Chart{
Title: "A Test Chart",
TitleStyle: chart.Style{
2016-07-10 13:43:04 -04:00
Show: true,
2016-07-09 12:11:47 -04:00
},
2016-07-10 13:43:04 -04:00
Width: 1024,
Height: 400,
XAxis: chart.XAxis{
Style: chart.Style{
2016-07-10 21:09:41 -04:00
Show: true,
2016-07-10 13:43:04 -04:00
},
2016-07-09 12:11:47 -04:00
},
2016-07-10 13:43:04 -04:00
YAxis: chart.YAxis{
Style: chart.Style{
2016-07-10 21:09:41 -04:00
Show: true,
2016-07-10 13:43:04 -04:00
},
2016-07-11 21:48:51 -04:00
Zero: chart.GridLine{
Style: chart.Style{
Show: true,
StrokeWidth: 1.0,
},
2016-07-10 14:19:56 -04:00
},
},
2016-07-09 12:11:47 -04:00
Series: []chart.Series{
2016-07-11 21:48:51 -04:00
chart.TimeSeries{
2016-07-09 12:11:47 -04:00
Name: "a",
2016-07-10 13:43:04 -04:00
XValues: s1x,
YValues: s1y,
},
2016-07-09 12:11:47 -04: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 17:44:03 -04:00
2016-07-09 12:11:47 -04:00
func main() {
app := web.New()
app.SetName("Chart Test Server")
app.SetLogger(web.NewStandardOutputLogger())
app.GET("/", chartHandler)
2016-07-10 13:43:04 -04:00
app.GET("/format/:format", chartHandler)
app.GET("/favico.ico", func(rc *web.RequestContext) web.ControllerResult {
return rc.Raw([]byte{})
})
2016-07-07 17:44:03 -04:00
log.Fatal(app.Start())
}