Set Show to true for styles

The stock_analysis example doesn't render when `Show: true` is not set on the styles.
This commit is contained in:
Kevin J 2020-02-02 14:21:41 -05:00 committed by GitHub
parent 962b9abdec
commit 0b37e6a46a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),
},