Gets or set the collection of point indices for the axis.
Namespace:
C1.Silverlight.ChartAssembly: C1.Silverlight.Chart (in C1.Silverlight.Chart.dll)
Syntax
Remarks
This property allows to use different axes for data points.
Examples
Add auxiliary axis for second(index=1) data point.
Copy CodeC#
chart.View.Axes.Add( new Axis() { AxisType= AxisType.Y, RadarPointIndices=new int[] {1} }); |