liffey.morgan 0 Posted April 25, 2007 Report Share Posted April 25, 2007 I am using Chart FX version 6.2.1342.0 in Visual Studio 2005. I am trying to localize the axis names, but there is no Culture or Language/Localizable option in the Chart Control. Do I need to set something first to get access to this property? Quote Link to post Share on other sites
Frank 0 Posted April 25, 2007 Report Share Posted April 25, 2007 There is a Culture property both in the Chart class and in ValueFormat. For example: chart1.Culture = new System.Globalization.CultureInfo("en-us"); chart1.AxisY.LabelsFormat.Culture = new System.Globalization.CultureInfo("en-us"); Quote Link to post Share on other sites
liffey.morgan 0 Posted April 26, 2007 Author Report Share Posted April 26, 2007 Thanks Frank. However I still have a problem because though I can see the Culture properties when I edit code manually, I can't see the Culture properties through the IDE interface. I am unable to set the properties manually through code, since all the code is in Designer classes and is automatically generated. Could this be related to the version that I'm running on (version 6.2)? Quote Link to post Share on other sites
Frank 0 Posted April 26, 2007 Report Share Posted April 26, 2007 The Culture property is not avilable at design time. Quote Link to post Share on other sites
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.