Hi steema support,
We are waiting for reply. Please provide me any solution ASAP.
We want to draw curve like below image
It contains five layers as shown in different color.
Thanks
Planoresearch
3D grid
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: 3D grid
Hello,
Many apologies for the delay in replying to your question. You could use the Tower Series, e.g.
which can give you:
Many apologies for the delay in replying to your question. You could use the Tower Series, e.g.
Code: Select all
private void InitializeChart()
{
for (int i = 0; i < 5; i++)
{
Tower s = (Tower)tChart1.Series.Add(typeof(Tower));
s.UseColorRange = false;
s.UsePalette = false;
s.UseOrigin = true;
s.Origin = i;
s.Stacked = true;
}
tChart1[0].Color = Color.Red;
tChart1[1].Color = Color.Orange;
tChart1[2].Color = Color.LightGreen;
tChart1[3].Color = Color.Green;
tChart1[4].Color = Color.Blue;
for (int x = 0; x < 10; x++)
{
for (int z = 0; z < 10; z++)
{
for (int i = 0; i < tChart1.Series.Count; i++)
{
((Tower)tChart1[i]).Add(x, 1, z);
}
}
}
tChart1.Tools.Add(typeof(Rotate));
}
Best Regards,
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 |