MCPcopy
hub / github.com/dc-js/dc.js / yAxisOnClick

Method yAxisOnClick

src/charts/heatmap.js:370–376  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 1

_doRedrawMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected