@fluentui/react-charts 0.0.0-nightly-20251225-0406.1 → 0.0.0-nightly-20251229-0407.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 +13 -13
- package/lib/components/LineChart/LineChart.js +1 -5
- package/lib/components/LineChart/LineChart.js.map +1 -1
- package/lib/components/ScatterChart/ScatterChart.js +1 -5
- package/lib/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib/utilities/utilities.js +3 -3
- package/lib/utilities/utilities.js.map +1 -1
- package/lib-commonjs/components/LineChart/LineChart.js +1 -5
- package/lib-commonjs/components/LineChart/LineChart.js.map +1 -1
- package/lib-commonjs/components/ScatterChart/ScatterChart.js +1 -5
- package/lib-commonjs/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib-commonjs/utilities/utilities.js +3 -3
- package/lib-commonjs/utilities/utilities.js.map +1 -1
- package/package.json +12 -12
|
@@ -431,11 +431,7 @@ const LineChart = /*#__PURE__*/ _react.forwardRef(({ isCalloutForStack = true, .
|
|
|
431
431
|
useSecondaryYScale,
|
|
432
432
|
xScaleType: props.xScaleType,
|
|
433
433
|
yScaleType: props.yScaleType,
|
|
434
|
-
secondaryYScaleType: props.secondaryYScaleType
|
|
435
|
-
xMinValue: props.xMinValue,
|
|
436
|
-
xMaxValue: props.xMaxValue,
|
|
437
|
-
yMinValue: props.yMinValue,
|
|
438
|
-
yMaxValue: props.yMaxValue
|
|
434
|
+
secondaryYScaleType: props.secondaryYScaleType
|
|
439
435
|
}) : 0;
|
|
440
436
|
if (_points[i].data.length === 1) {
|
|
441
437
|
const { x: x1, y: y1, xAxisCalloutData, xAxisCalloutAccessibilityData } = _points[i].data[0];
|