Fixes Issue #109 - Prototype.js breaks StackedAreaChart

It appears the specification of the sizeDomain as a single element
array causes d3.js to use the wrong interpolatin function internally.
master-patched
ciaranj 11 years ago
parent f74b4def45
commit b2ef5f2254

@ -25,7 +25,7 @@ nv.models.stackedArea = function() {
scatter
.size(2.2) // default size
.sizeDomain([2.2]) // all the same size by default
.sizeDomain([2.2,2.2]) // all the same size by default
;
/************************************

Loading…
Cancel
Save