Gets or set the collection of point indices for the axis.

Namespace:  C1.Silverlight.Chart
Assembly:  C1.Silverlight.Chart (in C1.Silverlight.Chart.dll)

Syntax

C#
public IList<int> RadarPointIndices { get; set; }
Visual Basic
Public Property RadarPointIndices As IList(Of Integer)
	Get
	Set

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} });

See Also