我正在使用Highcharts,我想關閉所有標籤。我製作了自己的圖形,它有自己的標題和數據軸。我如何使Highcharts提供的隱形?禁用HighCharts標籤
目前,我只需要擺脫y軸標記,但我不知道如何。
這是我到目前爲止有:
$('#container').highcharts({
chart: {
type: 'area',
backgroundColor: 'transparent'
},
title: {
text: ' '
},
credits: {
enabled: false
},
xAxis: {
categories: [' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
},
series: [{
name: 'Rich',
color: '#FF0000',
data: []
}, {
name: 'Poor',
data: []
}]
});
}
'{tooltip:{enabled:false}}'? –