Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 94d8bd3

Browse files
committed
Merge branch 'polar'
2 parents eb707bc + 1d12c2a commit 94d8bd3

File tree

3 files changed

+65
-15
lines changed

3 files changed

+65
-15
lines changed

plotly/graph_objs/__init__.py

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
Data
2323
Annotations
2424
Annotation
25+
AngularAxis
2526
ColorBar
2627
Contours
2728
ErrorY
@@ -32,6 +33,7 @@
3233
Line
3334
Margin
3435
Marker
36+
RadialAxis
3537
Stream
3638
Trace
3739
XAxis
@@ -42,8 +44,32 @@
4244
"""
4345
from graph_objs import *
4446

45-
__all__ = ["Data", "Annotations", "Bar", "Box", "Contour", "Heatmap",
46-
"Histogram", "Histogram2d", "Histogram2dContour",
47-
"Scatter", "Annotation", "ColorBar", "Contours", "ErrorY", "Figure",
48-
"Font", "Layout", "Legend", "Line", "Margin", "Marker", "Stream",
49-
"Trace", "XAxis", "XBins", "YAxis", "YBins"]
47+
__all__ = ["Data",
48+
"Annotations",
49+
"Bar",
50+
"Box",
51+
"Contour",
52+
"Heatmap",
53+
"Histogram",
54+
"Histogram2d",
55+
"Histogram2dContour",
56+
"Scatter",
57+
"Annotation",
58+
"AngularAxis",
59+
"ColorBar",
60+
"Contours",
61+
"ErrorY",
62+
"Figure",
63+
"Font",
64+
"Layout",
65+
"Legend",
66+
"Line",
67+
"Margin",
68+
"Marker",
69+
"RadialAxis",
70+
"Stream",
71+
"Trace",
72+
"XAxis",
73+
"XBins",
74+
"YAxis",
75+
"YBins"]

plotly/graph_objs/graph_objs.py

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,35 @@
2929
from .. import exceptions
3030
from .. import utils
3131

32-
__all__ = ["Data", "Annotations", "Bar", "Box", "Contour", "Heatmap",
33-
"Histogram", "Histogram2d", "Histogram2dContour", "Scatter",
34-
"Annotation", "ColorBar", "Contours", "ErrorY", "Figure", "Font",
35-
"Layout", "Legend", "Line", "Margin", "Marker", "Stream", "Trace",
36-
"XAxis", "XBins", "YAxis", "YBins"]
32+
__all__ = ["Data",
33+
"Annotations",
34+
"Bar",
35+
"Box",
36+
"Contour",
37+
"Heatmap",
38+
"Histogram",
39+
"Histogram2d",
40+
"Histogram2dContour",
41+
"Scatter",
42+
"Annotation",
43+
"AngularAxis",
44+
"ColorBar",
45+
"Contours",
46+
"ErrorY",
47+
"Figure",
48+
"Font",
49+
"Layout",
50+
"Legend",
51+
"Line",
52+
"Margin",
53+
"Marker",
54+
"RadialAxis",
55+
"Stream",
56+
"Trace",
57+
"XAxis",
58+
"XBins",
59+
"YAxis",
60+
"YBins"]
3761

3862
# TODO: BIG ONE, how should exceptions bubble up in this inheritance scheme?
3963
# TODO: related, WHAT exceptions should bubble up?
@@ -50,7 +74,7 @@
5074
KEY_TO_NAME = dict(
5175
plotlylist='PlotlyList',
5276
data='Data',
53-
angularAxis='AngularAxis',
77+
angularaxis='AngularAxis',
5478
annotations='Annotations',
5579
area='Area',
5680
plotlydict='PlotlyDict',
@@ -74,7 +98,7 @@
7498
line='Line',
7599
margin='Margin',
76100
marker='Marker',
77-
radialAxis='RadialAxis',
101+
radialaxis='RadialAxis',
78102
stream='Stream',
79103
trace='Trace',
80104
textfont='Font',
@@ -91,7 +115,7 @@
91115
NAME_TO_KEY = dict(
92116
PlotlyList='plotlylist',
93117
Data='data',
94-
AngularAxis='angularAxis',
118+
AngularAxis='angularaxis',
95119
Annotations='annotations',
96120
PlotlyDict='plotlydict',
97121
PlotlyTrace='plotlytrace',
@@ -115,7 +139,7 @@
115139
Line='line',
116140
Margin='margin',
117141
Marker='marker',
118-
RadialAxis='radialAxis',
142+
RadialAxis='radialaxis',
119143
Stream='stream',
120144
Trace='trace',
121145
XAxis='xaxis',

plotly/graph_reference

Submodule graph_reference updated from f52d60a to 8bc5258

0 commit comments

Comments
 (0)