当前位置: 代码迷 >> VBA >> delphi 操作excel设置图表属性 在运行时报“不能设置类chart的HasTitle属性”错,该怎么解决
  详细解决方案

delphi 操作excel设置图表属性 在运行时报“不能设置类chart的HasTitle属性”错,该怎么解决

热度:819   发布时间:2013-02-26 00:00:00.0
delphi 操作excel设置图表属性 在运行时报“不能设置类chart的HasTitle属性”错
代码如下:sheet为工作薄对象
objct := Sheet.ChartObjects.Add(100, 100, 600, 400);
  chart := objct.Chart;

  chart.ChartType := $00000004;
  chart.HasTitle := true; //这儿报错。
  chart.ChartTitle.Characters.Text := '统计汇总';
  chart.Axes(1,1).HasTitle := False;
  chart.Axes(2,1).HasTitle := False;

弄了好久了,还没整明白怎么回事。大侠们救救啊!

------解决方案--------------------------------------------------------
所有错误信息都在这了?
  相关解决方案