@oliasoft-open-source/charts-library 4.1.6 → 4.1.7
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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24683,7 +24683,7 @@ const generateLineChartDatasets = (datasets, state, options, { label }) => {
|
|
|
24683
24683
|
pointBackgroundColor: pointBackgroundColor ?? indexedColor ?? generateRandomColor(COLORS),
|
|
24684
24684
|
pointRadius: pointState ? linePointRadius : 0,
|
|
24685
24685
|
pointHoverRadius: hoverRadius,
|
|
24686
|
-
pointHitRadius: line.pointHitRadius ?? hoverRadius,
|
|
24686
|
+
pointHitRadius: (line == null ? void 0 : line.pointHitRadius) ?? hoverRadius,
|
|
24687
24687
|
...hasCustomOpt ? { hasCustomOpt } : {}
|
|
24688
24688
|
};
|
|
24689
24689
|
});
|