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.

http://jsfiddle.net/ry8qw/6/

$.each(chart.series[1].data,function(i,data){         data.stem.attr({         "stroke-width":0         })     }); 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -