remove([Boolean updateChart = true])

Removes title of the chart.


Parameters:
        updateChart: When true, updates the chart automatically after removing the title. Defaults to true.

Example:
        chart.title.remove();

Note:
  • Chart should be rendered before you can use this method.

var  chart =  new  CanvasJS.Chart("container",
{
    .
    .
    title: {
    .
    }
    .
    . 
});
chart.render();

chart.title.remove();
Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question