Open
Description
Hi I'm using easeljs in order to develop a canvas chart library. So when I try to draw a bar with linear gradient stroke it is drawn only with last color in colors' array just like ordinary beginStroke() call.
I need to use ignoreScale = true parameter because in my project I need to handle zoom in/out events
and then change scale of parent container. Here is isolated code example.
P. S. I use createjs-collection build from npmjs: https://www.npmjs.com/package/createjs-collection
shapes.graphics.setStrokeStyle(1, 0, 0, 10, true)
.beginLinearGradientStroke(["black", "white"], [0, 1], 0, 0, 0, 150)
.drawRect(0, 0, 50, 150).endStroke();