<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.gauges.circular([{value: 10}, {value: 20}]);
chart.needle(0);
chart.needle(1);
// Removes the second pointer by index.
chart.removePointer(1);
chart.title('Remove pointer by index');
chart.container('container');
chart.draw();
});