Nevron Forum

How to Fix Axis Between 0-100 For RadarChart

https://www.nevron.com/Forum/Topic8130.aspx

By mustafa tausi - Monday, September 9, 2013

How to Fix Axis Between 0-100 For RadarChart
By mustafa tausi - Tuesday, September 10, 2013

I am Using of under Code For BarChart :

chart.Axis(StandardAxis.PrimaryY).View = New NRangeAxisView(New NRange1DD(0, 100))
chart.Axis(StandardAxis.SecondaryY).View = New NRangeAxisView(New NRange1DD(0, 100))


How to Use For RadarChart?
By Nevron Support - Wednesday, September 18, 2013

Hello Mustafa,

In general for a Radar chart you have to create the radial axes yourself and add them to the chart. You have access to the NAxis instances, because you create them. So the code for a single axis should be something like:


   NRadarAxis axis = new NRadarAxis();
   axis.Visible = true;
   axis.View = new NRangeAxisView(new NRange1DD(0, 100), true, true);

   radarChart.Axes.Add(axis);


You have to repeat that for each radial axis that you want to display.
By mustafa tausi - Wednesday, September 18, 2013

My problem solved.
Thanks.