3D Waterfall chart
Posted: Thu Dec 04, 2008 6:58 am
I want to draw 3D Waterfall chart. In case of using float type in data x, some data is omitted. Why is this happen?
I use the code as bellow.
teechart version:3.5.3187.15584
I use the code as bellow.
Code: Select all
private void Form1_Load(object sender, EventArgs e)
{
Steema.TeeChart.Styles.Waterfall waterfall1 = new Waterfall(tChart1.Chart);
for (float i = 0; i < 20; i++)
{
waterfall1.Add(i * 1.25, i * 1.25, 1);
}
}