anychart.onDocumentReady(function () {
var chart = anychart.line([
{x: 'January', value: 1},
{x: 'February', value: 2},
{x: 'March', value: 1.3},
chart.contextMenu(false);
var customContextMenu = anychart.ui.contextMenu();
customContextMenu.addClassName('custom-menu');
customContextMenu.itemsProvider(function () {
text: 'Custom Menu Item',
href: 'https://api.anychart.com'
customContextMenu.attach(chart);
customContextMenu.removeClassName('custom-menu');
chart.title('Remove CSS class name');
chart.container('container');