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.enter image description here

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/>'   } } 

fiddle link

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'                 ];             } 

http://www.highcharts.com/docs/extending-highcharts


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -