Highchart Lang.noData无效

时间:2017-04-05 11:53:58

标签: highcharts

我在Highchart找了添加属性,以便在没有可用数据和I found this example时添加一些文本,但在我的应用程序中使用它时它不起作用。

我的代码:

    $('#container').highcharts({
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false
    },
    title: {
        text: 'No data in pie chart'
    },
    series: [{
        type: 'pie',
        name: 'Random data',
        data: []
    }],
    lang :{
        noData : "no data no data no data no data "
    }
});
  

我在jsfiddle中测试了这段代码并且效果很好。

     

我使用了高级图的v5.0.10

0 个答案:

没有答案