@@ -200,7 +200,9 @@ def density_heatmap(
200
200
z = [
201
201
"For `density_heatmap` and `density_contour` these values are used as the inputs to `histfunc`." ,
202
202
],
203
- histfunc = ["The arguments to this function are the values of `z`." ,],
203
+ histfunc = [
204
+ "The arguments to this function are the values of `z`." ,
205
+ ],
204
206
),
205
207
)
206
208
@@ -212,6 +214,7 @@ def line(
212
214
line_group = None ,
213
215
color = None ,
214
216
line_dash = None ,
217
+ symbol = None ,
215
218
hover_name = None ,
216
219
hover_data = None ,
217
220
custom_data = None ,
@@ -234,6 +237,9 @@ def line(
234
237
color_discrete_map = None ,
235
238
line_dash_sequence = None ,
236
239
line_dash_map = None ,
240
+ symbol_sequence = None ,
241
+ symbol_map = None ,
242
+ markers = False ,
237
243
log_x = False ,
238
244
log_y = False ,
239
245
range_x = None ,
@@ -261,6 +267,7 @@ def area(
261
267
y = None ,
262
268
line_group = None ,
263
269
color = None ,
270
+ symbol = None ,
264
271
hover_name = None ,
265
272
hover_data = None ,
266
273
custom_data = None ,
@@ -276,6 +283,9 @@ def area(
276
283
labels = None ,
277
284
color_discrete_sequence = None ,
278
285
color_discrete_map = None ,
286
+ symbol_sequence = None ,
287
+ symbol_map = None ,
288
+ markers = False ,
279
289
orientation = None ,
280
290
groupnorm = None ,
281
291
log_x = False ,
@@ -457,7 +467,9 @@ def histogram(
457
467
args = locals (),
458
468
constructor = go .Histogram ,
459
469
trace_patch = dict (
460
- histnorm = histnorm , histfunc = histfunc , cumulative = dict (enabled = cumulative ),
470
+ histnorm = histnorm ,
471
+ histfunc = histfunc ,
472
+ cumulative = dict (enabled = cumulative ),
461
473
),
462
474
layout_patch = dict (barmode = barmode , barnorm = barnorm ),
463
475
)
@@ -517,7 +529,11 @@ def violin(
517
529
args = locals (),
518
530
constructor = go .Violin ,
519
531
trace_patch = dict (
520
- points = points , box = dict (visible = box ), scalegroup = True , x0 = " " , y0 = " " ,
532
+ points = points ,
533
+ box = dict (visible = box ),
534
+ scalegroup = True ,
535
+ x0 = " " ,
536
+ y0 = " " ,
521
537
),
522
538
layout_patch = dict (violinmode = violinmode ),
523
539
)
@@ -692,6 +708,7 @@ def line_3d(
692
708
line_dash = None ,
693
709
text = None ,
694
710
line_group = None ,
711
+ symbol = None ,
695
712
hover_name = None ,
696
713
hover_data = None ,
697
714
custom_data = None ,
@@ -709,6 +726,9 @@ def line_3d(
709
726
color_discrete_map = None ,
710
727
line_dash_sequence = None ,
711
728
line_dash_map = None ,
729
+ symbol_sequence = None ,
730
+ symbol_map = None ,
731
+ markers = False ,
712
732
log_x = False ,
713
733
log_y = False ,
714
734
log_z = False ,
@@ -778,6 +798,7 @@ def line_ternary(
778
798
color = None ,
779
799
line_dash = None ,
780
800
line_group = None ,
801
+ symbol = None ,
781
802
hover_name = None ,
782
803
hover_data = None ,
783
804
custom_data = None ,
@@ -790,6 +811,9 @@ def line_ternary(
790
811
color_discrete_map = None ,
791
812
line_dash_sequence = None ,
792
813
line_dash_map = None ,
814
+ symbol_sequence = None ,
815
+ symbol_map = None ,
816
+ markers = False ,
793
817
line_shape = None ,
794
818
title = None ,
795
819
template = None ,
@@ -862,6 +886,7 @@ def line_polar(
862
886
custom_data = None ,
863
887
line_group = None ,
864
888
text = None ,
889
+ symbol = None ,
865
890
animation_frame = None ,
866
891
animation_group = None ,
867
892
category_orders = None ,
@@ -870,6 +895,9 @@ def line_polar(
870
895
color_discrete_map = None ,
871
896
line_dash_sequence = None ,
872
897
line_dash_map = None ,
898
+ symbol_sequence = None ,
899
+ symbol_map = None ,
900
+ markers = False ,
873
901
direction = "clockwise" ,
874
902
start_angle = 90 ,
875
903
line_close = False ,
@@ -1067,6 +1095,7 @@ def line_geo(
1067
1095
hover_data = None ,
1068
1096
custom_data = None ,
1069
1097
line_group = None ,
1098
+ symbol = None ,
1070
1099
animation_frame = None ,
1071
1100
animation_group = None ,
1072
1101
category_orders = None ,
@@ -1075,6 +1104,9 @@ def line_geo(
1075
1104
color_discrete_map = None ,
1076
1105
line_dash_sequence = None ,
1077
1106
line_dash_map = None ,
1107
+ symbol_sequence = None ,
1108
+ symbol_map = None ,
1109
+ markers = False ,
1078
1110
projection = None ,
1079
1111
scope = None ,
1080
1112
center = None ,
0 commit comments