$.getJSON('https://data.jianshukeji.com/jsonp?filename=json/aapl-v.json&callback=?', function (data) { // create the chart Highcharts.stockChart('chart-panel', { chart: { alignTicks: false }, rangeSelector: { selected: 5 }, title: { text: 'AAPL Stock Volume' }, series: [{ type: 'column', name: 'AAPL Stock Volume', data: data, dataGrouping: { units: [[ 'week', // unit name [1] // allowed multiples ], [ 'month', [1, 2, 3, 4, 6] ]] } }] }); });