Skip to content

Commit 63124d4

Browse files
committed
fix: autoScaleMinMaxEnabled default to false as it induce wrong layout when using pan
1 parent 2e6841f commit 63124d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui-chart/charts/BarLineChartBase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export abstract class BarLineChartBase<U extends Entry, D extends IBarLineScatte
4040
/**
4141
* flag that indicates if auto scaling on the y axis is enabled
4242
*/
43-
autoScaleMinMaxEnabled: boolean = true;
43+
autoScaleMinMaxEnabled: boolean = false;
4444

4545
/**
4646
* flag that indicates if pinch-zoom is enabled. if true, both x and y axis

0 commit comments

Comments
 (0)