Possible Duplicate:
teechart problem for series label
是否有任何方法可以打印标签。一月,二月,三月...在tchart的Y轴上
在
Borland C ++
最佳答案
我没有Borland C ++,但假设附带的TeeChart与ActiveX TeeChart相同,则需要执行以下操作:
chart.Axis.Left.Labels.Clear(); // Clear current labels
chart.Axis.Left.Labels.Add(1, "January"); // Repeat for other months