mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-30 05:08:48 +00:00
fixed bug
This commit is contained in:
@@ -334,9 +334,9 @@ namespace XCharts
|
|||||||
{
|
{
|
||||||
if (height <= 0)
|
if (height <= 0)
|
||||||
{
|
{
|
||||||
var hig = gridBottom - bottom - 30;
|
height = gridBottom - bottom - 30;
|
||||||
if (hig < 10) hig = 10;
|
if (height < 10) height = 10;
|
||||||
return hig;
|
return height;
|
||||||
}
|
}
|
||||||
else return height;
|
else return height;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user