Skip to content

Commit 7776b01

Browse files
committed
$ make pull_refs; $ make sync_refs
1 parent 62623a5 commit 7776b01

File tree

6 files changed

+873
-173
lines changed

6 files changed

+873
-173
lines changed

Diff for: plotly/graph_reference/.gitignore

-2
This file was deleted.

Diff for: plotly/graph_reference/KEY_TO_NAME.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
{
22
"stream": "Stream",
3+
"scene": "Scene",
4+
"surface": "Surface",
35
"radialaxis": "RadialAxis",
46
"titlefont": "Font",
57
"marker": "Marker",
68
"font": "Font",
79
"angularaxis": "AngularAxis",
10+
"contour": "Contour",
811
"error_x": "ErrorX",
912
"error_y": "ErrorY",
13+
"error_z": "ErrorZ",
1014
"area": "Area",
11-
"contour": "Contour",
15+
"annotation": "Annotation",
1216
"heatmap": "Heatmap",
17+
"zaxis": "ZAxis",
1318
"contours": "Contours",
1419
"xaxis": "XAxis",
1520
"figure": "Figure",
16-
"annotation": "Annotation",
21+
"scatter3d": "Scatter3d",
1722
"annotations": "Annotations",
1823
"tickfont": "Font",
1924
"textfont": "Font",

Diff for: plotly/graph_reference/NAME_TO_KEY.json

+5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"Heatmap": "heatmap",
66
"Contours": "contours",
77
"XBins": "xbins",
8+
"Scatter3d": "scatter3d",
89
"Histogram": "histogram",
910
"Annotations": "annotations",
1011
"YBins": "ybins",
1112
"YAxis": "yaxis",
1213
"ErrorX": "error_x",
1314
"ErrorY": "error_y",
15+
"ErrorZ": "error_z",
1416
"Histogram2d": "histogram2d",
1517
"ColorBar": "colorbar",
1618
"Line": "line",
@@ -23,7 +25,10 @@
2325
"Scatter": "scatter",
2426
"Figure": "figure",
2527
"Stream": "stream",
28+
"Scene": "scene",
29+
"Surface": "surface",
2630
"Annotation": "annotation",
31+
"ZAxis": "zaxis",
2732
"XAxis": "xaxis",
2833
"Marker": "marker",
2934
"Font": "font",

Diff for: plotly/graph_reference/OBJ_MAP.json

+20
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
"info_key": "xbins",
2424
"base_name": "PlotlyDict"
2525
},
26+
"Scatter3d": {
27+
"info_key": "scatter3d",
28+
"base_name": "PlotlyTrace"
29+
},
2630
"Histogram": {
2731
"info_key": "histogram",
2832
"base_name": "PlotlyTrace"
@@ -47,6 +51,10 @@
4751
"info_key": "error_y",
4852
"base_name": "PlotlyDict"
4953
},
54+
"ErrorZ": {
55+
"info_key": "error_z",
56+
"base_name": "PlotlyDict"
57+
},
5058
"Histogram2d": {
5159
"info_key": "histogram2d",
5260
"base_name": "PlotlyTrace"
@@ -95,10 +103,22 @@
95103
"info_key": "stream",
96104
"base_name": "PlotlyDict"
97105
},
106+
"Scene": {
107+
"info_key": "scene",
108+
"base_name": "PlotlyDict"
109+
},
110+
"Surface": {
111+
"info_key": "surface",
112+
"base_name": "PlotlyTrace"
113+
},
98114
"Annotation": {
99115
"info_key": "annotation",
100116
"base_name": "PlotlyDict"
101117
},
118+
"ZAxis": {
119+
"info_key": "zaxis",
120+
"base_name": "PlotlyDict"
121+
},
102122
"XAxis": {
103123
"info_key": "xaxis",
104124
"base_name": "PlotlyDict"

0 commit comments

Comments
 (0)