Articles in this section
Category / Section

How to set the custom labels with auto range for axis in WPF Chart (SfChart)?

1 min read

In Syncfusion WPF Chart (SfChart), you cannot set custom labels for an axis without explicitly specifying the range. However, this can be achieved by adding custom labels based on the position of visible labels in the ActualRangeChanged event.


XAML

 <!--Hooked ActualRangeChangedEvent-->
<chart:SfChart.SecondaryAxis>
      <chart:NumericalAxis ActualRangeChanged="NumericalAxis_ActualRangeChanged"/>
</chart:SfChart.SecondaryAxis>

C#

private void NumericalAxis_ActualRangeChanged(object sender, Syncfusion.UI.Xaml.Charts.ActualRangeChangedEventArgs e)
{
  var axis = sender as NumericalAxis;
  //Gets the collection of visible labels.
  var labels = axis.VisibleLabels;
  if (labels != null)
  {
    if (axis.CustomLabels.Count > 0)
      axis.CustomLabels.Clear();
 
    //Add custom labels based on the position of visible labels.
    for (int index = 0; index < labels.Count; index++)
    {
       var axisLabel = new ChartAxisLabel()
       {
           Position = labels[index].Position,//Set position where the custom label should be placed.
           LabelContent = "Item" + index //Set the content for the labels.
      };
      axis.CustomLabels.Add(axisLabel);
    }
  }
} 

Output:

The following screenshot illustrates the custom labels based on the range in y-axis.

WPF Chart displays Custom Labels with Auto Range

 

Conclusion

I hope you enjoyed learning how to set the custom labels with auto range for axis in WPF Chart.

You can refer to our WPF Chart feature tour page know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF Chart Examples to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied