How to display axis labels in a particular format of WPF Chart?
Description:
WPF Chart (SfChart) allows you to customize axis labels to a particular format like controlling the decimal digits, date-time format, etc. This section describes how to format the axis labels.
Solution:
For instance, when the axis label needs to display the time value and two decimal points, you can set the LabelFormat property in the corresponding axis in WPF Chart (SfChart).
XAML
<syncfusion:SfChart.PrimaryAxis> <syncfusion:DateTimeAxis LabelFormat="hh:mm tt" IntervalType="Hours" Interval="1" Header="Computer sales" /> </syncfusion:SfChart.PrimaryAxis> <syncfusion:SfChart.SecondaryAxis> <syncfusion:NumericalAxis Header="Quantity Sold" LabelFormat="##.00"/> </syncfusion:SfChart.SecondaryAxis>
C#
this.sampleChart.PrimaryAxis.LabelFormat = hh:mm tt "; this.sampleChart.SecondaryAxis.LabelFormat = "##.00";
Conclusion
I hope you enjoyed learning about how to display axis labels in a particular format of WPF Chart.
You can refer to our WPF Chart feature tour page to know about its other groundbreaking feature representations. You can also explore our WPF Chart documentation 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!