public Double Increment {get; set;}
Remarks
Axis Increment is the minimum step between axis labels. It must be a positive number or DateTime value. TChart will use this value as the starting axis labels step. If there is not enough space for all labels, TChart will calculate a bigger one. You can use the DateTimeStep constant array for DateTime increments.
Example
[C#]
private void Form1_Load(object sender, System.EventArgs e) {
DateTime now = DateTime.Now;
Random rnd = new Random();
tChart1.Aspect.View3D = false;
bar1.Marks.Visible = false;
tChart1.Axes.Bottom.Labels.DateTimeFormat = "T";
tChart1.Axes.Bottom.Labels.Angle = 90;
for(int i = 0; i < 100; ++i){
bar1.Add(now,rnd.Next(100));
now = now.AddSeconds(1);
}
}
private void button1_Click(object sender, System.EventArgs e) {
tChart1.Axes.Bottom.Increment=Steema.TeeChart.Utils.DateTimeStep[(int)Steema.TeeChart.DateTimeSteps.ThirtySeconds];
}
See Also
Axis Class | Axis Members | Steema.TeeChart Namespace