I need to make the ultrachart section508 complaint. I have set the the properties to:
this.UltraChart1.Section508Compliant = true;
this.UltraChart1.Section508.ChartImage.AltFormatString = "something";
this.UltraChart.TabIndex = 42;
The issue is that while using the tab key, it actually never goes inside my chart to display any alt text. I have a div tag:
<
div id="BulletDiv" style="text-align;" Tabindex ="41" Accesskey="C">
It does select this box, but ultrachart is never selected and skips to the next panel.
igchart:UltraChart ID="UltraChart" runat="server"
EmptyChartText="Data Not Available. Please call UltraChart.Data.DataBind() after setting valid Data.DataSource" TabIndex = "42"
Version="9.2" >
Hello shaider1964,
If you are talking about win forms UltraChart, then mentioned behavior ("Never goes inside my chart") is expected and by design. At that moment we have nut such functionality. if you want to use section 508, maybe you could try to set the proerties:
- ultraChart1.AccessibilityObject
- ultraChart1.AccessibleDefaultActionDescription
- ultraChart1.AccessibleDescription
and so on. Let me know if you have any questions.
Regadrs
I think some activation property needs to be set for it to allows you to set focus and respond on keys.