<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.gauges.circular([{value: 7.5}]);
chart.axis();
chart.needle();
// Get chart as an invisible HTML table.
// You can use inspect element tool to see the table.
var a11yTable = chart.toA11yTable('Chart table');
// Do something with an HTML table.
chart.title('Get chart as an invisible HTML table');
chart.container('container');
chart.draw();
});