ECharts :lable显示所有数据、修改字体样式

时间:2024-10-30 11:46:27

 没事,多看看官网:

option={
	title:{
		text:'……'
	},
	tooltip:{
		trigger:'axis',		//lable显示所有数据
                textStyle:{
		    fontSize: '16',		//字体大小
		    fontWeight: 'bolder'		//字体加粗
		}
	},
	legend:{
		data:['a','b'],
                textStyle:{
       		    fontSize: '16',		//字体大小
		    fontWeight: 'bolder'		//字体加粗
		}
	},
	xAxis:{
		data:['1','2','3','4','5','6'],
		axisLabel:{
			interval:0,
			textStyle:{
				fontSize: '16',		//字体大小
				fontWeight: 'bolder'		//字体加粗
			}
		}
	},
	yAxis:{
		
	},
	series:[{
		name:'a',
		type:'bar',
		data:[5,1,6,3,1,2]
	},{
		name:'b',
		type:'bar',
		data:[5,1,6,3,1,2]
	}
	]		
}