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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,20 @@ To see all merged commits on the master branch that will be part of the next plo
9
9
10
10
where X.Y.Z is the semver of most recent plotly.js release.
11
11
12
+
## [2.27.0] -- 2023-10-20
13
+
14
+
### Added
15
+
- Add `insiderange` to cartesian axes to help avoid overlap between visible grid lines and tick labels of the counter axis when they are positioned inside [[#6735](https://github.com/plotly/plotly.js/pull/6735)],
16
+
this feature was anonymously sponsored: thank you to our sponsor!
17
+
18
+
### Fixed
19
+
- Fix column order changes on hover [[#6718](https://github.com/plotly/plotly.js/pull/6718)],
20
+
with thanks to @bhavinpatel1109 for the contribution!
21
+
- Fix hover at timestamp '1970-01-01 00:00:00' [[#6752](https://github.com/plotly/plotly.js/pull/6752)],
22
+
with thanks to @adamjhawley for the contribution!
23
+
- Fix clearing empty `candlestick` using react [[#6757](https://github.com/plotly/plotly.js/pull/6757)]
> Please note that as of v2 the "plotly-latest" outputs (e.g. https://cdn.plot.ly/plotly-latest.min.js) will no longer be updated on the CDN, and will stay at the last v1 patch v1.58.5. Therefore, to use the CDN with plotly.js v2 and higher, you must specify an exact plotly.js version.
Copy file name to clipboardExpand all lines: dist/plot-schema.json
+30
Original file line number
Diff line number
Diff line change
@@ -10892,6 +10892,21 @@
10892
10892
"editType": "none",
10893
10893
"valType": "string"
10894
10894
},
10895
+
"insiderange": {
10896
+
"description": "Could be used to set the desired inside range of this axis (excluding the labels) when `ticklabelposition` of the anchored axis has *inside*. Not implemented for axes with `type` *log*. This would be ignored when `range` is provided.",
10897
+
"editType": "plot",
10898
+
"items": [
10899
+
{
10900
+
"editType": "plot",
10901
+
"valType": "any"
10902
+
},
10903
+
{
10904
+
"editType": "plot",
10905
+
"valType": "any"
10906
+
}
10907
+
],
10908
+
"valType": "info_array"
10909
+
},
10895
10910
"labelalias": {
10896
10911
"description": "Replacement text for specific tick or hover labels. For example using {US: 'USA', CA: 'Canada'} changes US to USA and CA to Canada. The labels we would have shown must match the keys exactly, after adding any tickprefix or ticksuffix. For negative numbers the minus sign symbol used (U+2212) is wider than the regular ascii dash. That means you need to use −1 instead of -1. labelalias can be used with any axis type, and both keys (if needed) and values (if desired) can include html-like tags or MathJax.",
10897
10912
"dflt": false,
@@ -12217,6 +12232,21 @@
12217
12232
"editType": "none",
12218
12233
"valType": "string"
12219
12234
},
12235
+
"insiderange": {
12236
+
"description": "Could be used to set the desired inside range of this axis (excluding the labels) when `ticklabelposition` of the anchored axis has *inside*. Not implemented for axes with `type` *log*. This would be ignored when `range` is provided.",
12237
+
"editType": "plot",
12238
+
"items": [
12239
+
{
12240
+
"editType": "plot",
12241
+
"valType": "any"
12242
+
},
12243
+
{
12244
+
"editType": "plot",
12245
+
"valType": "any"
12246
+
}
12247
+
],
12248
+
"valType": "info_array"
12249
+
},
12220
12250
"labelalias": {
12221
12251
"description": "Replacement text for specific tick or hover labels. For example using {US: 'USA', CA: 'Canada'} changes US to USA and CA to Canada. The labels we would have shown must match the keys exactly, after adding any tickprefix or ticksuffix. For negative numbers the minus sign symbol used (U+2212) is wider than the regular ascii dash. That means you need to use −1 instead of -1. labelalias can be used with any axis type, and both keys (if needed) and values (if desired) can include html-like tags or MathJax.",
0 commit comments