Telerik UI for Xamarin Ninja image

The PointLabels is part of Telerik UI for Xamarin, a professional grade UI component library for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Chart for Xamarin.iOS: Point Labels Overview

TKChart supports point labels. Point labels are visual elements that are placed on the plot at the location of series data points showing the data point's value or other string by your choice. By default point labels are hidden. If you would like to show them, you should set TKChartPointLabelStyle's TextHidden property to false. You can also alter offset origin of the labels using the LabelOffset property.

barSeries.Style.PointLabelStyle.TextHidden = false;
barSeries.Style.PointLabelStyle.LabelOffset = new UIOffset (15, 0);

In this article