2018-09-05 11:44:49 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
|
2019-02-13 19:09:26 -05:00
|
|
|
chart "github.com/wcharczuk/go-chart"
|
2018-09-05 11:44:49 -04:00
|
|
|
"github.com/wcharczuk/go-chart/drawing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func drawChart(res http.ResponseWriter, req *http.Request) {
|
|
|
|
profitStyle := chart.Style{
|
|
|
|
Show: true,
|
|
|
|
FillColor: drawing.ColorFromHex("13c158"),
|
|
|
|
StrokeColor: drawing.ColorFromHex("13c158"),
|
|
|
|
StrokeWidth: 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
lossStyle := chart.Style{
|
|
|
|
Show: true,
|
|
|
|
FillColor: drawing.ColorFromHex("c11313"),
|
|
|
|
StrokeColor: drawing.ColorFromHex("c11313"),
|
|
|
|
StrokeWidth: 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
sbc := chart.BarChart{
|
|
|
|
Title: "Bar Chart Using BaseValue",
|
|
|
|
TitleStyle: chart.StyleShow(),
|
|
|
|
Background: chart.Style{
|
|
|
|
Padding: chart.Box{
|
|
|
|
Top: 40,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Height: 512,
|
|
|
|
BarWidth: 60,
|
|
|
|
XAxis: chart.Style{
|
|
|
|
Show: true,
|
|
|
|
},
|
|
|
|
YAxis: chart.YAxis{
|
|
|
|
Style: chart.Style{
|
|
|
|
Show: true,
|
|
|
|
},
|
|
|
|
Ticks: []chart.Tick{
|
2019-02-13 19:09:26 -05:00
|
|
|
{Value: -4.0, Label: "-4"},
|
|
|
|
{Value: -2.0, Label: "-2"},
|
|
|
|
{Value: 0, Label: "0"},
|
|
|
|
{Value: 2.0, Label: "2"},
|
|
|
|
{Value: 4.0, Label: "4"},
|
|
|
|
{Value: 6.0, Label: "6"},
|
|
|
|
{Value: 8.0, Label: "8"},
|
|
|
|
{Value: 10.0, Label: "10"},
|
|
|
|
{Value: 12.0, Label: "12"},
|
2018-09-05 11:44:49 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
UseBaseValue: true,
|
|
|
|
BaseValue: 0.0,
|
|
|
|
Bars: []chart.Value{
|
|
|
|
{Value: 10.0, Style: profitStyle, Label: "Profit"},
|
|
|
|
{Value: 12.0, Style: profitStyle, Label: "More Profit"},
|
|
|
|
{Value: 8.0, Style: profitStyle, Label: "Still Profit"},
|
|
|
|
{Value: -4.0, Style: lossStyle, Label: "Loss!"},
|
|
|
|
{Value: 3.0, Style: profitStyle, Label: "Phew Ok"},
|
|
|
|
{Value: -2.0, Style: lossStyle, Label: "Oh No!"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
res.Header().Set("Content-Type", "image/png")
|
|
|
|
err := sbc.Render(chart.PNG, res)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error rendering chart: %v\n", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func port() string {
|
|
|
|
if len(os.Getenv("PORT")) > 0 {
|
|
|
|
return os.Getenv("PORT")
|
|
|
|
}
|
|
|
|
return "8080"
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
listenPort := fmt.Sprintf(":%s", port())
|
|
|
|
fmt.Printf("Listening on %s\n", listenPort)
|
|
|
|
http.HandleFunc("/", drawChart)
|
|
|
|
log.Fatal(http.ListenAndServe(listenPort, nil))
|
|
|
|
}
|