or
Hi,
I’m binding CategotiesSource to my Categories collection and TimeMarkersSource to my TimeMarkers collection.
While categories are displaying perfectly right in the Edit Dialog, TimeMarkers drop down displays only Brushes’ colors I have defined; no text appears next to them.
What can be wrong?
thank you
<telerik:RadMenu x:Name="radMenu2" ClickToOpen="False" Grid.Column="0" FlowDirection="RightToLeft"> <telerik:RadMenuItem Name="testMenuItem" Header="Test"> <telerik:RadMenuItem Header="123.ABC"/> <telerik:RadMenuItem Header="123ABC"/> </telerik:RadMenuItem></telerik:RadMenu>
For some reason, setting a flow direction of "RightToLeft" will rearrange any text that contains certain special characters.
Is there a way to stop this reversal of the menuitem header text?
public class MyViewModel{ public List<ChartData> chartItem {get;set;}; public List<List<ChartData>> ChartData {get;set;};}public class ChartData{ public DateTime Xvalue{get;set;} public DateTime Yvalue{get;set;}}