Skip to content

Commit 930c85a

Browse files
committed
update default schema
1 parent dfd11cb commit 930c85a

File tree

2 files changed

+850
-128
lines changed

2 files changed

+850
-128
lines changed

Diff for: plotly/graph_objs/graph_objs.py

+28-12
Original file line numberDiff line numberDiff line change
@@ -983,9 +983,9 @@ class Data(PlotlyList):
983983
Valid items for 'data' at path [] under parents ():
984984
['Area', 'Bar', 'Box', 'Candlestick', 'Choropleth', 'Contour',
985985
'Heatmap', 'Heatmapgl', 'Histogram', 'Histogram2d',
986-
'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Pie', 'Pointcloud', 'Scatter',
987-
'Scatter3d', 'Scattergeo', 'Scattergl', 'Scattermapbox',
988-
'Scatterternary', 'Surface']
986+
'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Parcoords', 'Pie',
987+
'Pointcloud', 'Scatter', 'Scatter3d', 'Scattergeo', 'Scattergl',
988+
'Scattermapbox', 'Scatterternary', 'Surface']
989989
990990
"""
991991
_name = 'data'
@@ -1416,9 +1416,10 @@ class Line(PlotlyDict):
14161416
"""
14171417
Valid attributes for 'line' at path [] under parents ():
14181418
1419-
['autocolorscale', 'cauto', 'cmax', 'cmin', 'color', 'colorscale',
1420-
'colorsrc', 'dash', 'outliercolor', 'outlierwidth', 'reversescale',
1421-
'shape', 'showscale', 'simplify', 'smoothing', 'width', 'widthsrc']
1419+
['autocolorscale', 'cauto', 'cmax', 'cmin', 'color', 'colorbar',
1420+
'colorscale', 'colorsrc', 'dash', 'outliercolor', 'outlierwidth',
1421+
'reversescale', 'shape', 'showscale', 'simplify', 'smoothing', 'width',
1422+
'widthsrc']
14221423
14231424
Run `<line-object>.help('attribute')` on any of the above.
14241425
'<line-object>' is the object at []
@@ -1494,6 +1495,20 @@ class Ohlc(PlotlyDict):
14941495
_name = 'ohlc'
14951496

14961497

1498+
class Parcoords(PlotlyDict):
1499+
"""
1500+
Valid attributes for 'parcoords' at path [] under parents ():
1501+
1502+
['dimensions', 'domain', 'hoverinfo', 'legendgroup', 'line', 'name',
1503+
'opacity', 'showlegend', 'stream', 'type', 'uid', 'visible']
1504+
1505+
Run `<parcoords-object>.help('attribute')` on any of the above.
1506+
'<parcoords-object>' is the object at []
1507+
1508+
"""
1509+
_name = 'parcoords'
1510+
1511+
14971512
class Pie(PlotlyDict):
14981513
"""
14991514
Valid attributes for 'pie' at path [] under parents ():
@@ -1547,12 +1562,13 @@ class Scatter(PlotlyDict):
15471562
"""
15481563
Valid attributes for 'scatter' at path [] under parents ():
15491564
1550-
['connectgaps', 'dx', 'dy', 'error_x', 'error_y', 'fill', 'fillcolor',
1551-
'hoverinfo', 'hoveron', 'ids', 'idssrc', 'legendgroup', 'line',
1552-
'marker', 'mode', 'name', 'opacity', 'r', 'rsrc', 'showlegend',
1553-
'stream', 't', 'text', 'textfont', 'textposition', 'textpositionsrc',
1554-
'textsrc', 'tsrc', 'type', 'uid', 'visible', 'x', 'x0', 'xaxis',
1555-
'xcalendar', 'xsrc', 'y', 'y0', 'yaxis', 'ycalendar', 'ysrc']
1565+
['connectgaps', 'customdata', 'customdatasrc', 'dx', 'dy', 'error_x',
1566+
'error_y', 'fill', 'fillcolor', 'hoverinfo', 'hoveron', 'ids',
1567+
'idssrc', 'legendgroup', 'line', 'marker', 'mode', 'name', 'opacity',
1568+
'r', 'rsrc', 'showlegend', 'stream', 't', 'text', 'textfont',
1569+
'textposition', 'textpositionsrc', 'textsrc', 'tsrc', 'type', 'uid',
1570+
'visible', 'x', 'x0', 'xaxis', 'xcalendar', 'xsrc', 'y', 'y0', 'yaxis',
1571+
'ycalendar', 'ysrc']
15561572
15571573
Run `<scatter-object>.help('attribute')` on any of the above.
15581574
'<scatter-object>' is the object at []

0 commit comments

Comments
 (0)