-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
ref_names.txt
4682 lines (4682 loc) · 142 KB
/
ref_names.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Layout > angularaxis
Layout > angularaxis > domain
Layout > angularaxis > endpadding
Layout > angularaxis > range
Layout > angularaxis > showline
Layout > angularaxis > showticklabels
Layout > angularaxis > tickcolor
Layout > angularaxis > ticklen
Layout > angularaxis > tickorientation
Layout > angularaxis > ticksuffix
Layout > angularaxis > visible
Layout > annotations
Layout > autosize
Layout > calendar
Layout > clickmode
Layout > colorway
Layout > datarevision
Layout > direction
Layout > dragmode
Layout > font
Layout > font > color
Layout > font > family
Layout > font > size
Layout > geo
Layout > geo > bgcolor
Layout > geo > center
Layout > geo > center > lat
Layout > geo > center > lon
Layout > geo > coastlinecolor
Layout > geo > coastlinewidth
Layout > geo > countrycolor
Layout > geo > countrywidth
Layout > geo > domain
Layout > geo > domain > column
Layout > geo > domain > row
Layout > geo > domain > x
Layout > geo > domain > y
Layout > geo > framecolor
Layout > geo > framewidth
Layout > geo > lakecolor
Layout > geo > landcolor
Layout > geo > lataxis
Layout > geo > lataxis > dtick
Layout > geo > lataxis > gridcolor
Layout > geo > lataxis > gridwidth
Layout > geo > lataxis > range
Layout > geo > lataxis > showgrid
Layout > geo > lataxis > tick0
Layout > geo > lonaxis
Layout > geo > lonaxis > dtick
Layout > geo > lonaxis > gridcolor
Layout > geo > lonaxis > gridwidth
Layout > geo > lonaxis > range
Layout > geo > lonaxis > showgrid
Layout > geo > lonaxis > tick0
Layout > geo > oceancolor
Layout > geo > projection
Layout > geo > projection > parallels
Layout > geo > projection > rotation
Layout > geo > projection > rotation > lat
Layout > geo > projection > rotation > lon
Layout > geo > projection > rotation > roll
Layout > geo > projection > scale
Layout > geo > projection > type
Layout > geo > resolution
Layout > geo > rivercolor
Layout > geo > riverwidth
Layout > geo > scope
Layout > geo > showcoastlines
Layout > geo > showcountries
Layout > geo > showframe
Layout > geo > showlakes
Layout > geo > showland
Layout > geo > showocean
Layout > geo > showrivers
Layout > geo > showsubunits
Layout > geo > subunitcolor
Layout > geo > subunitwidth
Layout > grid
Layout > grid > columns
Layout > grid > domain
Layout > grid > domain > x
Layout > grid > domain > y
Layout > grid > pattern
Layout > grid > roworder
Layout > grid > rows
Layout > grid > subplots
Layout > grid > subplots > items
Layout > grid > xaxes
Layout > grid > xaxes > items
Layout > grid > xgap
Layout > grid > xside
Layout > grid > yaxes
Layout > grid > yaxes > items
Layout > grid > ygap
Layout > grid > yside
Layout > height
Layout > hidesources
Layout > hoverdistance
Layout > hoverlabel
Layout > hoverlabel > bgcolor
Layout > hoverlabel > bordercolor
Layout > hoverlabel > font
Layout > hoverlabel > font > color
Layout > hoverlabel > font > family
Layout > hoverlabel > font > size
Layout > hoverlabel > namelength
Layout > hovermode
Layout > images
Layout > legend
Layout > legend > bgcolor
Layout > legend > bordercolor
Layout > legend > borderwidth
Layout > legend > font
Layout > legend > font > color
Layout > legend > font > family
Layout > legend > font > size
Layout > legend > orientation
Layout > legend > tracegroupgap
Layout > legend > traceorder
Layout > legend > x
Layout > legend > xanchor
Layout > legend > y
Layout > legend > yanchor
Layout > mapbox
Layout > mapbox > accesstoken
Layout > mapbox > bearing
Layout > mapbox > center
Layout > mapbox > center > lat
Layout > mapbox > center > lon
Layout > mapbox > domain
Layout > mapbox > domain > column
Layout > mapbox > domain > row
Layout > mapbox > domain > x
Layout > mapbox > domain > y
Layout > mapbox > layers
Layout > mapbox > layers > items
Layout > mapbox > layers > items > layer
Layout > mapbox > pitch
Layout > mapbox > style
Layout > mapbox > zoom
Layout > margin
Layout > margin > autoexpand
Layout > margin > b
Layout > margin > l
Layout > margin > pad
Layout > margin > r
Layout > margin > t
Layout > orientation
Layout > paper_bgcolor
Layout > plot_bgcolor
Layout > polar
Layout > polar > angularaxis
Layout > polar > angularaxis > categoryarray
Layout > polar > angularaxis > categoryorder
Layout > polar > angularaxis > color
Layout > polar > angularaxis > direction
Layout > polar > angularaxis > dtick
Layout > polar > angularaxis > exponentformat
Layout > polar > angularaxis > gridcolor
Layout > polar > angularaxis > gridwidth
Layout > polar > angularaxis > hoverformat
Layout > polar > angularaxis > layer
Layout > polar > angularaxis > linecolor
Layout > polar > angularaxis > linewidth
Layout > polar > angularaxis > nticks
Layout > polar > angularaxis > period
Layout > polar > angularaxis > rotation
Layout > polar > angularaxis > separatethousands
Layout > polar > angularaxis > showexponent
Layout > polar > angularaxis > showgrid
Layout > polar > angularaxis > showline
Layout > polar > angularaxis > showticklabels
Layout > polar > angularaxis > showtickprefix
Layout > polar > angularaxis > showticksuffix
Layout > polar > angularaxis > thetaunit
Layout > polar > angularaxis > tick0
Layout > polar > angularaxis > tickangle
Layout > polar > angularaxis > tickcolor
Layout > polar > angularaxis > tickfont
Layout > polar > angularaxis > tickfont > color
Layout > polar > angularaxis > tickfont > family
Layout > polar > angularaxis > tickfont > size
Layout > polar > angularaxis > tickformat
Layout > polar > angularaxis > tickformatstops
Layout > polar > angularaxis > tickformatstops > items
Layout > polar > angularaxis > ticklen
Layout > polar > angularaxis > tickmode
Layout > polar > angularaxis > tickprefix
Layout > polar > angularaxis > ticks
Layout > polar > angularaxis > ticksuffix
Layout > polar > angularaxis > ticktext
Layout > polar > angularaxis > tickvals
Layout > polar > angularaxis > tickwidth
Layout > polar > angularaxis > type
Layout > polar > angularaxis > visible
Layout > polar > bgcolor
Layout > polar > domain
Layout > polar > domain > column
Layout > polar > domain > row
Layout > polar > domain > x
Layout > polar > domain > y
Layout > polar > gridshape
Layout > polar > hole
Layout > polar > radialaxis
Layout > polar > radialaxis > angle
Layout > polar > radialaxis > autorange
Layout > polar > radialaxis > calendar
Layout > polar > radialaxis > categoryarray
Layout > polar > radialaxis > categoryorder
Layout > polar > radialaxis > color
Layout > polar > radialaxis > dtick
Layout > polar > radialaxis > exponentformat
Layout > polar > radialaxis > gridcolor
Layout > polar > radialaxis > gridwidth
Layout > polar > radialaxis > hoverformat
Layout > polar > radialaxis > layer
Layout > polar > radialaxis > linecolor
Layout > polar > radialaxis > linewidth
Layout > polar > radialaxis > nticks
Layout > polar > radialaxis > range
Layout > polar > radialaxis > rangemode
Layout > polar > radialaxis > separatethousands
Layout > polar > radialaxis > showexponent
Layout > polar > radialaxis > showgrid
Layout > polar > radialaxis > showline
Layout > polar > radialaxis > showticklabels
Layout > polar > radialaxis > showtickprefix
Layout > polar > radialaxis > showticksuffix
Layout > polar > radialaxis > side
Layout > polar > radialaxis > tick0
Layout > polar > radialaxis > tickangle
Layout > polar > radialaxis > tickcolor
Layout > polar > radialaxis > tickfont
Layout > polar > radialaxis > tickfont > color
Layout > polar > radialaxis > tickfont > family
Layout > polar > radialaxis > tickfont > size
Layout > polar > radialaxis > tickformat
Layout > polar > radialaxis > tickformatstops
Layout > polar > radialaxis > tickformatstops > items
Layout > polar > radialaxis > ticklen
Layout > polar > radialaxis > tickmode
Layout > polar > radialaxis > tickprefix
Layout > polar > radialaxis > ticks
Layout > polar > radialaxis > ticksuffix
Layout > polar > radialaxis > ticktext
Layout > polar > radialaxis > tickvals
Layout > polar > radialaxis > tickwidth
Layout > polar > radialaxis > title
Layout > polar > radialaxis > titlefont
Layout > polar > radialaxis > titlefont > color
Layout > polar > radialaxis > titlefont > family
Layout > polar > radialaxis > titlefont > size
Layout > polar > radialaxis > type
Layout > polar > radialaxis > visible
Layout > polar > sector
Layout > radialaxis
Layout > radialaxis > domain
Layout > radialaxis > endpadding
Layout > radialaxis > orientation
Layout > radialaxis > range
Layout > radialaxis > showline
Layout > radialaxis > showticklabels
Layout > radialaxis > tickcolor
Layout > radialaxis > ticklen
Layout > radialaxis > tickorientation
Layout > radialaxis > ticksuffix
Layout > radialaxis > visible
Layout > scene
Layout > scene > annotations
Layout > scene > annotations > items
Layout > scene > annotations > items > annotation
Layout > scene > aspectmode
Layout > scene > aspectratio
Layout > scene > aspectratio > x
Layout > scene > aspectratio > y
Layout > scene > aspectratio > z
Layout > scene > bgcolor
Layout > scene > camera
Layout > scene > camera > center
Layout > scene > camera > center > x
Layout > scene > camera > center > y
Layout > scene > camera > center > z
Layout > scene > camera > eye
Layout > scene > camera > eye > x
Layout > scene > camera > eye > y
Layout > scene > camera > eye > z
Layout > scene > camera > up
Layout > scene > camera > up > x
Layout > scene > camera > up > y
Layout > scene > camera > up > z
Layout > scene > domain
Layout > scene > domain > column
Layout > scene > domain > row
Layout > scene > domain > x
Layout > scene > domain > y
Layout > scene > dragmode
Layout > scene > hovermode
Layout > scene > xaxis
Layout > scene > xaxis > autorange
Layout > scene > xaxis > backgroundcolor
Layout > scene > xaxis > calendar
Layout > scene > xaxis > categoryarray
Layout > scene > xaxis > categoryorder
Layout > scene > xaxis > color
Layout > scene > xaxis > dtick
Layout > scene > xaxis > exponentformat
Layout > scene > xaxis > gridcolor
Layout > scene > xaxis > gridwidth
Layout > scene > xaxis > hoverformat
Layout > scene > xaxis > linecolor
Layout > scene > xaxis > linewidth
Layout > scene > xaxis > mirror
Layout > scene > xaxis > nticks
Layout > scene > xaxis > range
Layout > scene > xaxis > rangemode
Layout > scene > xaxis > separatethousands
Layout > scene > xaxis > showaxeslabels
Layout > scene > xaxis > showbackground
Layout > scene > xaxis > showexponent
Layout > scene > xaxis > showgrid
Layout > scene > xaxis > showline
Layout > scene > xaxis > showspikes
Layout > scene > xaxis > showticklabels
Layout > scene > xaxis > showtickprefix
Layout > scene > xaxis > showticksuffix
Layout > scene > xaxis > spikecolor
Layout > scene > xaxis > spikesides
Layout > scene > xaxis > spikethickness
Layout > scene > xaxis > tick0
Layout > scene > xaxis > tickangle
Layout > scene > xaxis > tickcolor
Layout > scene > xaxis > tickfont
Layout > scene > xaxis > tickfont > color
Layout > scene > xaxis > tickfont > family
Layout > scene > xaxis > tickfont > size
Layout > scene > xaxis > tickformat
Layout > scene > xaxis > tickformatstops
Layout > scene > xaxis > tickformatstops > items
Layout > scene > xaxis > ticklen
Layout > scene > xaxis > tickmode
Layout > scene > xaxis > tickprefix
Layout > scene > xaxis > ticks
Layout > scene > xaxis > ticksuffix
Layout > scene > xaxis > ticktext
Layout > scene > xaxis > tickvals
Layout > scene > xaxis > tickwidth
Layout > scene > xaxis > title
Layout > scene > xaxis > titlefont
Layout > scene > xaxis > titlefont > color
Layout > scene > xaxis > titlefont > family
Layout > scene > xaxis > titlefont > size
Layout > scene > xaxis > type
Layout > scene > xaxis > visible
Layout > scene > xaxis > zeroline
Layout > scene > xaxis > zerolinecolor
Layout > scene > xaxis > zerolinewidth
Layout > scene > yaxis
Layout > scene > yaxis > autorange
Layout > scene > yaxis > backgroundcolor
Layout > scene > yaxis > calendar
Layout > scene > yaxis > categoryarray
Layout > scene > yaxis > categoryorder
Layout > scene > yaxis > color
Layout > scene > yaxis > dtick
Layout > scene > yaxis > exponentformat
Layout > scene > yaxis > gridcolor
Layout > scene > yaxis > gridwidth
Layout > scene > yaxis > hoverformat
Layout > scene > yaxis > linecolor
Layout > scene > yaxis > linewidth
Layout > scene > yaxis > mirror
Layout > scene > yaxis > nticks
Layout > scene > yaxis > range
Layout > scene > yaxis > rangemode
Layout > scene > yaxis > separatethousands
Layout > scene > yaxis > showaxeslabels
Layout > scene > yaxis > showbackground
Layout > scene > yaxis > showexponent
Layout > scene > yaxis > showgrid
Layout > scene > yaxis > showline
Layout > scene > yaxis > showspikes
Layout > scene > yaxis > showticklabels
Layout > scene > yaxis > showtickprefix
Layout > scene > yaxis > showticksuffix
Layout > scene > yaxis > spikecolor
Layout > scene > yaxis > spikesides
Layout > scene > yaxis > spikethickness
Layout > scene > yaxis > tick0
Layout > scene > yaxis > tickangle
Layout > scene > yaxis > tickcolor
Layout > scene > yaxis > tickfont
Layout > scene > yaxis > tickfont > color
Layout > scene > yaxis > tickfont > family
Layout > scene > yaxis > tickfont > size
Layout > scene > yaxis > tickformat
Layout > scene > yaxis > tickformatstops
Layout > scene > yaxis > tickformatstops > items
Layout > scene > yaxis > ticklen
Layout > scene > yaxis > tickmode
Layout > scene > yaxis > tickprefix
Layout > scene > yaxis > ticks
Layout > scene > yaxis > ticksuffix
Layout > scene > yaxis > ticktext
Layout > scene > yaxis > tickvals
Layout > scene > yaxis > tickwidth
Layout > scene > yaxis > title
Layout > scene > yaxis > titlefont
Layout > scene > yaxis > titlefont > color
Layout > scene > yaxis > titlefont > family
Layout > scene > yaxis > titlefont > size
Layout > scene > yaxis > type
Layout > scene > yaxis > visible
Layout > scene > yaxis > zeroline
Layout > scene > yaxis > zerolinecolor
Layout > scene > yaxis > zerolinewidth
Layout > scene > zaxis
Layout > scene > zaxis > autorange
Layout > scene > zaxis > backgroundcolor
Layout > scene > zaxis > calendar
Layout > scene > zaxis > categoryarray
Layout > scene > zaxis > categoryorder
Layout > scene > zaxis > color
Layout > scene > zaxis > dtick
Layout > scene > zaxis > exponentformat
Layout > scene > zaxis > gridcolor
Layout > scene > zaxis > gridwidth
Layout > scene > zaxis > hoverformat
Layout > scene > zaxis > linecolor
Layout > scene > zaxis > linewidth
Layout > scene > zaxis > mirror
Layout > scene > zaxis > nticks
Layout > scene > zaxis > range
Layout > scene > zaxis > rangemode
Layout > scene > zaxis > separatethousands
Layout > scene > zaxis > showaxeslabels
Layout > scene > zaxis > showbackground
Layout > scene > zaxis > showexponent
Layout > scene > zaxis > showgrid
Layout > scene > zaxis > showline
Layout > scene > zaxis > showspikes
Layout > scene > zaxis > showticklabels
Layout > scene > zaxis > showtickprefix
Layout > scene > zaxis > showticksuffix
Layout > scene > zaxis > spikecolor
Layout > scene > zaxis > spikesides
Layout > scene > zaxis > spikethickness
Layout > scene > zaxis > tick0
Layout > scene > zaxis > tickangle
Layout > scene > zaxis > tickcolor
Layout > scene > zaxis > tickfont
Layout > scene > zaxis > tickfont > color
Layout > scene > zaxis > tickfont > family
Layout > scene > zaxis > tickfont > size
Layout > scene > zaxis > tickformat
Layout > scene > zaxis > tickformatstops
Layout > scene > zaxis > tickformatstops > items
Layout > scene > zaxis > ticklen
Layout > scene > zaxis > tickmode
Layout > scene > zaxis > tickprefix
Layout > scene > zaxis > ticks
Layout > scene > zaxis > ticksuffix
Layout > scene > zaxis > ticktext
Layout > scene > zaxis > tickvals
Layout > scene > zaxis > tickwidth
Layout > scene > zaxis > title
Layout > scene > zaxis > titlefont
Layout > scene > zaxis > titlefont > color
Layout > scene > zaxis > titlefont > family
Layout > scene > zaxis > titlefont > size
Layout > scene > zaxis > type
Layout > scene > zaxis > visible
Layout > scene > zaxis > zeroline
Layout > scene > zaxis > zerolinecolor
Layout > scene > zaxis > zerolinewidth
Layout > selectdirection
Layout > separators
Layout > shapes
Layout > showlegend
Layout > sliders
Layout > spikedistance
Layout > template
Layout > ternary
Layout > ternary > aaxis
Layout > ternary > aaxis > color
Layout > ternary > aaxis > dtick
Layout > ternary > aaxis > exponentformat
Layout > ternary > aaxis > gridcolor
Layout > ternary > aaxis > gridwidth
Layout > ternary > aaxis > hoverformat
Layout > ternary > aaxis > layer
Layout > ternary > aaxis > linecolor
Layout > ternary > aaxis > linewidth
Layout > ternary > aaxis > min
Layout > ternary > aaxis > nticks
Layout > ternary > aaxis > separatethousands
Layout > ternary > aaxis > showexponent
Layout > ternary > aaxis > showgrid
Layout > ternary > aaxis > showline
Layout > ternary > aaxis > showticklabels
Layout > ternary > aaxis > showtickprefix
Layout > ternary > aaxis > showticksuffix
Layout > ternary > aaxis > tick0
Layout > ternary > aaxis > tickangle
Layout > ternary > aaxis > tickcolor
Layout > ternary > aaxis > tickfont
Layout > ternary > aaxis > tickfont > color
Layout > ternary > aaxis > tickfont > family
Layout > ternary > aaxis > tickfont > size
Layout > ternary > aaxis > tickformat
Layout > ternary > aaxis > tickformatstops
Layout > ternary > aaxis > tickformatstops > items
Layout > ternary > aaxis > ticklen
Layout > ternary > aaxis > tickmode
Layout > ternary > aaxis > tickprefix
Layout > ternary > aaxis > ticks
Layout > ternary > aaxis > ticksuffix
Layout > ternary > aaxis > ticktext
Layout > ternary > aaxis > tickvals
Layout > ternary > aaxis > tickwidth
Layout > ternary > aaxis > title
Layout > ternary > aaxis > titlefont
Layout > ternary > aaxis > titlefont > color
Layout > ternary > aaxis > titlefont > family
Layout > ternary > aaxis > titlefont > size
Layout > ternary > baxis
Layout > ternary > baxis > color
Layout > ternary > baxis > dtick
Layout > ternary > baxis > exponentformat
Layout > ternary > baxis > gridcolor
Layout > ternary > baxis > gridwidth
Layout > ternary > baxis > hoverformat
Layout > ternary > baxis > layer
Layout > ternary > baxis > linecolor
Layout > ternary > baxis > linewidth
Layout > ternary > baxis > min
Layout > ternary > baxis > nticks
Layout > ternary > baxis > separatethousands
Layout > ternary > baxis > showexponent
Layout > ternary > baxis > showgrid
Layout > ternary > baxis > showline
Layout > ternary > baxis > showticklabels
Layout > ternary > baxis > showtickprefix
Layout > ternary > baxis > showticksuffix
Layout > ternary > baxis > tick0
Layout > ternary > baxis > tickangle
Layout > ternary > baxis > tickcolor
Layout > ternary > baxis > tickfont
Layout > ternary > baxis > tickfont > color
Layout > ternary > baxis > tickfont > family
Layout > ternary > baxis > tickfont > size
Layout > ternary > baxis > tickformat
Layout > ternary > baxis > tickformatstops
Layout > ternary > baxis > tickformatstops > items
Layout > ternary > baxis > ticklen
Layout > ternary > baxis > tickmode
Layout > ternary > baxis > tickprefix
Layout > ternary > baxis > ticks
Layout > ternary > baxis > ticksuffix
Layout > ternary > baxis > ticktext
Layout > ternary > baxis > tickvals
Layout > ternary > baxis > tickwidth
Layout > ternary > baxis > title
Layout > ternary > baxis > titlefont
Layout > ternary > baxis > titlefont > color
Layout > ternary > baxis > titlefont > family
Layout > ternary > baxis > titlefont > size
Layout > ternary > bgcolor
Layout > ternary > caxis
Layout > ternary > caxis > color
Layout > ternary > caxis > dtick
Layout > ternary > caxis > exponentformat
Layout > ternary > caxis > gridcolor
Layout > ternary > caxis > gridwidth
Layout > ternary > caxis > hoverformat
Layout > ternary > caxis > layer
Layout > ternary > caxis > linecolor
Layout > ternary > caxis > linewidth
Layout > ternary > caxis > min
Layout > ternary > caxis > nticks
Layout > ternary > caxis > separatethousands
Layout > ternary > caxis > showexponent
Layout > ternary > caxis > showgrid
Layout > ternary > caxis > showline
Layout > ternary > caxis > showticklabels
Layout > ternary > caxis > showtickprefix
Layout > ternary > caxis > showticksuffix
Layout > ternary > caxis > tick0
Layout > ternary > caxis > tickangle
Layout > ternary > caxis > tickcolor
Layout > ternary > caxis > tickfont
Layout > ternary > caxis > tickfont > color
Layout > ternary > caxis > tickfont > family
Layout > ternary > caxis > tickfont > size
Layout > ternary > caxis > tickformat
Layout > ternary > caxis > tickformatstops
Layout > ternary > caxis > tickformatstops > items
Layout > ternary > caxis > ticklen
Layout > ternary > caxis > tickmode
Layout > ternary > caxis > tickprefix
Layout > ternary > caxis > ticks
Layout > ternary > caxis > ticksuffix
Layout > ternary > caxis > ticktext
Layout > ternary > caxis > tickvals
Layout > ternary > caxis > tickwidth
Layout > ternary > caxis > title
Layout > ternary > caxis > titlefont
Layout > ternary > caxis > titlefont > color
Layout > ternary > caxis > titlefont > family
Layout > ternary > caxis > titlefont > size
Layout > ternary > domain
Layout > ternary > domain > column
Layout > ternary > domain > row
Layout > ternary > domain > x
Layout > ternary > domain > y
Layout > ternary > sum
Layout > title
Layout > titlefont
Layout > titlefont > color
Layout > titlefont > family
Layout > titlefont > size
Layout > updatemenus
Layout > width
Layout > xaxis
Layout > xaxis > anchor
Layout > xaxis > automargin
Layout > xaxis > autorange
Layout > xaxis > calendar
Layout > xaxis > categoryarray
Layout > xaxis > categoryorder
Layout > xaxis > color
Layout > xaxis > constrain
Layout > xaxis > constraintoward
Layout > xaxis > domain
Layout > xaxis > dtick
Layout > xaxis > exponentformat
Layout > xaxis > fixedrange
Layout > xaxis > gridcolor
Layout > xaxis > gridwidth
Layout > xaxis > hoverformat
Layout > xaxis > layer
Layout > xaxis > linecolor
Layout > xaxis > linewidth
Layout > xaxis > mirror
Layout > xaxis > nticks
Layout > xaxis > overlaying
Layout > xaxis > position
Layout > xaxis > range
Layout > xaxis > rangemode
Layout > xaxis > rangeselector
Layout > xaxis > rangeselector > activecolor
Layout > xaxis > rangeselector > bgcolor
Layout > xaxis > rangeselector > bordercolor
Layout > xaxis > rangeselector > borderwidth
Layout > xaxis > rangeselector > buttons
Layout > xaxis > rangeselector > buttons > items
Layout > xaxis > rangeselector > font
Layout > xaxis > rangeselector > font > color
Layout > xaxis > rangeselector > font > family
Layout > xaxis > rangeselector > font > size
Layout > xaxis > rangeselector > visible
Layout > xaxis > rangeselector > x
Layout > xaxis > rangeselector > xanchor
Layout > xaxis > rangeselector > y
Layout > xaxis > rangeselector > yanchor
Layout > xaxis > rangeslider
Layout > xaxis > rangeslider > autorange
Layout > xaxis > rangeslider > bgcolor
Layout > xaxis > rangeslider > bordercolor
Layout > xaxis > rangeslider > borderwidth
Layout > xaxis > rangeslider > range
Layout > xaxis > rangeslider > thickness
Layout > xaxis > rangeslider > visible
Layout > xaxis > rangeslider > yaxis
Layout > xaxis > rangeslider > yaxis > range
Layout > xaxis > rangeslider > yaxis > rangemode
Layout > xaxis > scaleanchor
Layout > xaxis > scaleratio
Layout > xaxis > separatethousands
Layout > xaxis > showexponent
Layout > xaxis > showgrid
Layout > xaxis > showline
Layout > xaxis > showspikes
Layout > xaxis > showticklabels
Layout > xaxis > showtickprefix
Layout > xaxis > showticksuffix
Layout > xaxis > side
Layout > xaxis > spikecolor
Layout > xaxis > spikedash
Layout > xaxis > spikemode
Layout > xaxis > spikesnap
Layout > xaxis > spikethickness
Layout > xaxis > tick0
Layout > xaxis > tickangle
Layout > xaxis > tickcolor
Layout > xaxis > tickfont
Layout > xaxis > tickfont > color
Layout > xaxis > tickfont > family
Layout > xaxis > tickfont > size
Layout > xaxis > tickformat
Layout > xaxis > tickformatstops
Layout > xaxis > tickformatstops > items
Layout > xaxis > tickformatstops > items > tickformatstop
Layout > xaxis > ticklen
Layout > xaxis > tickmode
Layout > xaxis > tickprefix
Layout > xaxis > ticks
Layout > xaxis > ticksuffix
Layout > xaxis > ticktext
Layout > xaxis > tickvals
Layout > xaxis > tickwidth
Layout > xaxis > title
Layout > xaxis > titlefont
Layout > xaxis > titlefont > color
Layout > xaxis > titlefont > family
Layout > xaxis > titlefont > size
Layout > xaxis > type
Layout > xaxis > visible
Layout > xaxis > zeroline
Layout > xaxis > zerolinecolor
Layout > xaxis > zerolinewidth
Layout > yaxis
Layout > yaxis > anchor
Layout > yaxis > automargin
Layout > yaxis > autorange
Layout > yaxis > calendar
Layout > yaxis > categoryarray
Layout > yaxis > categoryorder
Layout > yaxis > color
Layout > yaxis > constrain
Layout > yaxis > constraintoward
Layout > yaxis > domain
Layout > yaxis > dtick
Layout > yaxis > exponentformat
Layout > yaxis > fixedrange
Layout > yaxis > gridcolor
Layout > yaxis > gridwidth
Layout > yaxis > hoverformat
Layout > yaxis > layer
Layout > yaxis > linecolor
Layout > yaxis > linewidth
Layout > yaxis > mirror
Layout > yaxis > nticks
Layout > yaxis > overlaying
Layout > yaxis > position
Layout > yaxis > range
Layout > yaxis > rangemode
Layout > yaxis > scaleanchor
Layout > yaxis > scaleratio
Layout > yaxis > separatethousands
Layout > yaxis > showexponent
Layout > yaxis > showgrid
Layout > yaxis > showline
Layout > yaxis > showspikes
Layout > yaxis > showticklabels
Layout > yaxis > showtickprefix
Layout > yaxis > showticksuffix
Layout > yaxis > side
Layout > yaxis > spikecolor
Layout > yaxis > spikedash
Layout > yaxis > spikemode
Layout > yaxis > spikesnap
Layout > yaxis > spikethickness
Layout > yaxis > tick0
Layout > yaxis > tickangle
Layout > yaxis > tickcolor
Layout > yaxis > tickfont
Layout > yaxis > tickfont > color
Layout > yaxis > tickfont > family
Layout > yaxis > tickfont > size
Layout > yaxis > tickformat
Layout > yaxis > tickformatstops
Layout > yaxis > tickformatstops > items
Layout > yaxis > tickformatstops > items > tickformatstop
Layout > yaxis > ticklen
Layout > yaxis > tickmode
Layout > yaxis > tickprefix
Layout > yaxis > ticks
Layout > yaxis > ticksuffix
Layout > yaxis > ticktext
Layout > yaxis > tickvals
Layout > yaxis > tickwidth
Layout > yaxis > title
Layout > yaxis > titlefont
Layout > yaxis > titlefont > color
Layout > yaxis > titlefont > family
Layout > yaxis > titlefont > size
Layout > yaxis > type
Layout > yaxis > visible
Layout > yaxis > zeroline
Layout > yaxis > zerolinecolor
Layout > yaxis > zerolinewidth
area
area > customdata
area > hoverinfo
area > hoverlabel
area > hoverlabel > bgcolor
area > hoverlabel > bordercolor
area > hoverlabel > font
area > hoverlabel > font > color
area > hoverlabel > font > family
area > hoverlabel > font > size
area > hoverlabel > namelength
area > ids
area > legendgroup
area > marker
area > marker > color
area > marker > opacity
area > marker > size
area > marker > symbol
area > name
area > opacity
area > r
area > selectedpoints
area > showlegend
area > stream
area > stream > maxpoints
area > stream > token
area > t
area > transforms
area > transforms > items
area > transforms > items > transform
area > type
area > visible
bar
bar > _deprecated > bardir
bar > base
bar > cliponaxis
bar > constraintext
bar > customdata
bar > dx
bar > dy
bar > error_x
bar > error_x > array
bar > error_x > arrayminus
bar > error_x > color
bar > error_x > copy_ystyle
bar > error_x > symmetric
bar > error_x > thickness
bar > error_x > traceref
bar > error_x > tracerefminus
bar > error_x > type
bar > error_x > value
bar > error_x > valueminus
bar > error_x > visible
bar > error_x > width
bar > error_y
bar > error_y > array
bar > error_y > arrayminus
bar > error_y > color
bar > error_y > symmetric
bar > error_y > thickness
bar > error_y > traceref
bar > error_y > tracerefminus
bar > error_y > type
bar > error_y > value
bar > error_y > valueminus
bar > error_y > visible
bar > error_y > width
bar > hoverinfo
bar > hoverlabel
bar > hoverlabel > bgcolor
bar > hoverlabel > bordercolor
bar > hoverlabel > font
bar > hoverlabel > font > color
bar > hoverlabel > font > family
bar > hoverlabel > font > size
bar > hoverlabel > namelength
bar > hovertext
bar > ids
bar > insidetextfont
bar > insidetextfont > color
bar > insidetextfont > family
bar > insidetextfont > size
bar > legendgroup
bar > marker
bar > marker > autocolorscale
bar > marker > cauto
bar > marker > cmax
bar > marker > cmin
bar > marker > color
bar > marker > colorbar
bar > marker > colorbar > bgcolor
bar > marker > colorbar > bordercolor
bar > marker > colorbar > borderwidth
bar > marker > colorbar > dtick
bar > marker > colorbar > exponentformat
bar > marker > colorbar > len
bar > marker > colorbar > lenmode
bar > marker > colorbar > nticks
bar > marker > colorbar > outlinecolor
bar > marker > colorbar > outlinewidth
bar > marker > colorbar > separatethousands
bar > marker > colorbar > showexponent
bar > marker > colorbar > showticklabels
bar > marker > colorbar > showtickprefix
bar > marker > colorbar > showticksuffix
bar > marker > colorbar > thickness
bar > marker > colorbar > thicknessmode
bar > marker > colorbar > tick0
bar > marker > colorbar > tickangle
bar > marker > colorbar > tickcolor
bar > marker > colorbar > tickfont
bar > marker > colorbar > tickfont > color
bar > marker > colorbar > tickfont > family
bar > marker > colorbar > tickfont > size
bar > marker > colorbar > tickformat
bar > marker > colorbar > tickformatstops
bar > marker > colorbar > tickformatstops > items
bar > marker > colorbar > ticklen
bar > marker > colorbar > tickmode
bar > marker > colorbar > tickprefix
bar > marker > colorbar > ticks
bar > marker > colorbar > ticksuffix
bar > marker > colorbar > ticktext
bar > marker > colorbar > tickvals
bar > marker > colorbar > tickwidth
bar > marker > colorbar > title
bar > marker > colorbar > titlefont
bar > marker > colorbar > titlefont > color
bar > marker > colorbar > titlefont > family
bar > marker > colorbar > titlefont > size
bar > marker > colorbar > titleside
bar > marker > colorbar > x
bar > marker > colorbar > xanchor
bar > marker > colorbar > xpad
bar > marker > colorbar > y
bar > marker > colorbar > yanchor
bar > marker > colorbar > ypad
bar > marker > colorscale
bar > marker > line
bar > marker > line > autocolorscale
bar > marker > line > cauto
bar > marker > line > cmax
bar > marker > line > cmin
bar > marker > line > color
bar > marker > line > colorscale
bar > marker > line > reversescale
bar > marker > line > width
bar > marker > opacity
bar > marker > reversescale
bar > marker > showscale
bar > name
bar > offset
bar > opacity
bar > orientation
bar > outsidetextfont
bar > outsidetextfont > color
bar > outsidetextfont > family
bar > outsidetextfont > size
bar > r
bar > selected
bar > selected > marker
bar > selected > marker > color
bar > selected > marker > opacity
bar > selected > textfont
bar > selected > textfont > color
bar > selectedpoints
bar > showlegend
bar > stream
bar > stream > maxpoints
bar > stream > token
bar > t
bar > text
bar > textfont
bar > textfont > color
bar > textfont > family
bar > textfont > size
bar > textposition
bar > transforms
bar > transforms > items
bar > transforms > items > transform
bar > type
bar > unselected
bar > unselected > marker
bar > unselected > marker > color
bar > unselected > marker > opacity
bar > unselected > textfont
bar > unselected > textfont > color
bar > visible
bar > width
bar > x
bar > x0
bar > xaxis
bar > xcalendar
bar > y
bar > y0
bar > yaxis
bar > ycalendar
barpolar
barpolar > base
barpolar > customdata
barpolar > dr
barpolar > dtheta
barpolar > hoverinfo
barpolar > hoverlabel
barpolar > hoverlabel > bgcolor
barpolar > hoverlabel > bordercolor
barpolar > hoverlabel > font
barpolar > hoverlabel > font > color