anychart.onDocumentReady(function () {
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
var barPointer = chart.bar(2);
barPointer.legendItem({text: 'Blue pointer', iconType: 'circle'});
chart.width(600).height(400);
chart.title('Set pointer legend item');
chart.container('container');