Skip to main content

Please, how to change Stroke type from SOLID to DASHED.


if(text.style.border_style !== ''){
node.strokes = [
{
type: text.style.border_style, // SOLID OR DASH
color: borderColor
}
]
}

Change the value of the dashPattern property.

figma.com

Reply