mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
add dashOffset property to shape
This commit is contained in:
parent
6c95612677
commit
8ae434036f
@ -600,6 +600,7 @@
|
||||
this._applyLineCap(shape);
|
||||
if (dash && shape.dashEnabled()) {
|
||||
this.setLineDash(dash);
|
||||
this.setAttr('lineDashOffset', shape.dashOffset());
|
||||
}
|
||||
|
||||
this.setAttr('lineWidth', shape.strokeWidth());
|
||||
|
15
src/Shape.js
15
src/Shape.js
@ -713,6 +713,21 @@
|
||||
* line.dash([10, 20, 0.001, 20]);
|
||||
*/
|
||||
|
||||
Konva.Factory.addGetterSetter(Konva.Shape, 'dashOffset', 0);
|
||||
|
||||
/**
|
||||
* get/set dash offset for stroke.
|
||||
* @name dash
|
||||
* @method
|
||||
* @memberof Konva.Shape.prototype
|
||||
* @param {Number} dash offset
|
||||
* @returns {Number}
|
||||
* @example
|
||||
* // apply dashed stroke that is 10px long and 5 pixels apart with an offset of 5px
|
||||
* line.dash([10, 5]);
|
||||
* line.dashOffset(5);
|
||||
*/
|
||||
|
||||
Konva.Factory.addGetterSetter(Konva.Shape, 'shadowColor');
|
||||
|
||||
/**
|
||||
|
@ -896,6 +896,7 @@ suite('Shape', function() {
|
||||
assert.equal(shape.strokeEnabled(), true);
|
||||
assert.equal(shape.shadowEnabled(), true);
|
||||
assert.equal(shape.dashEnabled(), true);
|
||||
assert.equal(shape.dashOffset(), 0);
|
||||
assert.equal(shape.strokeScaleEnabled(), true);
|
||||
assert.equal(shape.fillPriority(), 'color');
|
||||
assert.equal(shape.fillPatternOffsetX(), 0);
|
||||
|
Loading…
Reference in New Issue
Block a user