***
var option = {
		            title: {
		                text: ‘新增客户‘
		            },	
		            tooltip: {
				        trigger: ‘item‘,
				        formatter: "{b} : {c}"
				    },
		            xAxis: {
				        type: ‘category‘,
				        data: data.Months
				    },
				    yAxis: {
				        type: ‘value‘,				       
				    },
				    series: [{
				        data: data.ThisMonthIncrease,
				        type: ‘bar‘,
				        stack:‘bar‘,
				        label:{
				        	normal:{
				        		show:true,
				        		formatter:‘{c}‘
				        	}
				        	
				        }
				    },
				    {
				    	data: data.LastMonth,
				        type: ‘bar‘,
				        stack:‘bar‘,
				         label:{
				         	normal:{
					        	show:true,
					        	formatter:‘{c}‘
					        }
				        }
				    }
				    ]
		        };
		
***
原文:https://www.cnblogs.com/Ztriper/p/9870627.html