user1018 0 Report post Posted April 2, 2014 We are having problems with setting the RightToLeft property on ChartFx charts. For Arabic and other bi-directional languages all Windows controls have to be mirrored (flipped horizontally), including charts. All other controls provide ability for that through the RightToLeft property. But if we set RightToLeft property on ChartFx chart object nothing happens. Is there anything else we need to do to in order to make ChartFx charts look correct on these platforms? Quote Share this post Link to post Share on other sites
user1018 0 Report post Posted April 2, 2014 Please see attachment what I am looking for. Quote Share this post Link to post Share on other sites
ExequielA 1 Report post Posted April 2, 2014 Hello, In order to achieve the behavior you are looking for, please refer to the code below: [C#] chart1.AxisX.Inverted = true; Please note that the RightToLeft (RTL) property is a .NET feature which indicates whether control's elements are aligned to support localization using right-to-left fonts. It is not a Chart FX feature. I hope this helps. Quote Share this post Link to post Share on other sites
user1018 0 Report post Posted April 2, 2014 Thanks! it works! Quote Share this post Link to post Share on other sites