Hi,I have to set alternate text to the chart image rendered by the ultraChart control according to 508 guidelines.I checked the online support and tried setting these 2 attributes:Section508Compliant="true" Section508-ChartImage-AltTextFormatString="Pie Chart - What type of services did I receive".
However, even after setting Section508Compliant property to true, in the browser (ie 8 and firefox), if i right click on the ultrachart image, i still see the alternate text as "Missing".Can you please tell me how to make the charts 508 compliant? How can I set their alternate text?Thanks,Manisha
I’m trying:
this.UltraChart1.DataSource = DemoTable.Table();
this.UltraChart1.DataBind();
this.UltraChart1.Section508Compliant = true;
this.UltraChart1.Section508.ChartImage.AltFormatString = "Pie Chart - What type of services did I receive";
this.UltraChart1.DeploymentScenario.ImageURL = "Wrong url";
And it displays the alt text.
Thanks a lot.. it works.