* Handle plotly_deselect events emitted by the Plotly.js library * @param data
(data: any)
| 1297 | * @param data |
| 1298 | */ |
| 1299 | handle_plotly_deselect(data: any) { |
| 1300 | data = { |
| 1301 | points: [], |
| 1302 | }; |
| 1303 | this._send_points_callback_message(data, "plotly_deselect"); |
| 1304 | } |
| 1305 | |
| 1306 | /** |
| 1307 | * Build and send a points callback message to the Python side |
no test coverage detected