user1018 Posted April 2, 2014 Report Share 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 Link to comment Share on other sites More sharing options...
user1018 Posted April 2, 2014 Author Report Share Posted April 2, 2014 Please see attachment what I am looking for. Quote Link to comment Share on other sites More sharing options...
ExequielA Posted April 2, 2014 Report Share 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 Link to comment Share on other sites More sharing options...
user1018 Posted April 2, 2014 Author Report Share Posted April 2, 2014 Thanks! it works! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.