Gets or set the collection of point indices for the axis.
Namespace:
C1.Phone.ChartAssembly: C1.Phone.Chart (in C1.Phone.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} }); |