You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2024. It is now read-only.
including an official German translation (locale `de`) [https://github.com/plotly/plotly.js/pull/2217]
86
+
- Add `violin` trace type [https://github.com/plotly/plotly.js/pull/2116]
87
+
- Add `selected` and `unselected` attribute containers to customize selection states [https://github.com/plotly/plotly.js/pull/2135]
88
+
- Add support for multi-selections [https://github.com/plotly/plotly.js/pull/2140]
89
+
- Add layout `colorway` to custom the trace-to-trace color sequence [https://github.com/plotly/plotly.js/pull/2156]
90
+
- Add `tickformatstops` to set tick format per cartesian axis range [https://github.com/plotly/plotly.js/pull/1965]
91
+
- Add hover labels and selections to box points [https://github.com/plotly/plotly.js/pull/2094]
92
+
- Histogram events & bin hover label improvements [https://github.com/plotly/plotly.js/pull/2113]
93
+
- Add support for aggregation in `pie` traces [https://github.com/plotly/plotly.js/pull/2117]
94
+
- Add annotations `startarrowhead`, `arrowside`, `startarrowsize` and `startstandoff` attributes [https://github.com/plotly/plotly.js/pull/2164]
95
+
- Add `zhoverformat` to format `z` values in `heatmap`, `contour` and 2d histogram traces [https://github.com/plotly/plotly.js/pull/2106, https://github.com/plotly/plotly.js/pull/2127]
96
+
- Add `marker.opacity` to bar traces [https://github.com/plotly/plotly.js/pull/2163]
- Miscellaneous fixes for `table` traces [https://github.com/plotly/plotly.js/pull/2107, https://github.com/plotly/plotly.js/pull/2182]
108
+
- Fix horizontal legend items alignment edge case [https://github.com/plotly/plotly.js/pull/2149]
109
+
- Fix shape and updatemenu layering [https://github.com/plotly/plotly.js/pull/2121]
110
+
- Fix bar with error bar with set `ids` edge case [https://github.com/plotly/plotly.js/pull/2169]
111
+
- Fix `cliponaxis: false` for non linear cartesian axes [https://github.com/plotly/plotly.js/pull/2177]
112
+
- Fix heatmap non-uniform brick gaps problem [https://github.com/plotly/plotly.js/pull/2213]
113
+
- Fix choropleth selection when `visible: false` trace are present on graph [https://github.com/plotly/plotly.js/pull/2099, https://github.com/plotly/plotly.js/pull/2109]
114
+
- Fix yet another contour drawing bug [https://github.com/plotly/plotly.js/pull/2091]
115
+
- Clean up pie event data [https://github.com/plotly/plotly.js/pull/2117]
116
+
- Fix scatter + bar hover edge cases [https://github.com/plotly/plotly.js/pull/2218]
117
+
- Allow hover labels to extend to edges of graph area [https://github.com/plotly/plotly.js/pull/2215]
118
+
- Harden location-to-feature against non-string country names for geo subplot [https://github.com/plotly/plotly.js/pull/2122]
119
+
- Remove obsolete `smith` attribute from plot schema [https://github.com/plotly/plotly.js/pull/2093]
120
+
- Fix colorbar class name [https://github.com/plotly/plotly.js/pull/2139]
121
+
122
+
123
+
124
+
## [0.15.5] - 2017-01-08
125
+
### Fixed
126
+
- The `dash_core_components.Location` and `dash_core_components.Link` properties
- The `dash_core_components.Location` component now supports `hash`,
134
+
`href`, and `search` in addition to the already supported `pathname`
135
+
(mimicking the `window.location` API). `href` can be used to handle
136
+
`pathname`, `hash`, and `search` in aggregate, or each can be manipulated
137
+
independently.
138
+
- The `children` property of `dash_core_components.Markdown` and
139
+
`dash_core_components.SyntaxHighlighter` now accepts an
140
+
array of strings (previously it *had* to be a string). Now,
141
+
if an array is provided, it is collapsed into a string with line
142
+
breaks (see #134).
143
+
144
+
## [0.15.3] - 2017-12-11
145
+
### Fixed
146
+
- Upgrade the version of [plotly.js](https://github.com/plotly/plotly.js) from 1.31.0 to 1.31.2. See the list of fixes here: https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md
147
+
148
+
149
+
## [0.15.2] - 2017-11-24
150
+
### :sweat_smile: Added
151
+
- The `Interval` component has a new property: `n_intervals`. This is an
152
+
integer that increases every time that the interval passes. This allows you
153
+
to use the `Interval` component without using the `events=[Event(...)]` pattern
154
+
inside the callback.
155
+
156
+
This is similar to the `n_clicks` property of the `dash_html_components`
157
+
components.
158
+
This was the last use case for `events=[Event(...)]` inside the
159
+
`dash_core_components` library. Ultimately, we may be able to deprecate this
160
+
pattern.
161
+
162
+
### Changed
163
+
- The `dash_core_components.Input(type='number')` component actually converts
164
+
the values to floats or integers, instead of passing the numbers back as strings.
- Several properties in several components had the wrong `propTypes`.
173
+
This has been fixed, improving the documentation for the Dash python classes
174
+
(and removing warnings in JS development).
175
+
Big thanks to community contributor @Akronix!
176
+
177
+
## [0.15.1] - 2017-11-23
178
+
### Fixed
179
+
- Attempt to fix the JS builds from 0.15.0 but actually nothing changed.
180
+
181
+
## [0.15.0] - 2017-11-19
182
+
- Bad build. See 0.15.2 for the correct build
183
+
5
184
## [0.14.0] - 2017-10-17
6
185
### :sparkles: Added
7
-
- An `Upload` component! :tada:
186
+
- An `Upload` component! :tada: See [https://plot.ly/dash/dash-core-components/upload](https://plot.ly/dash/dash-core-components/upload) for docs.
8
187
9
188
## [0.13.0] - 2017-10-05
10
189
### Added
@@ -46,7 +225,7 @@ The following improvements from this version update apply to dash:
46
225
47
226
## [0.12.7] - 2017-09-26
48
227
### :bug: Fixed
49
-
- Fixed issues related to updating the `max_date_allowed` property of `DatePickerSingle` and `DatePickerRange`programatically through callbacks
228
+
- Fixed issues related to updating the `max_date_allowed` property of `DatePickerSingle` and `DatePickerRange`programmatically through callbacks
50
229
- Clicking on the end date in the `DatePickerRange` will now open up the calendar to the end date (https://github.com/plotly/dash-core-components/issues/80)
51
230
52
231
### Maintenance
@@ -61,7 +240,7 @@ The following improvements from this version update apply to dash:
61
240
### :bug: Fixed
62
241
- The `Interval` component was constantly resetting its interval on every update. Initially reported in https://community.plot.ly/t/multiple-interval-object-in-a-single-page/5699/3
63
242
- Removed the used `label` property from the `Slider` component
64
-
- Provide a more descriptive documention for the `marks` property of the `Slider` component
243
+
- Provide a more descriptive documentation for the `marks` property of the `Slider` component
65
244
66
245
### :stars: Added
67
246
- A `disabled` property on the `Interval` component will disable the interval component from firing its updates.
0 commit comments