Set candlestick trace name to an empty string so that it doesn't render on the chart

This commit is contained in:
moshferatu 2024-01-05 06:19:49 -08:00
parent 865a578e08
commit deebd5a63a

View File

@ -29,5 +29,6 @@ class CandlestickChart(Chart):
low = self.lows, low = self.lows,
close = self.closes, # TODO: Make colors configurable. close = self.closes, # TODO: Make colors configurable.
increasing = dict(line = dict(color = 'limegreen', width = 1), fillcolor = 'limegreen'), 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 = ''
)] )]