Posted: Thu Nov 27, 2003 12:48 pm
Hi Matt,
using the following code works fine here :
Could you test if it works for you ?
Josep Lluis Jorge
http://support.steema.com
using the following code works fine here :
Code: Select all
private void Form1_Load(object sender, System.EventArgs e)
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(new Steema.TeeChart.Styles.ColorGrid());
tChart1.Series.Add(new Steema.TeeChart.Styles.Line());
tChart1[0].FillSampleValues(10);
tChart1[1].Add (1,3,"");
tChart1[1].Add (2,1,"");
tChart1[1].Add (3,5,"");
tChart1[1].Add (4,2,"");
tChart1[0].VertAxis = Steema.TeeChart.Styles.VerticalAxis.Right;
}
Josep Lluis Jorge
http://support.steema.com