<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.gauges.linear([
{value: 15},
{value: 20},
{value: 25},
{value: 30},
{value: 44}
]);
chart.addPointer(4, 3, 2, 1);
// Removes all pointers.
chart.removeAllPointers();
chart.title('Remove all pointer from a gauge');
chart.container('container');
chart.draw();
});