Hi,
I'm trying to update the "attributes" property under an item
and the "visible" property under an item, in graphicsLayer.graphics.items (graphicsLayer is the GraphicsLayer object)
I tried using setAttribute, but it didn't work.
graphicsLayer.graphics._items.forEach((item) => {
item.setAttribute('uid', item.uid)
})
I didn't find a method to use for updating "visible" property.
Thanks!