设置系列标记的角度不起作用
Set Angle of Series marks not working
我在此函数 Series(0).GetMarks().SetAngle(90) 之前使用 Teechart2012.ocx;
工作正常,但使用 TeeChart2014.ocx 此功能已停止工作,我无法将标签旋转 90 度。
如果有解决方法或功能已更改,请告诉我。
谢谢
阿克谢
你能试试最新的 TeeChart2015.ocx,build 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
我在此函数 Series(0).GetMarks().SetAngle(90) 之前使用 Teechart2012.ocx; 工作正常,但使用 TeeChart2014.ocx 此功能已停止工作,我无法将标签旋转 90 度。
如果有解决方法或功能已更改,请告诉我。
谢谢 阿克谢
你能试试最新的 TeeChart2015.ocx,build 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