mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
修复当Axis的minMaxType为Custom时max设置为100不生效的问题
This commit is contained in:
@@ -636,7 +636,7 @@ namespace XCharts
|
||||
private void UpdateAxisMinMaxValue(int axisIndex, Axis axis)
|
||||
{
|
||||
axis.minValue = 0;
|
||||
axis.maxValue = 100;
|
||||
axis.maxValue = 0;
|
||||
if (axis.IsCategory()) return;
|
||||
|
||||
int tempMinValue = 0;
|
||||
|
||||
Reference in New Issue
Block a user