From deebd5a63a218a2656e449f82a52d0c12bd289e7 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Fri, 5 Jan 2024 06:19:49 -0800 Subject: [PATCH] Set candlestick trace name to an empty string so that it doesn't render on the chart --- candlestick_chart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/candlestick_chart.py b/candlestick_chart.py index d5fe773..f31f475 100644 --- a/candlestick_chart.py +++ b/candlestick_chart.py @@ -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 = '' )] \ No newline at end of file