@@ -202,7 +202,9 @@ def density_heatmap(
202
202
z = [
203
203
"For `density_heatmap` and `density_contour` these values are used as the inputs to `histfunc`." ,
204
204
],
205
- histfunc = ["The arguments to this function are the values of `z`." ,],
205
+ histfunc = [
206
+ "The arguments to this function are the values of `z`." ,
207
+ ],
206
208
),
207
209
)
208
210
@@ -214,6 +216,7 @@ def line(
214
216
line_group = None ,
215
217
color = None ,
216
218
line_dash = None ,
219
+ symbol = None ,
217
220
hover_name = None ,
218
221
hover_data = None ,
219
222
custom_data = None ,
@@ -236,6 +239,9 @@ def line(
236
239
color_discrete_map = None ,
237
240
line_dash_sequence = None ,
238
241
line_dash_map = None ,
242
+ symbol_sequence = None ,
243
+ symbol_map = None ,
244
+ markers = False ,
239
245
log_x = False ,
240
246
log_y = False ,
241
247
range_x = None ,
@@ -263,6 +269,7 @@ def area(
263
269
y = None ,
264
270
line_group = None ,
265
271
color = None ,
272
+ symbol = None ,
266
273
hover_name = None ,
267
274
hover_data = None ,
268
275
custom_data = None ,
@@ -278,6 +285,9 @@ def area(
278
285
labels = None ,
279
286
color_discrete_sequence = None ,
280
287
color_discrete_map = None ,
288
+ symbol_sequence = None ,
289
+ symbol_map = None ,
290
+ markers = False ,
281
291
orientation = None ,
282
292
groupnorm = None ,
283
293
log_x = False ,
@@ -459,7 +469,9 @@ def histogram(
459
469
args = locals (),
460
470
constructor = go .Histogram ,
461
471
trace_patch = dict (
462
- histnorm = histnorm , histfunc = histfunc , cumulative = dict (enabled = cumulative ),
472
+ histnorm = histnorm ,
473
+ histfunc = histfunc ,
474
+ cumulative = dict (enabled = cumulative ),
463
475
),
464
476
layout_patch = dict (barmode = barmode , barnorm = barnorm ),
465
477
)
@@ -519,7 +531,11 @@ def violin(
519
531
args = locals (),
520
532
constructor = go .Violin ,
521
533
trace_patch = dict (
522
- points = points , box = dict (visible = box ), scalegroup = True , x0 = " " , y0 = " " ,
534
+ points = points ,
535
+ box = dict (visible = box ),
536
+ scalegroup = True ,
537
+ x0 = " " ,
538
+ y0 = " " ,
523
539
),
524
540
layout_patch = dict (violinmode = violinmode ),
525
541
)
@@ -694,6 +710,7 @@ def line_3d(
694
710
line_dash = None ,
695
711
text = None ,
696
712
line_group = None ,
713
+ symbol = None ,
697
714
hover_name = None ,
698
715
hover_data = None ,
699
716
custom_data = None ,
@@ -711,6 +728,9 @@ def line_3d(
711
728
color_discrete_map = None ,
712
729
line_dash_sequence = None ,
713
730
line_dash_map = None ,
731
+ symbol_sequence = None ,
732
+ symbol_map = None ,
733
+ markers = False ,
714
734
log_x = False ,
715
735
log_y = False ,
716
736
log_z = False ,
@@ -780,6 +800,7 @@ def line_ternary(
780
800
color = None ,
781
801
line_dash = None ,
782
802
line_group = None ,
803
+ symbol = None ,
783
804
hover_name = None ,
784
805
hover_data = None ,
785
806
custom_data = None ,
@@ -792,6 +813,9 @@ def line_ternary(
792
813
color_discrete_map = None ,
793
814
line_dash_sequence = None ,
794
815
line_dash_map = None ,
816
+ symbol_sequence = None ,
817
+ symbol_map = None ,
818
+ markers = False ,
795
819
line_shape = None ,
796
820
title = None ,
797
821
template = None ,
@@ -864,6 +888,7 @@ def line_polar(
864
888
custom_data = None ,
865
889
line_group = None ,
866
890
text = None ,
891
+ symbol = None ,
867
892
animation_frame = None ,
868
893
animation_group = None ,
869
894
category_orders = None ,
@@ -872,6 +897,9 @@ def line_polar(
872
897
color_discrete_map = None ,
873
898
line_dash_sequence = None ,
874
899
line_dash_map = None ,
900
+ symbol_sequence = None ,
901
+ symbol_map = None ,
902
+ markers = False ,
875
903
direction = "clockwise" ,
876
904
start_angle = 90 ,
877
905
line_close = False ,
@@ -1069,6 +1097,7 @@ def line_geo(
1069
1097
hover_data = None ,
1070
1098
custom_data = None ,
1071
1099
line_group = None ,
1100
+ symbol = None ,
1072
1101
animation_frame = None ,
1073
1102
animation_group = None ,
1074
1103
category_orders = None ,
@@ -1077,6 +1106,9 @@ def line_geo(
1077
1106
color_discrete_map = None ,
1078
1107
line_dash_sequence = None ,
1079
1108
line_dash_map = None ,
1109
+ symbol_sequence = None ,
1110
+ symbol_map = None ,
1111
+ markers = False ,
1080
1112
projection = None ,
1081
1113
scope = None ,
1082
1114
center = None ,
0 commit comments