Hi Joel,
You have two options:
1. Use custom labels (All Examples\Axes\General\Axis Labels).
2. Use a custom value formatter:
public class CustomValueFormatter : NValueFormatter
{
public override string FormatValue(double value)
{
return (value / 2.0).ToString();
}
public override string FormatValue(object value)
{
return FormatValue((double)value);
}
}
NOrdinalScaleConfigurator ordinalScale = chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator as NOrdinalScaleConfigurator;
ordinalScale.LabelValueFormatter = new CustomValueFormatter();
Best Regards,
Nevron Support Team