Welcome to the Highcharts Core JS (highcharts) Options Reference

These pages outline the chart configuration options, and the methods and properties of Highcharts objects.

Feel free to search this API through the search bar or the navigation tree in the sidebar.

plotOptions.treemap.breadcrumbs.events.click

Fires when clicking on a breadcrumb button. Two arguments are passed to the function. First is the click event. Second is the breadcrumb options for the clicked button.

click: function (e, breadcrumb) {
  console.log(breadcrumb.level);
}

Return false to stop default buttons click action.