@oliasoft-open-source/charts-library 2.13.1 → 2.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/release-notes.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Charts Library Release Notes
|
|
2
2
|
|
|
3
|
+
## 2.13.3
|
|
4
|
+
|
|
5
|
+
- Added story for point styling to support ([OW-11107](https://oliasoft.atlassian.net/browse/OW-11107))
|
|
6
|
+
|
|
7
|
+
## 2.13.2
|
|
8
|
+
|
|
9
|
+
- Changed default value for zoom to true
|
|
10
|
+
|
|
3
11
|
## 2.13.1
|
|
4
12
|
|
|
5
13
|
- Text label for drag options trigger, to make current behaviour more obvious ([OW-11102](https://oliasoft.atlassian.net/browse/OW-11102))
|
|
@@ -216,7 +216,7 @@ export const getDefaultProps = (props) => {
|
|
|
216
216
|
},
|
|
217
217
|
chartOptions: {
|
|
218
218
|
showPoints: props.chart.options.chartOptions.showPoints ?? true,
|
|
219
|
-
enableZoom: props.chart.options.chartOptions.enableZoom ||
|
|
219
|
+
enableZoom: props.chart.options.chartOptions.enableZoom || true,
|
|
220
220
|
enablePan: props.chart.options.chartOptions.enablePan || false,
|
|
221
221
|
showLine: props.chart.options.chartOptions.showLine ?? true,
|
|
222
222
|
closeOnOutsideClick:
|