highcharts y轴单位/刻度 自定义


            yAxis: {
                min: 0,
                title: {
                    text: '访问量'
                },
				labels : { 
                 formatter:function (){ 
                     return this.value/10000 + '万' ; 
                 } 
				} 
            },






你可能感兴趣的:(javascript)