Highcharts exporting dropdown customization

by Vladymyr Shevchuk

JavaScript

exporting: {
      csv: {
        itemDelimiter: ';'
      },
      buttons: {
        contextButton: {
          menuItems: [
            {
              textKey: 'printChart',
              onclick () {
                console.error('onclick');
              }
            },

            {
              text: 'Export to PNG (small)',
              // textKey: 'downloadPNG',
              onclick () {
                console.error('foo was clicked');
              }
            }
          ]
        }
      }
    }