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.
15 lines (13 loc) • 408 B
JavaScript
import { svg } from 'd3';
export default function drawLogAxis() {
//Draw custom y-axis given a log scale.
if (this.config.y.type === 'log') {
const logYAxis = svg
.axis()
.scale(this.y)
.orient('left')
.ticks(8, `,${this.config.y.format}`)
.tickSize(6, 0);
this.svg.select('g.y.axis').call(logYAxis);
}
}