javascript - Highcharts "stemWidth" not working with FF -
i needed create error bar style chart highcharts. issue is, want remove connecting verticle line(stem) error points (whiskers).
following code used in errorbar section.
stemwidth: -1, whiskerlength: 150
following modified example highcharts examples accomplish requirement.
http://jsfiddle.net/ry8qw/2/
this working fine chrome. not working firefox (version 20.0.1). i'm running latest available ff version.
are there workarounds issue ?
thank you
indeed looks issue, i've reported our developers here:https://github.com/highslide-software/highcharts.com/issues/1833
but can use small workaround, iterate in each errorbar , change strike width svg attribute.
$.each(chart.series[1].data,function(i,data){ data.stem.attr({ "stroke-width":0 }) });
Comments
Post a Comment