Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [2.6.0] - 2018-05-02
## [2.6.0] - 2018-05-09
### Updated
- Updated `plotly.min.js` to version 1.37.0.
- Updated `plotly.min.js` to version 1.37.1.
- New features include a `splom` (scatter plot matrix) trace type.
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1370----2018-05-01) for additional information regarding the updates.
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1371----2018-05-02) for additional information regarding the updates.
- Error message for `plotly.figure_factory.create_choropleth` is more helpful for Windows users on installing `geopandas` and dependencies including `shapely`.

## [2.5.1] - 2018-03-26
Expand Down
28 changes: 23 additions & 5 deletions plotly/graph_objs/graph_objs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,8 @@ class Data(PlotlyList):
'Histogram2d', 'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Parcoords',
'Pie', 'Pointcloud', 'Sankey', 'Scatter', 'Scatter3d', 'Scattercarpet',
'Scattergeo', 'Scattergl', 'Scattermapbox', 'Scatterpolar',
'Scatterpolargl', 'Scatterternary', 'Surface', 'Table', 'Violin']
'Scatterpolargl', 'Scatterternary', 'Splom', 'Surface', 'Table',
'Violin']

"""
_name = 'data'
Expand Down Expand Up @@ -1461,10 +1462,10 @@ class Layout(PlotlyDict):
'grid', 'height', 'hiddenlabels', 'hiddenlabelssrc', 'hidesources',
'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend',
'mapbox', 'margin', 'orientation', 'paper_bgcolor', 'plot_bgcolor',
'polar', 'radialaxis', 'scene', 'separators', 'shapes', 'showlegend',
'sliders', 'spikedistance', 'ternary', 'title', 'titlefont',
'updatemenus', 'violingap', 'violingroupgap', 'violinmode', 'width',
'xaxis', 'yaxis']
'polar', 'radialaxis', 'scene', 'selectdirection', 'separators',
'shapes', 'showlegend', 'sliders', 'spikedistance', 'ternary', 'title',
'titlefont', 'updatemenus', 'violingap', 'violingroupgap',
'violinmode', 'width', 'xaxis', 'yaxis']

Run `<layout-object>.help('attribute')` on any of the above.
'<layout-object>' is the object at []
Expand Down Expand Up @@ -1855,6 +1856,23 @@ class Scene(PlotlyDict):
_name = 'scene'


class Splom(PlotlyDict):
"""
Valid attributes for 'splom' at path [] under parents ():

['customdata', 'customdatasrc', 'diagonal', 'dimensions', 'hoverinfo',
'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc', 'legendgroup', 'marker',
'name', 'opacity', 'selected', 'selectedpoints', 'showlegend',
'showlowerhalf', 'showupperhalf', 'stream', 'text', 'textsrc', 'type',
'uid', 'unselected', 'visible', 'xaxes', 'yaxes']

Run `<splom-object>.help('attribute')` on any of the above.
'<splom-object>' is the object at []

"""
_name = 'splom'


class Stream(PlotlyDict):
"""
Valid attributes for 'stream' at path [] under parents ():
Expand Down
Loading