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 294c268 commit 98b472bCopy full SHA for 98b472b
truelearn/utils/visualisations/_pie_rose_plotter.py
@@ -301,11 +301,14 @@ def plot(
301
r=[average_mean for _ in range(360)],
302
theta=list(range(360)),
303
mode="lines",
304
- line_color="black",
+ line={
305
+ "color": "black",
306
+ "width": 3,
307
+ },
308
)
309
310
- # add all traces
311
+ # add all traces to figure
312
self.figure.add_traces(data=traces)
313
314
topics = [tr_data[2] for tr_data in content_dict]
@@ -360,5 +363,9 @@ def _trace(
360
363
theta=[theta],
361
364
marker={
362
365
"color": colour,
366
+ "line": {
367
368
+ "width": 1,
369
370
},
371
0 commit comments