Polar Point series are represented by the NPolarPointSeries type. An instance of this type must be added to the series collection of a Polar Chart (NPolarChart object).
C# |
Copy Code
|
---|---|
// clear the Charts collection and create a new polar chart NPolarChart chart = new NPolarChart(); nChartControl1.Charts.Clear(); nChartControl1.Charts.Add(chart); // add a polar vector series to the chart NPolarVectorSeries polarVector = new NPolarVectorSeries(); chart.Series.Add(polarVector); |
Visual Basic |
Copy Code
|
---|---|
' clear the Charts collection and create a new polar chart Dim chart As New NPolarChart() NChartControl1.Charts.Clear() NChartControl1.Charts.Add(chart) ' add a polar vector series to the chart Dim polarVector As New NPolarVectorSeries() chart.Series.Add(polarVector) |