Set candlestick trace name to an empty string so that it doesn't render on the chart
This commit is contained in:
parent
865a578e08
commit
deebd5a63a
@ -29,5 +29,6 @@ class CandlestickChart(Chart):
|
||||
low = self.lows,
|
||||
close = self.closes, # TODO: Make colors configurable.
|
||||
increasing = dict(line = dict(color = 'limegreen', width = 1), fillcolor = 'limegreen'),
|
||||
decreasing = dict(line = dict(color = 'red', width = 1), fillcolor = 'red')
|
||||
decreasing = dict(line = dict(color = 'red', width = 1), fillcolor = 'red'),
|
||||
name = ''
|
||||
)]
|
Loading…
Reference in New Issue
Block a user