2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
SfChart provides support to replace the internally generated axis labels with custom text. Text of the each axis label can be changed using the LabelCreated event of the axis. The following code illustrates how to show string labels in secondary axis. XAML <chart:SfChart.SecondaryAxis> <chart:NumericalAxis LabelCreated="Chart_SecondaryAxis_LabelCreated" /> </chart:SfChart.SecondaryAxis> C# NumericalAxis secondary = new NumericalAxis (); chart.SecondaryAxis = secondary; chart.SecondaryAxis.LabelCreated += Chart_SecondaryAxis_LabelCreated; void Chart_SecondaryAxis_LabelCreated(object sender, ChartAxisLabelEventArgs e) { double label = Convert.ToDouble(e.LabelContent); if (label < 25) e.LabelContent = "Bad"; else if (label >= 25 && label < 40) e.LabelContent = "Not Ok"; else if (label >= 40 && label < 60) e.LabelContent = "Ok"; else e.LabelContent = "Good"; } Output:
|
2X faster development
The ultimate Xamarin UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.