如何设置标签的格式?

时间:2012-11-15 21:36:58

标签: c# graph axis-labels teechart

所以,我正在尝试绘制图形,我在Tchart中有3条快速线,看起来图形是正确的,但我需要设置一些轴标签,我得到的是这个, [我的图表,x标签为0 0 0 0 1 1 1 1] http://s8.postimage.org/t7tappekl/image.png

[我想要这样的东西]

http://s7.postimage.org/amltkb917/untitled.png 而我想得的是这样的,实际的x标签就是这些。 X标签是秒。 我已经尝试为系列和图表标签设置valueformat。它不起作用,

我该怎么做?而且我正在尝试缩放和向上滚动y轴以像图像一样设置焦点2. y图总是从0开始,但最初是有任何方法将焦点设置在起始点ie81

非常感谢你!

1 个答案:

答案 0 :(得分:1)

您可以使用所谓的Increment属性为底轴标签设置所需的增量,例如:

  tChart1.Axes.Bottom.Increment = 0.1;

要更改轴范围,您可以使用SetMinMax或最小和最大属性:

  tChart1.Axes.Left.SetMinMax(50, 100);

  tChart1.Axes.Left.AutomaticMinimum = false;
  tChart1.Axes.Left.Minimum = 50;
  tChart1.Axes.Left.AutomaticMaximum = false;
  tChart1.Axes.Left.Maximum = 100;

最后,您可以更改图表视图透视图,更改以下某些属性:

  tChart1.Aspect.View3D = true;
  tChart1.Aspect.Orthogonal = false;
  tChart1.Aspect.Chart3DPercent = 50;
  tChart1.Aspect.Elevation = 0;
  tChart1.Aspect.Rotation = 345;
  tChart1.Aspect.Perspective = 50;

BTW,您可以在教程4中找到有关轴设置的更多信息。教程可以在TeeChart的程序组中找到。