Skip to content

Commit

Permalink
Fixed JS error with disabled point markers.
Browse files Browse the repository at this point in the history
  • Loading branch information
highslide-software committed Nov 17, 2010
1 parent 0e0227d commit f4a6cde
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/highcharts.src.js
Expand Up @@ -6300,8 +6300,10 @@ function Chart (options, callback) {


}
legendSymbol.xOff = symbolX;
legendSymbol.yOff = symbolY;
if (legendSymbol) {
legendSymbol.xOff = symbolX;
legendSymbol.yOff = symbolY;
}

item.legendSymbol = legendSymbol;

Expand Down

0 comments on commit f4a6cde

Please sign in to comment.