fixed bug

This commit is contained in:
monitor1394
2019-10-09 19:20:03 +08:00
parent 5d0c05e743
commit f160e0daa6

View File

@@ -334,9 +334,9 @@ namespace XCharts
{
if (height <= 0)
{
var hig = gridBottom - bottom - 30;
if (hig < 10) hig = 10;
return hig;
height = gridBottom - bottom - 30;
if (height < 10) height = 10;
return height;
}
else return height;
}