Hi,
I'm using a XamChart in my application to show a little diagram, this chart isn't interactive (no legend, no changes, no rotate), is a simple pie chart 2D.
When navigate throw controls with TAB key, the chart capture de focus 4 times (i must hit TAB key 4 times to select next control). I changed "focusable" property for the chart and now "only" requiered 3 TABs to select next control.
How can I do a "non ficusable" chart?
Attach a little sample.
Thanks in advanced
if you want to make tab skip over the chart then execute this code, or change the default styles of the chart appropriately:
chart.IsTabStop = false; chart.Scene.IsTabStop = false; chart.Scene.GridArea.IsTabStop = false; chart.Legend.IsTabStop = false;
Hope this helps!
-Graham