fixing svg circles

This commit is contained in:
Will Charczuk 2017-03-05 23:52:13 -08:00
parent 10de6fa9bf
commit 66b99eb8e3
4 changed files with 33 additions and 19 deletions

View file

@ -125,8 +125,8 @@ func drawChart(res http.ResponseWriter, req *http.Request) {
graph.Elements = []chart.Renderable{chart.LegendThin(&graph)}
res.Header().Set("Content-Type", "image/png")
graph.Render(chart.PNG, res)
res.Header().Set("Content-Type", chart.ContentTypeSVG)
graph.Render(chart.SVG, res)
}
func main() {