I'm using RadChart and have three series defined each with an XCategory defined in ItemMappings
<telerik:ItemMapping FieldName="CategoryX" DataPointMember="XCategory" />
FieldName CategoryX is a partial class property which allows the X axis to have the data I want. I could probably use FormatExpressions to accomplish similar. I need more than just a TextBlock...
and each series is defined with 1 y value (OpenedPercentage, ClickedPercentage, DeliveredPercentage)
<telerik:ItemMapping FieldName="OpenedPercentage" DataPointMember="YValue" />
My attempts to replace the style of the axis label has not worked.
How can i provide a custom data template (a lot of controls) to the axis label that can bind to all the dataitem properties?
I am using 2012 Q2. Thanks ahead of time!