Hi I have a pie chart that has been created programatically.
I am trying to add localization here.
This is part of my SharePoint visual web part.
I have included the resource files for different languages.
follwoing is my code
totalallowedspace = getLocalizedValue("TotalSpaceAllotted", LCID);
i am getting the local value for the string from the resource file
PieChart.ChartTitle.Text = totalallowedspace+" "+ alloweddspace.ToString() + " " + "GB";
i am adding the string to the title with some value that is calculated from other methods.
This works perfectly for english but when i browse in French there is no Chart Visible.
It does not displays the chart.
How do i enable localization for the pie chart.
Please guide me through both ways from code behind and from UI side.
I have seen there are few resources for UI side but not for code behind.
Please Help
I am trying to add localization here.
This is part of my SharePoint visual web part.
I have included the resource files for different languages.
follwoing is my code
totalallowedspace = getLocalizedValue("TotalSpaceAllotted", LCID);
i am getting the local value for the string from the resource file
PieChart.ChartTitle.Text = totalallowedspace+" "+ alloweddspace.ToString() + " " + "GB";
i am adding the string to the title with some value that is calculated from other methods.
This works perfectly for english but when i browse in French there is no Chart Visible.
It does not displays the chart.
How do i enable localization for the pie chart.
Please guide me through both ways from code behind and from UI side.
I have seen there are few resources for UI side but not for code behind.
Please Help