I’ve implemented HIChartView in android using javascript where i’m plotted ting my dynamic data into graph form now i want to handle the accessibility for graph and for all the plotted view for which screen reader or Talkback should announce the view and its description.
got some handy solution for this link
https://www.highcharts.com/docs/accessibility/accessibility-module but it did not work.
HIAccessibility hiAccessibility = new HIAccessibility();
hiAccessibility.setEnabled(true);
options.setAccessibility(hiAccessibility);
By setting new HIAccessibility().setEnabled(true) within the chart options, you can enable the accessibility module for the Highcharts chart in your Android application.
Please note that Highcharts for Android provides a Java API for chart configuration and interaction, so you do not need to directly include JavaScript tags in your Android code.
Tried to apply this line which i got from https://www.highcharts.com/chat/gpt/
but screen reader in reading and focusing the description and its plotted view.
Manoj Gandla Sureshbabu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.