* Gets or sets the handler that fires when a row tick is clicked in the y axis. * By default, if any cells in the row are unselected, the whole row will be selected, * otherwise the whole row will be unselected. * @param {Function} [handler] * @returns {Function|HeatMap}
(handler)
| 368 | * @returns {Function|HeatMap} |
| 369 | */ |
| 370 | yAxisOnClick (handler) { |
| 371 | if (!arguments.length) { |
| 372 | return this._yAxisOnClick; |
| 373 | } |
| 374 | this._yAxisOnClick = handler; |
| 375 | return this; |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * Gets or sets the X border radius. Set to 0 to get full rectangles. |