We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878f9a5 commit c2d504bCopy full SHA for c2d504b
backtrader_plotting/bokeh/figure.py
@@ -46,7 +46,7 @@ def _init_figure(self):
46
f = figure(tools=Figure._tools,
47
x_axis_type='linear',
48
aspect_ratio=self._scheme.plotaspectratio,
49
- output_backend="webgl",
+ output_backend=self._scheme.output_backend,
50
)
51
52
f.y_range.range_padding = self._scheme.y_range_padding
backtrader_plotting/schemes/btscheme.py
@@ -187,6 +187,9 @@ def __init__(self):
187
# include strategy source code in the meta data
188
self.strategysrc = False
189
190
+ # bokeh output backend
191
+ self.output_backend = 'webgl'
192
+
193
def color(self, idx):
194
colidx = tab10_index[idx % len(tab10_index)]
195
return self.lcolors[colidx]
0 commit comments