anychart.onDocumentReady(function () {
var chart = anychart.line([
{x: 'January', value: 1},
{x: 'February', value: 2},
{x: 'March', value: 1.3},
{x: 'April', value: 2.9},
chart.contextMenu({enabled: false});
chart.title('Set context menu parameter as an object. Context menu is disabled using object in this sample');
chart.container('container');