(stage: VegaDeckGl.types.Stage)
| 545 | } |
| 546 | |
| 547 | private overrideAxisLabels(stage: VegaDeckGl.types.Stage) { |
| 548 | // if (this._specColumns.x && this._specColumns.x.type === 'date') { |
| 549 | // stage.axes.x.forEach(axis => makeDateRange( |
| 550 | // axis.tickText, |
| 551 | // this.getColumnStats(this._specColumns.x) |
| 552 | // )); |
| 553 | // } |
| 554 | // if (this._specColumns.y && this._specColumns.y.type === 'date') { |
| 555 | // stage.axes.y.forEach(axis => makeDateRange( |
| 556 | // axis.tickText, |
| 557 | // this.getColumnStats(this._specColumns.y) |
| 558 | // )); |
| 559 | // } |
| 560 | } |
| 561 | |
| 562 | private preStage(stage: VegaDeckGl.types.Stage, deckProps: VegaDeckGl.DeckProps) { |
| 563 | const onClick: AxisSelectionHandler = (e, search: SearchExpressionGroup) => { |
no outgoing calls
no test coverage detected