Is possible apply a Style for an item in the serie just when it is Selected?. I want to show the value as normal behavior display mode outsite, but show the percentage when is selected and display mode inside. In the override method LabelForDataPoint I'm able to detect when is selected but when I apply the style is applied for entire serie not just for the datapoint selected.
if
(series.Index == (nuint)selectedSeriesIndex ; dataIndex == (nuint)selectedDataPointIndex)<br>
{
series.Style.PointLabelStyle.LabelOffset =
new
UIOffset(0, -50);
return
new
TKChartPointLabel(dataPoint, series,
string
.Format(
"{0}%"
, percentage));
}
I add an image with desired behavior.
Regardsk