Hello!
I have surface. I want to disable 3D to achieve high speed but I need to see my surface from above (to see x,z axes insteed of x,y). How can I set 2D view direction?
thank you.
Chart 2D mode.
Hi Tequilla
I suggest you use a ColorGrid Series. Or also with Surface Series, you can change the Elevation and Rotation of the Chart, to do a aspect 2D as below code:
I suggest you use a ColorGrid Series. Or also with Surface Series, you can change the Elevation and Rotation of the Chart, to do a aspect 2D as below code:
Code: Select all
private void Form1_Load(object sender, EventArgs e)
{
surface1.FillSampleValues();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
tChart1.Aspect.Orthogonal = !tChart1.Aspect.Orthogonal;
if (this.checkBox1.Checked)
{
tChart1.Aspect.Elevation = 270;
tChart1.Aspect.Rotation = 360;
}
else
{
tChart1.Aspect.Elevation = 345;
tChart1.Aspect.Rotation = 345;
}
}