UNPKG

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 (14 loc) 496 B
export default function drawOuterCircle(subgroup) { subgroup.boxplot.container .append('circle') .attr({ class: 'boxplot mean', cx: subgroup.boxplot.x(0.5), cy: subgroup.boxplot.y(subgroup.results.mean), r: Math.min(subgroup.boxplot.x(subgroup.boxplot.boxPlotWidth / 3), 10) }) .style({ fill: subgroup.boxplot.boxInsideColor, stroke: subgroup.boxplot.boxColor }); }