-
new Stroke(options)
-
Name Type Description colorColor | ColorLike | undefined A color, gradient or pattern. See
ColorandColorLikefor possible formats. Default null; if null, the Canvas/renderer default black will be used.lineCapCanvasLineCap (defaults to 'round') Line cap style:
butt,round, orsquare.lineJoinCanvasLineJoin (defaults to 'round') Line join style:
bevel,round, ormiter.lineDashArray.<number> | undefined Line dash pattern. Default is
null(no dash).lineDashOffsetnumber (defaults to 0) Line dash offset.
miterLimitnumber (defaults to 10) Miter limit.
widthnumber | undefined Width.
Methods
-
clone(){Stroke}
-
Clones the style.
Returns:
The cloned style.
-
Get the stroke color.
Returns:
Color.
-
getLineCap(){CanvasLineCap | undefined}
-
Get the line cap type for the stroke.
Returns:
Line cap.
-
getLineDash(){Array.<number> | null}
-
Get the line dash style for the stroke.
Returns:
Line dash.
-
getLineDashOffset(){number | undefined}
-
Get the line dash offset for the stroke.
Returns:
Line dash offset.
-
getLineJoin(){CanvasLineJoin | undefined}
-
Get the line join type for the stroke.
Returns:
Line join.
-
getMiterLimit(){number | undefined}
-
Get the miter limit for the stroke.
Returns:
Miter limit.
-
getWidth(){number | undefined}
-
Get the stroke width.
Returns:
Width.
-
setColor(color)
-
Set the color.
Name Type Description colorColor | ColorLike Color.
-
setLineCap(lineCap)
-
Set the line cap.
Name Type Description lineCapCanvasLineCap | undefined Line cap.
-
setLineDash(lineDash)
-
Set the line dash.
Name Type Description lineDashArray.<number> | null Line dash.
-
setLineDashOffset(lineDashOffset)
-
Set the line dash offset.
Name Type Description lineDashOffsetnumber | undefined Line dash offset.
-
setLineJoin(lineJoin)
-
Set the line join.
Name Type Description lineJoinCanvasLineJoin | undefined Line join.
-
setMiterLimit(miterLimit)
-
Set the miter limit.
Name Type Description miterLimitnumber | undefined Miter limit.
-
setWidth(width)
-
Set the width.
Name Type Description widthnumber | undefined Width.