From 0b37e6a46a56922f83e7fe8ea5ddfac2c4378134 Mon Sep 17 00:00:00 2001 From: Kevin J Date: Sun, 2 Feb 2020 14:21:41 -0500 Subject: [PATCH] Set Show to true for styles The stock_analysis example doesn't render when `Show: true` is not set on the styles. --- examples/stock_analysis/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/stock_analysis/main.go b/examples/stock_analysis/main.go index a99804d..42dad3c 100644 --- a/examples/stock_analysis/main.go +++ b/examples/stock_analysis/main.go @@ -16,6 +16,7 @@ func main() { priceSeries := chart.TimeSeries{ Name: "SPY", Style: chart.Style{ + Show: true, StrokeColor: chart.GetDefaultColor(0), }, XValues: xv, @@ -25,6 +26,7 @@ func main() { smaSeries := chart.SMASeries{ Name: "SPY - SMA", Style: chart.Style{ + Show: true, StrokeColor: drawing.ColorRed, StrokeDashArray: []float64{5.0, 5.0}, }, @@ -34,6 +36,7 @@ func main() { bbSeries := &chart.BollingerBandsSeries{ Name: "SPY - Bol. Bands", Style: chart.Style{ + Show: true, StrokeColor: drawing.ColorFromHex("efefef"), FillColor: drawing.ColorFromHex("efefef").WithAlpha(64), },