如何修改 teechart 系列值?
How do i modify a teechart series value?
我用一个甘特条创建了一个简单的甘特图:
AnsiString date1, date2;
date1 = "25/04/1990";
date2 = "15/05/1990";
Series1 = new TGanttSeries(this);
Series1->ParentChart= Chart1;
Series1->AddGantt(StrToDate(date1), StrToDate(date2), StrToFloat("12,0"), "Main Task");
现在我需要更改甘特图值。我该怎么做?例如,我想将 date2
改为 15/05/1990
,而不是 25/05/1990
?这非常令人困惑。谁能帮帮我?
在teechart.net建议可以更改值。
You should set Modified to True after changing values in the Value
array directly by code.
Example:
Series1.YValues.Value[12] := 123.45;
Series1.YValues.Modified := True;
我用一个甘特条创建了一个简单的甘特图:
AnsiString date1, date2;
date1 = "25/04/1990";
date2 = "15/05/1990";
Series1 = new TGanttSeries(this);
Series1->ParentChart= Chart1;
Series1->AddGantt(StrToDate(date1), StrToDate(date2), StrToFloat("12,0"), "Main Task");
现在我需要更改甘特图值。我该怎么做?例如,我想将 date2
改为 15/05/1990
,而不是 25/05/1990
?这非常令人困惑。谁能帮帮我?
在teechart.net建议可以更改值。
You should set Modified to True after changing values in the Value array directly by code.
Example:
Series1.YValues.Value[12] := 123.45;
Series1.YValues.Modified := True;