设置系列角度标记不起作用

时间:2015-07-03 09:12:15

标签: activex teechart

我在这个函数Series(0)之前使用的是Teechart2012.ocx .GetMarks()。SetAngle(90); 工作正常,但使用TeeChart2014.ocx此功能已停止工作,我无法将标签旋转到90度。

如果有解决方法或功能已更改,请与我们联系。

由于 阿克沙伊

1 个答案:

答案 0 :(得分:0)

您能否尝试使用最新的 TeeChart2015.ocx ,构建2015.0.0.2?下面的代码在VC ++和VB6中都可以正常工作。

Visual C ++:

m_ctrlChart.Series(0).GetMarks().SetAngle(90);

Visual Basic 6:

TChart1.AddSeries scBar
TChart1.Series(0).FillSampleValues
TChart1.Series(0).Marks.Angle = 90