Code: Select all
tChart1.Series.Add( new Steema.TeeChart.Styles.Line() );
tChart1.Axes.Bottom.SetMinMax( new DateTime( 1, 1, 1, 1, 1, 1 ), new DateTime( 1, 1, 1, 1, 1, 5 ) );
Code: Select all
tChart1.Series.Add( new Steema.TeeChart.Styles.Line() );
tChart1.Axes.Bottom.SetMinMax( new DateTime( 1, 1, 1, 1, 1, 1 ), new DateTime( 1, 1, 1, 1, 1, 5 ) );
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(new Steema.TeeChart.Styles.Line());
tChart1.Series[0].XValues.DateTime = true;
tChart1.Axes.Bottom.Labels.DateTimeFormat = "HH:mm:ss";
tChart1.Axes.Bottom.SetMinMax(new DateTime(1, 1, 1, 1, 1, 1), new DateTime(1, 1, 1, 1, 1, 5));
}
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |