Delphi-我如何使用TChart与IntraWeb



我正在将Delphi XE8IntraWeb XIV v14.0.49一起使用,我创建了一个TIWForm,并在其上下垂了TChart组件。

在设计时显示TChart,我可以设置它。

但在运行时,网页上没有TChart

我应该配置什么设置来使用它吗?

似乎必须使用TChartTIWImage才能在网页中显示它。

我在IntraWeb演示中发现了以下方法

// this method copies a TChart to an TIWImage
procedure CopyChartToImage(const aChart: TChart; const aImage: TIWImage);
var
  xMetaFile: TMetafile;
  xBitmap: TBitmap;
  xRect: TRect;
begin
  xBitmap := aImage.Picture.Bitmap;
  xBitmap.Width := aChart.Width;
  xBitmap.Height := aChart.Height;
  aImage.Width := aChart.Width;
  aImage.Height := aChart.Height;
  xRect := Rect(0, 0, aChart.Width, aChart.Height);
  aChart.BufferedDisplay := False;
  xMetaFile := aChart.TeeCreateMetafile(False, xRect);
  try
    xBitmap.Canvas.Draw(0, 0, xMetaFile);
  finally
    FreeAndNil(xMetaFile);
  end;
end;

有关更多信息,

相关内容

  • 没有找到相关文章

最新更新