This question is locked. New answers and comments are not allowed.
Hello Support,
I am using the RadCartesianChart with categorial axis as the horizontal axis and linear axis as the vertical axis.
I am displaying all my data in percent, so my maximum is 100 and my values are calculated percent values of the actual values.
This works fine.
Now i want to display the ACTUAL value with the Label (over each bar) while my BarSeries is calculated by the percent value.
My collection i would like to bind is looking like this:
And BarData is:
I am using the RadCartesianChart with categorial axis as the horizontal axis and linear axis as the vertical axis.
I am displaying all my data in percent, so my maximum is 100 and my values are calculated percent values of the actual values.
This works fine.
Now i want to display the ACTUAL value with the Label (over each bar) while my BarSeries is calculated by the percent value.
My collection i would like to bind is looking like this:
List<BarData> myChartData;And BarData is:
class BarData { public int actualValue { get; set; } public int percentValue { get; set; }}