Skip to content

Commit c8b4bdd

Browse files
Anush2303Anush
andauthored
fix(react-charts): fix minus sign in RTL mode and sankey chart resize issue (microsoft#35143)
Co-authored-by: Anush <[email protected]>
1 parent 2cdbbe9 commit c8b4bdd

File tree

23 files changed

+1461
-8
lines changed

23 files changed

+1461
-8
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "handled negative sign in RTL mode",
4+
"packageName": "@fluentui/react-charts",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}

packages/charts/react-charts/library/etc/react-charts.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ export interface ModifiedCartesianChartProps extends CartesianChartProps {
12171217
chartType: ChartTypes;
12181218
children(props: ChildProps): React_2.ReactNode;
12191219
createStringYAxis: (yAxisParams: IYAxisParams, dataPoints: string[], isRtl: boolean, barWidth: number | undefined, chartType?: ChartTypes) => ScaleBand<string>;
1220-
createYAxis: (yAxisParams: IYAxisParams, isRtl: boolean, axisData: IAxisData, isIntegralDataset: boolean, chartType: ChartTypes, useSecondaryYScale?: boolean, roundedTicks?: boolean, scaleType?: AxisScaleType) => ScaleLinear<number, number, never>;
1220+
createYAxis: (yAxisParams: IYAxisParams, isRtl: boolean, axisData: IAxisData, isIntegralDataset: boolean, chartType: ChartTypes, useSecondaryYScale?: boolean, roundedTicks?: boolean, scaleType?: AxisScaleType, _useRtl?: boolean) => ScaleLinear<number, number, never>;
12211221
culture?: string;
12221222
customizedCallout?: any;
12231223
datasetForXAxisDomain?: string[];

0 commit comments

Comments
 (0)