【发布时间】:2017-02-09 05:45:40
【问题描述】:
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JS
Highcharts.chart('container', {
title: {
text: 'X axis labels are disabled'
},
xAxis: {
labels: {
enabled: false
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, [enter link description here][1]194.1, 95.6, 54.4]
}]
});
http://jsfiddle.net/Kondaldurgam/jfg8w3f9/
在 x 轴我想禁用系列名称和 y 轴禁用阀门名称
【问题讨论】:
标签: javascript json highcharts