Skip to content

Commit a4402e9

Browse files
authored
Merge pull request #852 from plotly/updt_graph_ob
update graph_objs.py
2 parents ede3992 + 32662b2 commit a4402e9

File tree

4 files changed

+5905
-186
lines changed

4 files changed

+5905
-186
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [2.1.0] - 2017-10-10
6+
### Updated
7+
- Updated `plotly.min.js` to version 1.31.0.
8+
- New features include a `table` trace type.
9+
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1310----2017-10-05) for additional information regarding the updates.
10+
511
## [2.0.16] - 2017-10-06
612
### Updated
713
- Updated `plotly.min.js` to version 1.31.0 for `plotly.offline`.

Diff for: plotly/graph_objs/graph_objs.py

+23-5
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,8 @@ class Box(PlotlyDict):
889889
'hoverinfo', 'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc', 'jitter',
890890
'legendgroup', 'line', 'marker', 'name', 'opacity', 'orientation',
891891
'pointpos', 'showlegend', 'stream', 'type', 'uid', 'visible',
892-
'whiskerwidth', 'x', 'x0', 'xaxis', 'xsrc', 'y', 'y0', 'yaxis', 'ysrc']
892+
'whiskerwidth', 'x', 'x0', 'xaxis', 'xcalendar', 'xsrc', 'y', 'y0',
893+
'yaxis', 'ycalendar', 'ysrc']
893894
894895
Run `<box-object>.help('attribute')` on any of the above.
895896
'<box-object>' is the object at []
@@ -1035,7 +1036,7 @@ class Data(PlotlyList):
10351036
'Histogram2d', 'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Parcoords',
10361037
'Pie', 'Pointcloud', 'Sankey', 'Scatter', 'Scatter3d', 'Scattercarpet',
10371038
'Scattergeo', 'Scattergl', 'Scattermapbox', 'Scatterternary',
1038-
'Surface']
1039+
'Surface', 'Table']
10391040
10401041
"""
10411042
_name = 'data'
@@ -1685,9 +1686,9 @@ class Scattercarpet(PlotlyDict):
16851686
['a', 'asrc', 'b', 'bsrc', 'carpet', 'connectgaps', 'customdata',
16861687
'customdatasrc', 'fill', 'fillcolor', 'hoverinfo', 'hoverinfosrc',
16871688
'hoverlabel', 'hoveron', 'ids', 'idssrc', 'legendgroup', 'line',
1688-
'marker', 'mode', 'name', 'opacity', 'showlegend', 'stream', 'sum',
1689-
'text', 'textfont', 'textposition', 'textpositionsrc', 'textsrc',
1690-
'type', 'uid', 'visible', 'xaxis', 'yaxis']
1689+
'marker', 'mode', 'name', 'opacity', 'showlegend', 'stream', 'text',
1690+
'textfont', 'textposition', 'textpositionsrc', 'textsrc', 'type',
1691+
'uid', 'visible', 'xaxis', 'yaxis']
16911692
16921693
Run `<scattercarpet-object>.help('attribute')` on any of the above.
16931694
'<scattercarpet-object>' is the object at []
@@ -1818,6 +1819,23 @@ class Surface(PlotlyDict):
18181819
_name = 'surface'
18191820

18201821

1822+
class Table(PlotlyDict):
1823+
"""
1824+
Valid attributes for 'table' at path [] under parents ():
1825+
1826+
['cells', 'columnorder', 'columnordersrc', 'columnwidth',
1827+
'columnwidthsrc', 'customdata', 'customdatasrc', 'domain', 'header',
1828+
'hoverinfo', 'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc',
1829+
'legendgroup', 'name', 'opacity', 'showlegend', 'stream', 'type',
1830+
'uid', 'visible']
1831+
1832+
Run `<table-object>.help('attribute')` on any of the above.
1833+
'<table-object>' is the object at []
1834+
1835+
"""
1836+
_name = 'table'
1837+
1838+
18211839
class Trace(dict):
18221840
pass
18231841

0 commit comments

Comments
 (0)