Click title event

Is it possible to bind a click event to the plot title?

We don’t offer a official way to do this, but it should be possible using e.g

Plotly.d3.select('.g-title').on('click', function() {
  // ...
})
1 Like