Search code examples
javascripthighchartsbubble-chart

I was trouble with tittle of the Highcharts


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

i want name of the tittle in inside the box presently i don't have date with me so, i want to put the name of the tittle in inside the box.

Highcharts.chart('container', {

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

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



});

Solution

  • in case of no data for highcharts you may use this plugin 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>