ComponentOne Chart for WPF and Silverlight
RadarPointIndices Property
Example 


C1.WPF.C1Chart Namespace > Axis Class : RadarPointIndices Property
Gets or set the collection of point indices for the axis.
Syntax
'Declaration
 
Public Property RadarPointIndices As System.Collections.Generic.IList(Of Integer)
'Usage
 
Dim instance As Axis
Dim value As System.Collections.Generic.IList(Of Integer)
 
instance.RadarPointIndices = value
 
value = instance.RadarPointIndices
public System.Collections.Generic.IList<int> RadarPointIndices {get; set;}
Remarks
This property allows to use different axes for data points.
Example
Add auxiliary axis for second(index=1) data point.
chart.View.Axes.Add( new Axis() { AxisType= AxisType.Y, RadarPointIndices=new int[] {1} });
See Also

Reference

Axis Class
Axis Members