HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.gauges.circular([{value: 7.5}]);
3
chart.axis();
4
chart.needle();
5
6
// Get chart as an invisible HTML table.
7
// You can use inspect element tool to see the table.
8
var a11yTable = chart.toA11yTable('Chart table');
9
// Do something with an HTML table.
10
11
chart.title('Get chart as an invisible HTML table');
12
chart.container('container');
13
chart.draw();
14
});