Hi,
Style properties on Line Widget are not marked as Read-only but are ignored by update function.
Application type: web-plugin
Tested with LineWidget https://developers.miro.com/docs/interface-ilinewidget
Example:
for (let widget of widgets) {
// styles are not updating:
widget.style.lineColor = '#000000';
widget.style.lineThickness = 3;
// other properties are updating correctly:
widget.clientVisible = false;
}
await miro.board.widgets.update(widgets);