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:
parent
962b9abdec
commit
0b37e6a46a
1 changed files with 3 additions and 0 deletions
|
@ -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),
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue