我对 Highcharts 的标题感到困惑

I was trouble with tittle of the Highcharts

http://jsfiddle.net/Kondaldurgam/akb4Lj61/

我想把标题的名字放在盒子里,目前我没有约会所以,我想把标题的名字放在盒子里。

Highcharts.chart('container', {

chart: {
    type: 'bubble',
    plotBorderWidth: 1,
    zoomType: 'xy'
},

title: {
    text: 'No Date Available'
},



});

如果 highcharts 没有数据,你可以使用这个插件 no-data-to-display.js

Highcharts.chart('container', {

    chart: {
        type: 'bubble',
        plotBorderWidth: 1,
        zoomType: 'xy'
    },

    title: {
        text: 'No Date Availavle'
    },
});
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/no-data-to-display.js"></script>
<div id="container" style="min-width: 310px; max-width: 600px; height: 400px; margin: 0 auto;"></div>