safety-results-over-time
Version:
Chart showing population averages for lab measures, vital signs and other related measures during the course of a clinical trial.
11 lines (10 loc) • 385 B
JavaScript
export default function updateYaxisResetButton() {
//Update tooltip of y-axis domain reset button.
if (this.currentMeasure !== this.previousMeasure)
this.controls.wrap
.selectAll('.y-axis')
.property(
'title',
`Initial Limits: [${this.config.y.domain[0]} - ${this.config.y.domain[1]}]`
);
}