echarts能实现这样的效果吗?大神求助echarts column配置项内容和展示

敢问各位大神,echarts能实现如图所示的东西么???

配置项如下
      $.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]
				]]
			}
		}]
	});
});
    
截图如下