我想在 highcharts 中使用背面网格线显示 NO DATA AVAILABLE
I want show NO DATA AVAILABLE with backside grid lines in highcharts
我没有数据,所以我显示没有可用数据,我想要背面有网格线,这样可以显示
Highcharts.chart('container', {
chart: {
type: 'bubble',
plotBorderWidth: 0,
zoomType: 'xy'
},
title: {
text: 'Highcharts bubbles with radial gradient fill'
},
xAxis: {
gridLineWidth: 1
},
yAxis: {
startOnTick: false,
endOnTick: false
},
series: [ ]
});
function(chart) { // on complete
chart.renderer.text('No Data Available', 200, 195)
.attr({
zIndex: 99
})
.css({
color: '#4572A7',
fontSize: '16px'
})
.add();
});
我没有数据,所以我显示没有可用数据,我想要背面有网格线,这样可以显示
Highcharts.chart('container', {
chart: {
type: 'bubble',
plotBorderWidth: 0,
zoomType: 'xy'
},
title: {
text: 'Highcharts bubbles with radial gradient fill'
},
xAxis: {
gridLineWidth: 1
},
yAxis: {
startOnTick: false,
endOnTick: false
},
series: [ ]
});
function(chart) { // on complete
chart.renderer.text('No Data Available', 200, 195)
.attr({
zIndex: 99
})
.css({
color: '#4572A7',
fontSize: '16px'
})
.add();
});