mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-28 12:08:46 +00:00
修复Series->Data->Size重置为0后设置无效的问题
This commit is contained in:
@@ -353,7 +353,7 @@ namespace XCharts
|
|||||||
var xWid = dataWid - 4;
|
var xWid = dataWid - 4;
|
||||||
for (int i = 0; i < dimension; i++)
|
for (int i = 0; i < dimension; i++)
|
||||||
{
|
{
|
||||||
if (i >= data.arraySize - 1)
|
while (i >= data.arraySize - 1)
|
||||||
{
|
{
|
||||||
data.InsertArrayElementAtIndex(data.arraySize);
|
data.InsertArrayElementAtIndex(data.arraySize);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user