Skip to content

Commit

Permalink
#7228 fix crash when plot points fill property is set to false (#7251)
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek authored and scottdraves committed Apr 26, 2018
1 parent 7ae73b7 commit a781bec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/notebook/src/plot/plotUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ define([
return yAxisR && yAxisR.label === data.yAxis;
},
createColor : function(hexstr, opacity) {
if (hexstr === "none") {
return "none";
}
if (hexstr == null) {
hexstr = "#000000";
}
Expand Down

0 comments on commit a781bec

Please sign in to comment.