@fluentui/react-charts 0.0.0-nightly-20250827-0407.1 → 0.0.0-nightly-20250828-0408.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/CHANGELOG.md +15 -15
- package/lib/components/DeclarativeChart/DeclarativeChart.js +1 -1
- package/lib/components/DeclarativeChart/DeclarativeChart.js.map +1 -1
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js +19 -10
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib/components/LineChart/LineChart.js +0 -9
- package/lib/components/LineChart/LineChart.js.map +1 -1
- package/lib/components/ScatterChart/ScatterChart.js +0 -9
- package/lib/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib/utilities/scatterpolar-utils.js +7 -18
- package/lib/utilities/scatterpolar-utils.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/DeclarativeChart.js +1 -1
- package/lib-commonjs/components/DeclarativeChart/DeclarativeChart.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js +19 -10
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib-commonjs/components/LineChart/LineChart.js +0 -9
- package/lib-commonjs/components/LineChart/LineChart.js.map +1 -1
- package/lib-commonjs/components/ScatterChart/ScatterChart.js +0 -9
- package/lib-commonjs/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib-commonjs/utilities/scatterpolar-utils.js +7 -18
- package/lib-commonjs/utilities/scatterpolar-utils.js.map +1 -1
- package/package.json +12 -12
|
@@ -771,16 +771,7 @@ const PATH_MULTIPLY_SIZE = 2.5;
|
|
|
771
771
|
}
|
|
772
772
|
if (_isScatterPolar) {
|
|
773
773
|
var _points_i;
|
|
774
|
-
// Render category labels for all series at once to avoid overlap
|
|
775
|
-
const allSeriesData = _points.map((series)=>({
|
|
776
|
-
data: series.data.filter((pt)=>typeof pt.x === 'number' && typeof pt.y === 'number').map((pt)=>({
|
|
777
|
-
x: pt.x,
|
|
778
|
-
y: pt.y,
|
|
779
|
-
text: pt.text
|
|
780
|
-
}))
|
|
781
|
-
}));
|
|
782
774
|
pointsForLine.push(...renderScatterPolarCategoryLabels({
|
|
783
|
-
allSeriesData,
|
|
784
775
|
xAxisScale: _xAxisScale,
|
|
785
776
|
yAxisScale: yScale,
|
|
786
777
|
className: classes.markerLabel || '',
|