我想要显示没有数据可用于高图中的背面网格线

时间:2017-02-23 09:53:54

标签: javascript highcharts highstock

我没有数据,所以我显示没有数据可用,我希望背面有网格线可以显示

   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: [ ]

});

jsfiddle-link

1 个答案:

答案 0 :(得分:0)

 function(chart) { // on complete

chart.renderer.text('No Data Available', 200, 195)
  .attr({
    zIndex: 99
  })
  .css({
    color: '#4572A7',
    fontSize: '16px'
  })
  .add();

});