This question is locked. New answers and comments are not allowed.
I am able to bind the y axis values dynamically by below code:
<telerik:CategoricalDataPoint Category="Mon" Value="8" />
<telerik:CategoricalDataPoint Category="Tue" Value="3" />
But when i am trying to bind the Value dynamically to a property then its not displaying anything.
<telerik:CategoricalDataPoint Category="Mon" Value="{Binding Path=pdMondayEffort}"/>
pls help..