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 Editing The Code

  Also See:    


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