javascript - Unable to customize the box to short single line in 'boxplot' type Highcharts -
i able narrow down box
single line in boxplot
type highcharts. however, need make single line shorter lines @ end below image.
code series
is:
series: [{ name: 'observations', data: [ [760, 848, 848, 848, 965], [733, 939, 939, 939, 1080], [714, 817, 817, 817, 918], [724, 806, 806, 806, 950], [834, 864, 864, 864, 910] ], tooltip: { headerformat: '<em>experiment no {point.key}</em><br/>' } }
am missing setting? appreciated.
unfortunately not possible, can wrap drawpoints function of boxplot, , develop part of code:
if (doquartiles) { crispcorr = (pointattr['stroke-width'] % 2) / 2; crispx = mathfloor(crispx) + crispcorr; q1plot = mathfloor(q1plot) + crispcorr; q3plot = mathfloor(q3plot) + crispcorr; left += crispcorr; right += crispcorr; boxpath = [ 'm', left, q3plot, 'l', left, q1plot, 'l', right, q1plot, 'l', right, q3plot, 'l', left, q3plot, 'z' ]; }
Comments
Post a Comment