@oliasoft-open-source/charts-library 3.5.2 → 3.5.3-beta-2

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 CHANGED
@@ -25698,9 +25698,12 @@ const LineChart = (props) => {
25698
25698
  },
25699
25699
  initialState
25700
25700
  );
25701
- const generatedDatasets = useMemo(() => {
25702
- return generateLineChartDatasets(datasets, state, options, translations);
25703
- }, [state.lineEnabled, state.pointsEnabled, axes, annotations, graph]);
25701
+ const generatedDatasets = generateLineChartDatasets(
25702
+ datasets,
25703
+ state,
25704
+ options,
25705
+ translations
25706
+ );
25704
25707
  useChartState({
25705
25708
  chartRef,
25706
25709
  options,
@@ -25724,6 +25727,9 @@ const LineChart = (props) => {
25724
25727
  generatedDatasets
25725
25728
  });
25726
25729
  const usePlugins = useChartPlugins({ options, resetZoom: resetZoom2 });
25730
+ console.log("State", state);
25731
+ console.log("Dataset", generatedDatasets);
25732
+ console.log("Options", options);
25727
25733
  return /* @__PURE__ */ jsxs(
25728
25734
  "div",
25729
25735
  {