Highcharts 设置坐标轴文字样式

Highcharts 设置坐标轴文字样式_第1张图片

Highcharts 设置坐标轴文字样式_第2张图片

http://www.hcharts.cn/api/index.php#yAxis.labels.style

yAxis: {
	            title: {
	                text: ''
	            },
	            min:0,	            
	            gridLineWidth:'0px', 
	            plotLines: [{
	                value: 0,
	                width: 1,
	                color: '#fff'
	            }],
	            labels: {
	            	formatter: function () {
                    	return this.value
                	},
	                style: {
						color: '#fff',
						fontSize:'16px',
						fontFamily:'微软雅黑'
					}
	            },	           
	            lineWidth: 1
	        },


你可能感兴趣的:(Web,Front-end,Dev,JS/jQuery)