@oliasoft-open-source/charts-library 3.5.1-beta-2 → 3.5.1-beta-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/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25459,12 +25459,13 @@ const useChartState = ({
|
|
|
25459
25459
|
additionalAxesOptions: { range },
|
|
25460
25460
|
axes
|
|
25461
25461
|
} = memoOptions;
|
|
25462
|
+
console.log("state", state);
|
|
25463
|
+
console.log("options", options);
|
|
25464
|
+
console.log("memoState", memoState);
|
|
25465
|
+
console.log("memoOptions", memoOptions);
|
|
25462
25466
|
useStoreChartStateInStorage(memoState, persistenceId);
|
|
25463
25467
|
useToggleCustomLegendVisibility(memoState, memoOptions);
|
|
25464
|
-
useUpdateAxesRanges(
|
|
25465
|
-
range,
|
|
25466
|
-
dispatch
|
|
25467
|
-
);
|
|
25468
|
+
useUpdateAxesRanges(range, dispatch);
|
|
25468
25469
|
useSaveInitialAxesRanges(chartRef, axes, generatedDatasets, dispatch);
|
|
25469
25470
|
};
|
|
25470
25471
|
const WORD_SEPARATOR = " ";
|