solid-recharts 0.1.0 → 0.2.1
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/LICENSE +24 -0
- package/package.json +10 -7
- package/src/cartesian/Area.tsx +40 -55
- package/src/cartesian/Bar.tsx +66 -58
- package/src/cartesian/BarStack.tsx +5 -2
- package/src/cartesian/Brush.tsx +1 -1
- package/src/cartesian/Funnel.tsx +15 -19
- package/src/cartesian/Line.tsx +34 -51
- package/src/cartesian/LineDrawShape.tsx +8 -6
- package/src/cartesian/ReferenceArea.tsx +25 -35
- package/src/cartesian/ReferenceDot.tsx +24 -34
- package/src/cartesian/ReferenceLine.tsx +25 -34
- package/src/cartesian/Scatter.tsx +25 -37
- package/src/cartesian/XAxis.tsx +54 -67
- package/src/cartesian/YAxis.tsx +53 -66
- package/src/cartesian/ZAxis.tsx +27 -40
- package/src/chart/SunburstChart.tsx +1 -1
- package/src/component/ActivePoints.tsx +0 -9
- package/src/component/Customized.tsx +1 -1
- package/src/component/Dots.tsx +7 -3
- package/src/context/ErrorBarContext.tsx +15 -24
- package/src/polar/Pie.tsx +36 -48
- package/src/polar/PolarAngleAxis.tsx +41 -50
- package/src/polar/PolarRadiusAxis.tsx +40 -48
- package/src/polar/Radar.tsx +22 -34
- package/src/polar/RadialBar.tsx +21 -39
- package/src/shape/Curve.tsx +1 -1
- package/src/shape/Symbols.tsx +1 -1
- package/src/state/RechartsReduxContext.tsx +1 -1
- package/src/state/SetLegendPayload.ts +19 -27
- package/src/state/SetTooltipEntrySettings.tsx +9 -26
- package/src/state/cartesianAxisSlice.ts +40 -60
- package/src/state/createCollectionActions.ts +51 -0
- package/src/state/createSelector.ts +97 -0
- package/src/state/externalEventsMiddleware.ts +2 -11
- package/src/state/graphicalItemsSlice.ts +27 -40
- package/src/state/isEventThrottled.ts +12 -0
- package/src/state/keyboardEventsMiddleware.ts +2 -8
- package/src/state/layoutSlice.ts +8 -4
- package/src/state/legendSlice.ts +24 -26
- package/src/state/mouseEventsMiddleware.ts +2 -13
- package/src/state/patched.ts +19 -0
- package/src/state/referenceElementsSlice.ts +40 -31
- package/src/state/registerInStore.ts +68 -0
- package/src/state/selectors/areaSelectors.ts +13 -36
- package/src/state/selectors/arrayEqualityCheck.ts +32 -7
- package/src/state/selectors/axisSelectors.ts +215 -169
- package/src/state/selectors/barSelectors.ts +8 -36
- package/src/state/selectors/combiners/combineConfiguredScale.ts +1 -1
- package/src/state/selectors/combiners/combineRealScaleType.ts +1 -1
- package/src/state/selectors/dataSelectors.ts +35 -16
- package/src/state/selectors/numberDomainEqualityCheck.ts +16 -8
- package/src/state/selectors/selectAxisForGraphicalItem.ts +52 -0
- package/src/state/store.ts +0 -1
- package/src/state/tooltipSlice.ts +93 -64
- package/src/util/ActiveShapeUtils.tsx +0 -7
- package/src/util/BarUtils.tsx +27 -22
- package/src/util/ChartUtils.ts +69 -25
- package/src/util/propsAreEqual.ts +3 -33
- package/src/util/stacks/stackTypes.ts +1 -1
- package/src/util/types.ts +2 -2
- package/test/animation/CSSTransitionAnimate.timing.spec.tsx +1 -1
- package/test/animation/JavascriptAnimate.spec.tsx +1 -1
- package/test/animation/legacyAnimationLengthChange.spec.tsx +1 -1
- package/test/cartesian/Area.animation.spec.tsx +1 -1
- package/test/cartesian/Area.range.spec.tsx +1 -1
- package/test/cartesian/Area.spec.tsx +1 -1
- package/test/cartesian/Area.stacked.render.spec.tsx +1 -1
- package/test/cartesian/Area.typed.spec.tsx +1 -1
- package/test/cartesian/Axis.integration.spec.tsx +1 -1
- package/test/cartesian/Bar/Bar.csstransition.spec.tsx +1 -1
- package/test/cartesian/Bar/Bar.spec.tsx +1 -1
- package/test/cartesian/Bar/Bar.typed.spec.tsx +1 -1
- package/test/cartesian/Bar.animation.spec.tsx +1 -1
- package/test/cartesian/Bar.stackDomain.spec.tsx +1 -1
- package/test/cartesian/Bar.stacked.render.spec.tsx +1 -1
- package/test/cartesian/Bar.zeroDimensionFiltering.spec.tsx +1 -1
- package/test/cartesian/Brush.keyboard.spec.tsx +1 -1
- package/test/cartesian/Brush.panorama.spec.tsx +1 -1
- package/test/cartesian/Brush.props.spec.tsx +1 -1
- package/test/cartesian/Brush.render.spec.tsx +1 -1
- package/test/cartesian/Brush.spec.tsx +1 -1
- package/test/cartesian/Brush.stacked.spec.tsx +1 -1
- package/test/cartesian/CartesianAxis.render.spec.tsx +1 -1
- package/test/cartesian/CartesianAxis.spec.tsx +2 -2
- package/test/cartesian/CartesianGrid.render.spec.tsx +1 -1
- package/test/cartesian/CartesianGrid.spec.tsx +1 -1
- package/test/cartesian/ErrorBar.render.spec.tsx +1 -1
- package/test/cartesian/ErrorBar.spec.tsx +1 -1
- package/test/cartesian/Funnel.animation.spec.tsx +1 -1
- package/test/cartesian/Funnel.spec.tsx +1 -1
- package/test/cartesian/Funnel.typed.spec.tsx +1 -1
- package/test/cartesian/GraphicalItemClipPath.scale-behavior.spec.tsx +2 -2
- package/test/cartesian/Line.animation.spec.tsx +1 -1
- package/test/cartesian/Line.sparseAnimationPath.spec.tsx +1 -1
- package/test/cartesian/Line.spec.tsx +1 -1
- package/test/cartesian/Line.typed.spec.tsx +1 -1
- package/test/cartesian/ReferenceArea.render.spec.tsx +1 -1
- package/test/cartesian/ReferenceArea.spec.tsx +1 -1
- package/test/cartesian/ReferenceArea.typed.spec.tsx +1 -1
- package/test/cartesian/ReferenceDot.render.spec.tsx +1 -1
- package/test/cartesian/ReferenceDot.spec.tsx +1 -1
- package/test/cartesian/ReferenceDot.typed.spec.tsx +1 -1
- package/test/cartesian/ReferenceLine/ReferenceLine.panorama.spec.tsx +1 -1
- package/test/cartesian/ReferenceLine/ReferenceLine.spec.tsx +1 -1
- package/test/cartesian/ReferenceLine/ReferenceLine.typed.spec.tsx +1 -1
- package/test/cartesian/ReferenceLine/getEndPoints.spec.ts +1 -1
- package/test/cartesian/ReferenceLine.render.spec.tsx +1 -1
- package/test/cartesian/Scatter.animation.spec.tsx +1 -1
- package/test/cartesian/Scatter.render.spec.tsx +1 -1
- package/test/cartesian/Scatter.spec.tsx +1 -1
- package/test/cartesian/Scatter.typed.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.barSize.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.brush.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.categorydomain.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.datatypes.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.hide.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.multiaxis.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.numberdomain.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.padding.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.padding_clip.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.state.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.tick.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.timescale.spec.tsx +2 -2
- package/test/cartesian/XAxis/XAxis.typed.spec.tsx +1 -1
- package/test/cartesian/XAxis/XAxis.vertical.spec.tsx +1 -1
- package/test/cartesian/XAxis.tickFormatter.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.7362.derivedDomain.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.interval-zero.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.label.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.tick.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.tickFormatter.spec.tsx +1 -1
- package/test/cartesian/YAxis/YAxis.typed.spec.tsx +1 -1
- package/test/cartesian/ZAxis.spec.tsx +1 -1
- package/test/cartesian/ZAxis.typed.spec.tsx +1 -1
- package/test/cartesian/axisLineAndStroke.spec.tsx +1 -1
- package/test/cartesian/miscFeatureGaps.spec.tsx +1 -1
- package/test/chart/AccessibilityLayer.spec.tsx +1 -1
- package/test/chart/AccessibilityScans.spec.tsx +2 -2
- package/test/chart/AreaChart.spec.tsx +1 -1
- package/test/chart/AreaChart.typed.spec.tsx +1 -1
- package/test/chart/BarChart.spec.tsx +1 -1
- package/test/chart/BarChart.typed.spec.tsx +1 -1
- package/test/chart/CategoricalChart.spec.tsx +1 -1
- package/test/chart/ComposedChart.spec.tsx +1 -1
- package/test/chart/ComposedChart.typed.spec.tsx +1 -1
- package/test/chart/FunnelChart.spec.tsx +1 -1
- package/test/chart/FunnelChart.typed.spec.tsx +1 -1
- package/test/chart/LineChart.smoke.spec.tsx +1 -1
- package/test/chart/LineChart.spec.tsx +1 -1
- package/test/chart/LineChart.typed.spec.tsx +1 -1
- package/test/chart/NicheChartTooltip.spec.tsx +1 -1
- package/test/chart/PieChart.spec.tsx +1 -1
- package/test/chart/PieChart.typed.spec.tsx +1 -1
- package/test/chart/RadarChart.spec.tsx +1 -1
- package/test/chart/RadarChart.typed.spec.tsx +1 -1
- package/test/chart/RadialBarChart.spec.tsx +1 -1
- package/test/chart/RadialBarChart.typed.spec.tsx +1 -1
- package/test/chart/RechartsWrapper.spec.tsx +1 -1
- package/test/chart/Sankey.content.spec.tsx +1 -1
- package/test/chart/Sankey.spec.tsx +1 -1
- package/test/chart/ScatterChart.spec.tsx +1 -1
- package/test/chart/ScatterChart.typed.spec.tsx +1 -1
- package/test/chart/SunburstChart.spec.tsx +1 -1
- package/test/chart/Treemap.animation.spec.tsx +1 -1
- package/test/chart/Treemap.spec.tsx +1 -1
- package/test/chart/chartEvents.spec.tsx +1 -1
- package/test/chart/responsive.spec.tsx +1 -1
- package/test/component/Cell.render.spec.tsx +1 -1
- package/test/component/Cell.spec.tsx +1 -1
- package/test/component/Cursor.spec.tsx +1 -1
- package/test/component/DefaultTooltipContent.spec.tsx +1 -1
- package/test/component/Label.render.spec.tsx +1 -1
- package/test/component/Label.spec.tsx +1 -1
- package/test/component/LabelList.spec.tsx +1 -1
- package/test/component/Legend.itemSorter.spec.tsx +1 -1
- package/test/component/Legend.render.spec.tsx +1 -1
- package/test/component/Legend.spec.tsx +1 -1
- package/test/component/ResponsiveContainer.spec.tsx +1 -1
- package/test/component/ResponsiveContainerDataTest.spec.tsx +1 -1
- package/test/component/Text.spec.tsx +1 -1
- package/test/component/Tooltip/ActiveDot.spec.tsx +1 -1
- package/test/component/Tooltip/tooltipEventType.spec.tsx +1 -1
- package/test/component/Tooltip/tooltipTestHelpers.tsx +1 -1
- package/test/component/Tooltip.defaultIndex.spec.tsx +1 -1
- package/test/component/Tooltip.hover.spec.tsx +1 -1
- package/test/component/Tooltip.item.spec.tsx +1 -1
- package/test/component/Tooltip.keyboard.spec.tsx +1 -1
- package/test/component/Tooltip.payload.spec.tsx +1 -1
- package/test/component/Tooltip.touch.spec.tsx +1 -1
- package/test/component/Tooltip.visibility.spec.tsx +1 -1
- package/test/component/TooltipBoundingBox.spec.tsx +2 -2
- package/test/container/ClipPath.spec.tsx +1 -1
- package/test/context/chartLayoutContext.spec.tsx +1 -1
- package/test/helper/createSelectorTestCase.tsx +1 -1
- package/test/helper/mockAxes.ts +1 -1
- package/test/helper/selectorTestHelpers.tsx +1 -1
- package/test/hooks/useActiveTooltipDataPoints.spec.tsx +1 -1
- package/test/hooks/useOffset.spec.tsx +1 -1
- package/test/hooks/useTooltipStateHooks.spec.tsx +1 -1
- package/test/polar/Pie/Pie-TwoLevelPieChart.spec.tsx +1 -1
- package/test/polar/Pie/Pie.spec.tsx +1 -1
- package/test/polar/Pie/Pie.typed.spec.tsx +1 -1
- package/test/polar/Pie.animation.spec.tsx +1 -1
- package/test/polar/PieWithLegend.animation.spec.tsx +1 -1
- package/test/polar/PolarAngleAxis/PolarAngleAxis.events.spec.tsx +1 -1
- package/test/polar/PolarAngleAxis/PolarAngleAxis.spec.tsx +1 -1
- package/test/polar/PolarAngleAxis/PolarAngleAxis.typed.spec.tsx +1 -1
- package/test/polar/PolarAngleAxis.render.spec.tsx +1 -1
- package/test/polar/PolarGrid.render.spec.tsx +1 -1
- package/test/polar/PolarGrid.spec.tsx +1 -1
- package/test/polar/PolarLegendPerRow.render.spec.tsx +1 -1
- package/test/polar/PolarRadiusAxis.events.spec.tsx +1 -1
- package/test/polar/PolarRadiusAxis.render.spec.tsx +1 -1
- package/test/polar/PolarRadiusAxis.spec.tsx +1 -1
- package/test/polar/PolarRadiusAxis.typed.spec.tsx +1 -1
- package/test/polar/PolarTooltipLegend.render.spec.tsx +1 -1
- package/test/polar/Radar.animation.spec.tsx +1 -1
- package/test/polar/Radar.render.spec.tsx +1 -1
- package/test/polar/Radar.spec.tsx +1 -1
- package/test/polar/Radar.typed.spec.tsx +1 -1
- package/test/polar/RadialBar/RadialBar.spec.tsx +1 -1
- package/test/polar/RadialBar/RadialBar.typed.spec.tsx +1 -1
- package/test/polar/RadialBar.animation.spec.tsx +1 -1
- package/test/polar/RadialBar.render.spec.tsx +1 -1
- package/test/polar/RadialBar.stacked.spec.tsx +1 -1
- package/test/setup.ts +1 -1
- package/test/shape/ActiveShape.spec.tsx +1 -1
- package/test/shape/Cross.spec.tsx +1 -1
- package/test/shape/Curve.spec.tsx +2 -2
- package/test/shape/Curve.typed.spec.tsx +1 -1
- package/test/shape/Dot.spec.tsx +1 -1
- package/test/shape/Polygon.spec.tsx +1 -1
- package/test/shape/Rectangle.animation.spec.tsx +1 -1
- package/test/shape/Rectangle.spec.tsx +1 -1
- package/test/shape/Sector.spec.tsx +1 -1
- package/test/shape/Symbols.spec.tsx +1 -1
- package/test/shape/Trapezoid.spec.tsx +1 -1
- package/test/state/createCollectionActions.spec.ts +87 -0
- package/test/state/createSelector.spec.ts +158 -0
- package/test/state/hooks.spec.tsx +1 -1
- package/test/state/registerInStore.spec.tsx +101 -0
- package/test/state/selectors/axisSelectors.spec.tsx +1 -1
- package/test/state/selectors/combiners/combineConfiguredScale.spec.ts +1 -1
- package/test/state/selectors/combiners/combineRealScaleType.spec.ts +1 -1
- package/test/state/selectors/dataSelectors.spec.tsx +1 -1
- package/test/state/selectors/legendSelectors.spec.tsx +1 -1
- package/test/state/selectors/radarSelectors.spec.tsx +1 -1
- package/test/state/selectors/selectActiveTooltipIndex.spec.tsx +1 -1
- package/test/state/selectors/selectDisplayedData.spec.tsx +1 -1
- package/test/state/selectors/selectStackGroups.spec.tsx +1 -1
- package/test/state/selectors/selectorMemoization.spec.tsx +136 -0
- package/test/state/selectors/selectors.spec.tsx +1 -1
- package/test/util/CartesianUtils/CartesianUtils.spec.ts +1 -1
- package/test/util/ChartUtils/ChartUtils.spec.ts +1 -1
- package/test/util/ChartUtils/getCateCoordinateOfLine.spec.ts +14 -0
- package/test/util/ChartUtils/getStackedData.spec.ts +1 -1
- package/test/util/ChartUtils/truncateByDomain.spec.ts +1 -1
- package/test/util/DomUtils.spec.tsx +1 -1
- package/test/util/FunnelUtils.spec.tsx +1 -1
- package/test/util/scale/createCategoricalInverse.spec.ts +1 -1
- package/test/util/useElementOffset.spec.tsx +1 -1
- package/test/util/usePrefersReducedMotion.spec.ts +1 -1
- package/test/util/useUniqueId.spec.ts +1 -1
- package/test/zIndex/AllZIndexPortals.spec.tsx +1 -1
- package/test/zIndex/DynamicZIndex.spec.tsx +1 -1
- package/test/zIndex/ZIndexLayer.portalOwner.spec.tsx +1 -1
- package/test/zIndex/componentZIndex.spec.tsx +1 -1
- package/test/zIndex/multiChartZIndexIsolation.spec.tsx +1 -1
- package/test-results/.last-run.json +4 -0
- package/NEXT_SESSION_PROMPT.md +0 -114
- package/src/state/reduxDevtoolsJsonStringifyReplacer.ts +0 -15
- package/src/util/axisPropsAreEqual.ts +0 -42
- package/src/util/resolveDefaultProps.tsx +0 -8
- package/src/util/typedDataKey.ts +0 -8
- package/test/helper/render.ts +0 -7
- package/test/state/reduxDevtoolsJsonStringifyReplacer.spec.ts +0 -25
- package/test/util/axisPropsAreEqual.spec.ts +0 -93
package/src/cartesian/ZAxis.tsx
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
// settings into the cartesianAxis slice so Scatter can size its points by the z
|
|
5
5
|
// value. Solid deviations: useLayoutEffect/prevRef → createEffect add/replace +
|
|
6
6
|
// onCleanup remove (the XAxis/YAxis idiom); defaults via merge.
|
|
7
|
-
import {
|
|
7
|
+
import { merge } from "solid-js";
|
|
8
8
|
import { useAppStore } from "../state/hooks";
|
|
9
9
|
import { AxisId, ZAxisSettings } from "../state/cartesianAxisSlice";
|
|
10
10
|
import { implicitZAxis } from "../state/selectors/axisSelectors";
|
|
11
11
|
import { AxisDomain, DataKey, ScaleType } from "../util/types";
|
|
12
12
|
import { AxisRange } from "../state/selectors/axisSelectors";
|
|
13
13
|
import { CustomScaleDefinition } from "../util/scale/CustomScaleDefinition";
|
|
14
|
-
import {
|
|
14
|
+
import { registerInStore } from "../state/registerInStore";
|
|
15
15
|
|
|
16
16
|
export interface ZAxisProps<DataPointType = unknown, DataValueType = unknown> {
|
|
17
17
|
zAxisId?: AxisId;
|
|
@@ -37,44 +37,31 @@ export function ZAxis<DataPointType = unknown, DataValueType = unknown>(
|
|
|
37
37
|
const store = useAppStore();
|
|
38
38
|
const merged = merge(zAxisDefaultProps, props);
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
} else if (prev !== settings) {
|
|
66
|
-
store.actions.cartesianAxis.replaceZAxis({ prev, next: settings });
|
|
67
|
-
}
|
|
68
|
-
prev = settings;
|
|
69
|
-
},
|
|
70
|
-
);
|
|
71
|
-
|
|
72
|
-
unregisterOnCleanup(() => {
|
|
73
|
-
if (prev && store != null) {
|
|
74
|
-
store.actions.cartesianAxis.removeZAxis(prev);
|
|
75
|
-
prev = null;
|
|
76
|
-
}
|
|
77
|
-
});
|
|
40
|
+
if (store != null) {
|
|
41
|
+
registerInStore<ZAxisSettings>(
|
|
42
|
+
() => ({
|
|
43
|
+
id: merged.zAxisId,
|
|
44
|
+
type: merged.type,
|
|
45
|
+
dataKey: merged.dataKey,
|
|
46
|
+
range: merged.range,
|
|
47
|
+
domain: merged.domain,
|
|
48
|
+
scale: merged.scale,
|
|
49
|
+
// recharts registers the raw prop name/unit (undefined when unset); the
|
|
50
|
+
// implicit "" is only the fallback when NO ZAxis exists (selectZAxisSettings).
|
|
51
|
+
name: merged.name,
|
|
52
|
+
unit: merged.unit,
|
|
53
|
+
allowDataOverflow: implicitZAxis.allowDataOverflow,
|
|
54
|
+
allowDuplicatedCategory: implicitZAxis.allowDuplicatedCategory,
|
|
55
|
+
includeHidden: implicitZAxis.includeHidden,
|
|
56
|
+
reversed: implicitZAxis.reversed,
|
|
57
|
+
}),
|
|
58
|
+
{
|
|
59
|
+
add: (next) => store.actions.cartesianAxis.addZAxis(next),
|
|
60
|
+
replace: (prev, next) => store.actions.cartesianAxis.replaceZAxis({ prev, next }),
|
|
61
|
+
remove: (prev) => store.actions.cartesianAxis.removeZAxis(prev),
|
|
62
|
+
},
|
|
63
|
+
);
|
|
64
|
+
}
|
|
78
65
|
|
|
79
66
|
return null;
|
|
80
67
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
// DEFERRED: event throttling nuances.
|
|
15
15
|
import { createMemo, For, merge, Show } from "solid-js";
|
|
16
16
|
import type { JSX } from "@solidjs/web";
|
|
17
|
-
import { scaleLinear } from "
|
|
17
|
+
import { scaleLinear } from "d3-scale";
|
|
18
18
|
import { Surface } from "../container/Surface";
|
|
19
19
|
import { Layer } from "../container/Layer";
|
|
20
20
|
import { Sector } from "../shape/Sector";
|
|
@@ -125,12 +125,3 @@ export function renderActivePointsLayerFromState(
|
|
|
125
125
|
</g>
|
|
126
126
|
);
|
|
127
127
|
}
|
|
128
|
-
|
|
129
|
-
/** @deprecated Use computeActivePointState + renderActivePointsLayerFromState */
|
|
130
|
-
export function renderActivePointsLayer(args: ActivePointsLayerArgs): JSX.Element | null {
|
|
131
|
-
const state = computeActivePointState(args);
|
|
132
|
-
if (state == null) {
|
|
133
|
-
return null;
|
|
134
|
-
}
|
|
135
|
-
return renderActivePointsLayerFromState(state, args);
|
|
136
|
-
}
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
//
|
|
5
5
|
// TODO: do not port this file as-is. The Solid-native port replaces it (see the
|
|
6
6
|
// reason above). If a consumer needs this path, wire it to the Solid equivalent
|
|
7
|
-
// instead.
|
|
7
|
+
// instead.
|
|
8
8
|
export {};
|
package/src/component/Dots.tsx
CHANGED
|
@@ -109,11 +109,15 @@ export function Dots(props: DotsProps): JSX.Element {
|
|
|
109
109
|
return (
|
|
110
110
|
<Show when={shouldRenderDots(props.points, props.dot)}>
|
|
111
111
|
<Layer class={props.class} clipPath={layerClip()}>
|
|
112
|
-
|
|
112
|
+
{/* keyed={false} (index-keyed): during animation `points` is a fresh
|
|
113
|
+
array with fresh point objects every frame; reference-keyed <For>
|
|
114
|
+
would dispose+recreate every dot's DOM node per frame. Index-keying
|
|
115
|
+
reuses the rows and only updates cx/cy reactively. */}
|
|
116
|
+
<For each={props.points} keyed={false}>
|
|
113
117
|
{(entry, i) => (
|
|
114
118
|
<DotRenderer
|
|
115
|
-
entry={entry}
|
|
116
|
-
index={i
|
|
119
|
+
entry={entry()}
|
|
120
|
+
index={i}
|
|
117
121
|
dot={props.dot}
|
|
118
122
|
baseProps={props.baseProps}
|
|
119
123
|
dataKey={props.dataKey}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// Solid deviations: context value carries an `Accessor` (Solid context is fixed
|
|
8
8
|
// at provide-time; the accessor keeps `data` reactive). useEffect add/replace +
|
|
9
9
|
// cleanup remove → createEffect + onCleanup. useGraphicalItemId provides the id.
|
|
10
|
-
import { createContext,
|
|
10
|
+
import { createContext, useContext } from "solid-js";
|
|
11
11
|
import type { Accessor } from "solid-js";
|
|
12
12
|
import type { JSX } from "@solidjs/web";
|
|
13
13
|
import { AxisId } from "../state/cartesianAxisSlice";
|
|
@@ -15,7 +15,7 @@ import type { ErrorBarDataPointFormatter } from "../cartesian/ErrorBar";
|
|
|
15
15
|
import type { ErrorBarsSettings } from "../state/errorBarSlice";
|
|
16
16
|
import { useAppStore } from "../state/hooks";
|
|
17
17
|
import { useGraphicalItemId } from "./RegisterGraphicalItemId";
|
|
18
|
-
import {
|
|
18
|
+
import { registerInStore } from "../state/registerInStore";
|
|
19
19
|
|
|
20
20
|
export interface ErrorBarContextValue {
|
|
21
21
|
data: ReadonlyArray<unknown> | undefined;
|
|
@@ -57,29 +57,20 @@ export const useErrorBarContext = (): Accessor<ErrorBarContextValue> => useConte
|
|
|
57
57
|
export function ReportErrorBarSettings(props: ErrorBarsSettings): JSX.Element {
|
|
58
58
|
const store = useAppStore();
|
|
59
59
|
const graphicalItemId = useGraphicalItemId();
|
|
60
|
-
let prev: ErrorBarsSettings | null = null;
|
|
61
60
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
);
|
|
76
|
-
|
|
77
|
-
unregisterOnCleanup(() => {
|
|
78
|
-
if (prev != null && store != null && graphicalItemId != null) {
|
|
79
|
-
store.actions.errorBars.removeErrorBar({ itemId: graphicalItemId, errorBar: prev });
|
|
80
|
-
prev = null;
|
|
81
|
-
}
|
|
82
|
-
});
|
|
61
|
+
if (store != null && graphicalItemId != null) {
|
|
62
|
+
registerInStore<ErrorBarsSettings>(
|
|
63
|
+
() => ({ dataKey: props.dataKey, direction: props.direction }),
|
|
64
|
+
{
|
|
65
|
+
add: (next) =>
|
|
66
|
+
store.actions.errorBars.addErrorBar({ itemId: graphicalItemId, errorBar: next }),
|
|
67
|
+
replace: (prev, next) =>
|
|
68
|
+
store.actions.errorBars.replaceErrorBar({ itemId: graphicalItemId, prev, next }),
|
|
69
|
+
remove: (prev) =>
|
|
70
|
+
store.actions.errorBars.removeErrorBar({ itemId: graphicalItemId, errorBar: prev }),
|
|
71
|
+
},
|
|
72
|
+
);
|
|
73
|
+
}
|
|
83
74
|
|
|
84
75
|
return null;
|
|
85
76
|
}
|
package/src/polar/Pie.tsx
CHANGED
|
@@ -81,7 +81,7 @@ import { ZIndexLayer } from "../zIndex/ZIndexLayer";
|
|
|
81
81
|
import { getMaxRadius, polarToCartesian } from "../util/PolarUtils";
|
|
82
82
|
import { getPercentValue, interpolate, isNumber, isNumOrStr, mathSign } from "../util/DataUtils";
|
|
83
83
|
import { getValueByDataKey } from "../util/ChartUtils";
|
|
84
|
-
import {
|
|
84
|
+
import { registerInStore } from "../state/registerInStore";
|
|
85
85
|
|
|
86
86
|
export type PieCoordinate = {
|
|
87
87
|
cx: number;
|
|
@@ -583,53 +583,41 @@ export function Pie<DataPointType = Record<string, unknown>, DataValueType = unk
|
|
|
583
583
|
const merged = merge(pieDefaultProps, props);
|
|
584
584
|
const id = useUniqueId("recharts-pie", props.id);
|
|
585
585
|
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
store.actions.graphicalItems.replacePolarGraphicalItem({ prev, next: settings });
|
|
622
|
-
}
|
|
623
|
-
prev = settings;
|
|
624
|
-
},
|
|
625
|
-
);
|
|
626
|
-
|
|
627
|
-
unregisterOnCleanup(() => {
|
|
628
|
-
if (prev && store != null) {
|
|
629
|
-
store.actions.graphicalItems.removePolarGraphicalItem(prev);
|
|
630
|
-
prev = null;
|
|
631
|
-
}
|
|
632
|
-
});
|
|
586
|
+
if (store != null) {
|
|
587
|
+
registerInStore<PieSettings>(
|
|
588
|
+
() => ({
|
|
589
|
+
id,
|
|
590
|
+
type: "pie",
|
|
591
|
+
data: merged.data,
|
|
592
|
+
dataKey: merged.dataKey,
|
|
593
|
+
hide: merged.hide,
|
|
594
|
+
angleAxisId: merged.angleAxisId ?? 0,
|
|
595
|
+
radiusAxisId: merged.radiusAxisId ?? 0,
|
|
596
|
+
name: merged.name,
|
|
597
|
+
nameKey: merged.nameKey,
|
|
598
|
+
tooltipType: merged.tooltipType,
|
|
599
|
+
legendType: merged.legendType,
|
|
600
|
+
fill: merged.fill,
|
|
601
|
+
stroke: merged.stroke,
|
|
602
|
+
cx: merged.cx,
|
|
603
|
+
cy: merged.cy,
|
|
604
|
+
startAngle: merged.startAngle,
|
|
605
|
+
endAngle: merged.endAngle,
|
|
606
|
+
paddingAngle: merged.paddingAngle,
|
|
607
|
+
minAngle: merged.minAngle,
|
|
608
|
+
innerRadius: merged.innerRadius,
|
|
609
|
+
outerRadius: merged.outerRadius,
|
|
610
|
+
cornerRadius: merged.cornerRadius,
|
|
611
|
+
maxRadius: merged.maxRadius,
|
|
612
|
+
}),
|
|
613
|
+
{
|
|
614
|
+
add: (next) => store.actions.graphicalItems.addPolarGraphicalItem(next),
|
|
615
|
+
replace: (prev, next) =>
|
|
616
|
+
store.actions.graphicalItems.replacePolarGraphicalItem({ prev, next }),
|
|
617
|
+
remove: (prev) => store.actions.graphicalItems.removePolarGraphicalItem(prev),
|
|
618
|
+
},
|
|
619
|
+
);
|
|
620
|
+
}
|
|
633
621
|
|
|
634
622
|
// Per-slice <Cell> overrides (collected from children, in data order).
|
|
635
623
|
const cells = collectCells(() => props.children);
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
// evaluated element to inject computed x/y/payload — use the function form
|
|
18
18
|
// instead). NOTE: the reference PolarAngleAxis renders no axis `label` title
|
|
19
19
|
// either (only PolarRadiusAxis does) — no gap there.
|
|
20
|
-
import {
|
|
20
|
+
import { For, merge, Show } from "solid-js";
|
|
21
21
|
import type { JSX } from "@solidjs/web";
|
|
22
22
|
import { svgPropertiesNoEvents } from "../util/svgPropertiesNoEvents";
|
|
23
23
|
import { useAppSelector, useAppStore } from "../state/hooks";
|
|
@@ -48,7 +48,7 @@ import { useIsPanorama } from "../context/PanoramaContext";
|
|
|
48
48
|
import { usePolarChartLayout } from "../context/chartLayoutContext";
|
|
49
49
|
import { getAxisTypeBasedOnLayout } from "../util/getAxisTypeBasedOnLayout";
|
|
50
50
|
import { CustomScaleDefinition } from "../util/scale/CustomScaleDefinition";
|
|
51
|
-
import {
|
|
51
|
+
import { registerInStore } from "../state/registerInStore";
|
|
52
52
|
import { DefaultZIndexes } from "../zIndex/DefaultZIndexes";
|
|
53
53
|
import { ZIndexLayer } from "../zIndex/ZIndexLayer";
|
|
54
54
|
|
|
@@ -334,54 +334,45 @@ export function PolarAngleAxis<DataPointType = unknown, DataValueType = unknown>
|
|
|
334
334
|
const merged = merge(polarAngleAxisDefaultProps, props);
|
|
335
335
|
const isPanorama = useIsPanorama();
|
|
336
336
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
},
|
|
377
|
-
);
|
|
378
|
-
|
|
379
|
-
unregisterOnCleanup(() => {
|
|
380
|
-
if (prev && store != null) {
|
|
381
|
-
store.actions.polarAxis.removeAngleAxis(prev);
|
|
382
|
-
prev = null;
|
|
383
|
-
}
|
|
384
|
-
});
|
|
337
|
+
if (store != null) {
|
|
338
|
+
registerInStore<AngleAxisSettings>(
|
|
339
|
+
(): AngleAxisSettings | undefined => {
|
|
340
|
+
const evaluatedType = getAxisTypeBasedOnLayout(layout(), "angleAxis", merged.type);
|
|
341
|
+
if (evaluatedType == null) {
|
|
342
|
+
return undefined;
|
|
343
|
+
}
|
|
344
|
+
return {
|
|
345
|
+
id: merged.angleAxisId,
|
|
346
|
+
scale: merged.scale,
|
|
347
|
+
type: evaluatedType,
|
|
348
|
+
dataKey: merged.dataKey,
|
|
349
|
+
unit: undefined,
|
|
350
|
+
name: merged.name,
|
|
351
|
+
// Ignored on purpose: axis calc behaves as if false (recharts note).
|
|
352
|
+
allowDuplicatedCategory: false,
|
|
353
|
+
allowDataOverflow: false,
|
|
354
|
+
reversed: merged.reversed,
|
|
355
|
+
includeHidden: false,
|
|
356
|
+
domain: merged.domain,
|
|
357
|
+
allowDecimals: merged.allowDecimals,
|
|
358
|
+
tickCount: merged.tickCount,
|
|
359
|
+
ticks: merged.ticks,
|
|
360
|
+
// DEVIATION: the settings slice shares the cartesian tick renderer type,
|
|
361
|
+
// so a polar function-form renderer is recorded as `true` (presence only —
|
|
362
|
+
// the renderer itself stays local to this component's render; no selector
|
|
363
|
+
// reads the function back out of the store).
|
|
364
|
+
tick: typeof merged.tick === "function" ? true : merged.tick,
|
|
365
|
+
niceTicks: merged.niceTicks,
|
|
366
|
+
};
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
// addAngleAxis overwrites by id, so it doubles as replace-on-change.
|
|
370
|
+
add: (next) => store.actions.polarAxis.addAngleAxis(next),
|
|
371
|
+
replace: (_prev, next) => store.actions.polarAxis.addAngleAxis(next),
|
|
372
|
+
remove: (prev) => store.actions.polarAxis.removeAngleAxis(prev),
|
|
373
|
+
},
|
|
374
|
+
);
|
|
375
|
+
}
|
|
385
376
|
|
|
386
377
|
const viewBox = useAppSelector(selectPolarViewBox);
|
|
387
378
|
const scale = useAppSelector((state) =>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
// DefaultZIndexes.axis).
|
|
15
15
|
// DEFERRED (documented): ELEMENT-form `tick` (Solid can't clone-and-inject
|
|
16
16
|
// computed props into an evaluated node — use the function form instead).
|
|
17
|
-
import {
|
|
17
|
+
import { For, merge, Show } from "solid-js";
|
|
18
18
|
import type { JSX } from "@solidjs/web";
|
|
19
19
|
import { svgPropertiesNoEvents } from "../util/svgPropertiesNoEvents";
|
|
20
20
|
import { useAppSelector, useAppStore } from "../state/hooks";
|
|
@@ -47,7 +47,7 @@ import { usePolarChartLayout } from "../context/chartLayoutContext";
|
|
|
47
47
|
import { getAxisTypeBasedOnLayout } from "../util/getAxisTypeBasedOnLayout";
|
|
48
48
|
import { CustomScaleDefinition } from "../util/scale/CustomScaleDefinition";
|
|
49
49
|
import type { PolarAxisLineObjectProps, PolarTickEventHandler } from "./PolarAngleAxis";
|
|
50
|
-
import {
|
|
50
|
+
import { registerInStore } from "../state/registerInStore";
|
|
51
51
|
|
|
52
52
|
type TickOrientation = "left" | "right" | "middle";
|
|
53
53
|
|
|
@@ -265,52 +265,44 @@ export function PolarRadiusAxis<DataPointType = unknown, DataValueType = unknown
|
|
|
265
265
|
const layout = usePolarChartLayout();
|
|
266
266
|
const merged = merge(polarRadiusAxisDefaultProps, props);
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
);
|
|
307
|
-
|
|
308
|
-
unregisterOnCleanup(() => {
|
|
309
|
-
if (prev && store != null) {
|
|
310
|
-
store.actions.polarAxis.removeRadiusAxis(prev);
|
|
311
|
-
prev = null;
|
|
312
|
-
}
|
|
313
|
-
});
|
|
268
|
+
if (store != null) {
|
|
269
|
+
registerInStore<RadiusAxisSettings>(
|
|
270
|
+
(): RadiusAxisSettings | undefined => {
|
|
271
|
+
const evaluatedType = getAxisTypeBasedOnLayout(layout(), "radiusAxis", merged.type);
|
|
272
|
+
if (evaluatedType == null) {
|
|
273
|
+
return undefined;
|
|
274
|
+
}
|
|
275
|
+
return {
|
|
276
|
+
id: merged.radiusAxisId,
|
|
277
|
+
scale: merged.scale,
|
|
278
|
+
type: evaluatedType,
|
|
279
|
+
dataKey: merged.dataKey,
|
|
280
|
+
unit: undefined,
|
|
281
|
+
name: merged.name,
|
|
282
|
+
allowDuplicatedCategory: merged.allowDuplicatedCategory,
|
|
283
|
+
allowDataOverflow: merged.allowDataOverflow,
|
|
284
|
+
reversed: merged.reversed,
|
|
285
|
+
includeHidden: merged.includeHidden,
|
|
286
|
+
domain: merged.domain,
|
|
287
|
+
allowDecimals: merged.allowDecimals,
|
|
288
|
+
tickCount: merged.tickCount,
|
|
289
|
+
ticks: merged.ticks,
|
|
290
|
+
// DEVIATION: the settings slice shares the cartesian tick renderer type,
|
|
291
|
+
// so a polar function-form renderer is recorded as `true` (presence only —
|
|
292
|
+
// the renderer itself stays local to this component's render; no selector
|
|
293
|
+
// reads the function back out of the store).
|
|
294
|
+
tick: typeof merged.tick === "function" ? true : merged.tick,
|
|
295
|
+
niceTicks: merged.niceTicks,
|
|
296
|
+
};
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
// addRadiusAxis overwrites by id, so it doubles as replace-on-change.
|
|
300
|
+
add: (next) => store.actions.polarAxis.addRadiusAxis(next),
|
|
301
|
+
replace: (_prev, next) => store.actions.polarAxis.addRadiusAxis(next),
|
|
302
|
+
remove: (prev) => store.actions.polarAxis.removeRadiusAxis(prev),
|
|
303
|
+
},
|
|
304
|
+
);
|
|
305
|
+
}
|
|
314
306
|
|
|
315
307
|
const viewBox = useAppSelector(selectPolarViewBox);
|
|
316
308
|
const scale = useAppSelector((state) =>
|
package/src/polar/Radar.tsx
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
// cloneElement). PERMANENT-N/A: element-form `shape`. DEFERRED: object-form
|
|
22
22
|
// `shape`. zIndex relayering IS wired: the `.recharts-radar` Layer is wrapped in
|
|
23
23
|
// <ZIndexLayer> (default DefaultZIndexes.area = 100), matching recharts.
|
|
24
|
-
import {
|
|
24
|
+
import { createMemo, merge, Show } from "solid-js";
|
|
25
25
|
import type { JSX } from "@solidjs/web";
|
|
26
26
|
import { useAppSelector, useAppStore } from "../state/hooks";
|
|
27
27
|
import { useIsPanorama } from "../context/PanoramaContext";
|
|
@@ -74,7 +74,7 @@ import { SetTooltipEntrySettings } from "../state/SetTooltipEntrySettings";
|
|
|
74
74
|
import { SetLegendPayload } from "../state/SetLegendPayload";
|
|
75
75
|
import { LegendPayload } from "../component/DefaultLegendContent";
|
|
76
76
|
import { TooltipPayloadConfiguration } from "../state/tooltipSlice";
|
|
77
|
-
import {
|
|
77
|
+
import { registerInStore } from "../state/registerInStore";
|
|
78
78
|
|
|
79
79
|
/** recharts: stroke (if not "none") wins as the legend/tooltip color, else fill. */
|
|
80
80
|
const getLegendItemColor = (
|
|
@@ -295,38 +295,26 @@ export function Radar<DataPointType = Record<string, unknown>, DataValueType = u
|
|
|
295
295
|
const isPanorama = useIsPanorama();
|
|
296
296
|
const id = useUniqueId("recharts-radar", props.id);
|
|
297
297
|
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
store.actions.graphicalItems.replacePolarGraphicalItem({ prev, next: settings });
|
|
319
|
-
}
|
|
320
|
-
prev = settings;
|
|
321
|
-
},
|
|
322
|
-
);
|
|
323
|
-
|
|
324
|
-
unregisterOnCleanup(() => {
|
|
325
|
-
if (prev && store != null) {
|
|
326
|
-
store.actions.graphicalItems.removePolarGraphicalItem(prev);
|
|
327
|
-
prev = null;
|
|
328
|
-
}
|
|
329
|
-
});
|
|
298
|
+
if (store != null) {
|
|
299
|
+
registerInStore<RadarSettings>(
|
|
300
|
+
() => ({
|
|
301
|
+
id,
|
|
302
|
+
type: "radar",
|
|
303
|
+
// Radar has no own data prop — it always reads the chart data.
|
|
304
|
+
data: undefined,
|
|
305
|
+
dataKey: merged.dataKey,
|
|
306
|
+
hide: merged.hide,
|
|
307
|
+
angleAxisId: merged.angleAxisId,
|
|
308
|
+
radiusAxisId: merged.radiusAxisId,
|
|
309
|
+
}),
|
|
310
|
+
{
|
|
311
|
+
add: (next) => store.actions.graphicalItems.addPolarGraphicalItem(next),
|
|
312
|
+
replace: (prev, next) =>
|
|
313
|
+
store.actions.graphicalItems.replacePolarGraphicalItem({ prev, next }),
|
|
314
|
+
remove: (prev) => store.actions.graphicalItems.removePolarGraphicalItem(prev),
|
|
315
|
+
},
|
|
316
|
+
);
|
|
317
|
+
}
|
|
330
318
|
|
|
331
319
|
const radar = useAppSelector((state) =>
|
|
332
320
|
selectRadarPoints(state, merged.radiusAxisId, merged.angleAxisId, isPanorama, id),
|