Hi Malcolm,
You can use custom code to turn off the first label on the radar axes. The following code snippet shows how to do this:
using System;
using System.Drawing;
using Nevron.GraphicsCore;
using Nevron.Chart;
using Nevron.ReportingServices;
namespace MyNamespace
{
/// <summary>
/// Sample class
/// </summary>
public class MyClass
{
/// <summary>
/// Main entry point
/// </summary>
/// <param name="context"></param>
public static void RSMain(NRSChartCodeContext context)
{
NRadarChart chart = (NRadarChart)context.Document.Charts[0];
for (int i = 0; i < chart.Axes.Count; i++)
{
NRadarAxis axis = (NRadarAxis)chart.Axes[i];
NStandardScaleConfigurator scale = axis.ScaleConfigurator as NStandardScaleConfigurator;
if (scale != null)
{
scale.DisplayFirstLabel = false;
}
}
}
}
}
Hope this helps - let us know if you meet any problems...
Best Regards,
Nevron Support Team