Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e284b81

Browse filesBrowse files
authored
Merge pull request plotly#1007 from plotly/bump_pjs_1371
update plotlyjs for offline for plotlyjs 1.37.1 bug fix
2 parents 3d2366f + c95d00b commit e284b81
Copy full SHA for e284b81

File tree

Expand file treeCollapse file tree

4 files changed

+2189
-828
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+2189
-828
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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.6.0] - 2018-05-02
5+
## [2.6.0] - 2018-05-09
66
### Updated
7-
- Updated `plotly.min.js` to version 1.37.0.
7+
- Updated `plotly.min.js` to version 1.37.1.
88
- New features include a `splom` (scatter plot matrix) trace type.
9-
- 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.
9+
- 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.
1010
- Error message for `plotly.figure_factory.create_choropleth` is more helpful for Windows users on installing `geopandas` and dependencies including `shapely`.
1111

1212
## [2.5.1] - 2018-03-26

‎plotly/graph_objs/graph_objs.py

Copy file name to clipboardExpand all lines: plotly/graph_objs/graph_objs.py
+23-5Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,8 @@ class Data(PlotlyList):
10491049
'Histogram2d', 'Histogram2dcontour', 'Mesh3d', 'Ohlc', 'Parcoords',
10501050
'Pie', 'Pointcloud', 'Sankey', 'Scatter', 'Scatter3d', 'Scattercarpet',
10511051
'Scattergeo', 'Scattergl', 'Scattermapbox', 'Scatterpolar',
1052-
'Scatterpolargl', 'Scatterternary', 'Surface', 'Table', 'Violin']
1052+
'Scatterpolargl', 'Scatterternary', 'Splom', 'Surface', 'Table',
1053+
'Violin']
10531054
10541055
"""
10551056
_name = 'data'
@@ -1461,10 +1462,10 @@ class Layout(PlotlyDict):
14611462
'grid', 'height', 'hiddenlabels', 'hiddenlabelssrc', 'hidesources',
14621463
'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend',
14631464
'mapbox', 'margin', 'orientation', 'paper_bgcolor', 'plot_bgcolor',
1464-
'polar', 'radialaxis', 'scene', 'separators', 'shapes', 'showlegend',
1465-
'sliders', 'spikedistance', 'ternary', 'title', 'titlefont',
1466-
'updatemenus', 'violingap', 'violingroupgap', 'violinmode', 'width',
1467-
'xaxis', 'yaxis']
1465+
'polar', 'radialaxis', 'scene', 'selectdirection', 'separators',
1466+
'shapes', 'showlegend', 'sliders', 'spikedistance', 'ternary', 'title',
1467+
'titlefont', 'updatemenus', 'violingap', 'violingroupgap',
1468+
'violinmode', 'width', 'xaxis', 'yaxis']
14681469
14691470
Run `<layout-object>.help('attribute')` on any of the above.
14701471
'<layout-object>' is the object at []
@@ -1855,6 +1856,23 @@ class Scene(PlotlyDict):
18551856
_name = 'scene'
18561857

18571858

1859+
class Splom(PlotlyDict):
1860+
"""
1861+
Valid attributes for 'splom' at path [] under parents ():
1862+
1863+
['customdata', 'customdatasrc', 'diagonal', 'dimensions', 'hoverinfo',
1864+
'hoverinfosrc', 'hoverlabel', 'ids', 'idssrc', 'legendgroup', 'marker',
1865+
'name', 'opacity', 'selected', 'selectedpoints', 'showlegend',
1866+
'showlowerhalf', 'showupperhalf', 'stream', 'text', 'textsrc', 'type',
1867+
'uid', 'unselected', 'visible', 'xaxes', 'yaxes']
1868+
1869+
Run `<splom-object>.help('attribute')` on any of the above.
1870+
'<splom-object>' is the object at []
1871+
1872+
"""
1873+
_name = 'splom'
1874+
1875+
18581876
class Stream(PlotlyDict):
18591877
"""
18601878
Valid attributes for 'stream' at path [] under parents ():

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.