C++ 中的 Teechart 甘特图日期

Teechart Gantt date in C++

我是新手,正在使用 StringGrid 和 GanttChart 开发 C++ VCL 项目。我想要做的是在将新数据输入到 StringGrid 后自动 "update" 甘特图条。

我首先要做的是使用以下命令创建一个带有条形图的图表:

TGanttSeries *Series1;
 int i = 0;

Series1 = new TGanttSeries(this);
Series1->AddGantt(StrToDate(StringGridEd1->Cells[4][1]),StrToDate(StringGridEd1->Cells[5][1]), i,"Task"+IntToStr(i));
Series1->ParentChart = Chart1;

这非常适合创建图表,但我如何更新甘特图的条形图日期以便条形图自动调整自身大小?例如,如果用户输入 1 天,甘特条仅显示 1 天,当用户输入 5 天时,甘特条自动 "resize" 本身从 1 到 5 天。

是否有任何功能或属性可以为我做到这一点?

我刚刚在 Steema Software 官方论坛 (here) 回复了你。
我在这里复制答案:

如果我理解正确,您可以在 StringGrid1SetEditText 事件中更新您的系列 StartValues/EndValues。即:

TGanttSeries *Series1;

void __fastcall TForm1::FormCreate(TObject *Sender)
{
  StringGrid1->ColCount = 6;
  StringGrid1->RowCount = 2;
  StringGrid1->Cells[4][1] = "01/01/2016";
  StringGrid1->Cells[5][1] = "02/01/2016";
  StringGrid1->Options << goEditing;

  int i = 0;

  Series1 = new TGanttSeries(this);
  Series1->AddGantt(StrToDate(StringGrid1->Cells[4][1]),StrToDate(StringGrid1->Cells[5][1]), i,"Task"+IntToStr(i));
  Series1->ParentChart = Chart1;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::StringGrid1SetEditText(TObject *Sender, int ACol, int ARow,
          const UnicodeString Value)
{
  TDateTime tmp;

  if ((ACol==4) || (ACol==5)) {
    if (TryStrToDate(StringGrid1->Cells[ACol][ARow], tmp)) {
      if (ACol==4) {
        Series1->StartValues->Value[ARow-1] = tmp;
        Series1->StartValues->Modified = true;
      }
      else {
        Series1->EndValues->Value[ARow-1] = tmp;
        Series1->EndValues->Modified = true;
      }
    }
  }
}