Articles in this section
Category / Section

How do I set 3D view and Indexed mode for the chart?

1 min read

 

We can enable the 3D perspective view by setting Series3D property as true.

By default, chart points have X and Y values, both of which are taken into account for plotting. In Indexed mode the X values are ignored.The X axis purely represents the position of the points and not their X value.

The Indexed mode is useful when representing data that has no real X axis value except position. By setting Indexed property as true we can enable the Indexed mode for the chart.

C#

//Setting Indexed Mode

this.chartControl1.Indexed = true;

// Setting 3D Mode

this.chartControl1.Series3D = true;

VB

'Setting Indexed Mode

Me.chartControl1.Indexed = True

'Setting 3D Mode

Me.chartControl1.Series3D = True

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied