Hello,
We are using the editor widget in ESRI for the crud operations of the symbols. I was able to succesfully render a webstyle symbol using the simple renderer.
const layer = new FeatureLayer({
source: graphics,
// renderer,
renderer:{
type: "simple",
symbol: {
type: "web-style", // autocasts as new SimpleFillSymbol()
styleName: "Esri2DPointSymbolsStyle",
name: "atm"
}
},
objectIdField: "ObjectID"
})
The use case which I currently have is to render more than one webstyle symbol in the editor. Since the simple renderer does not accept array of symbols , Is there any renderer which I can use to display the symbols on the editor.
I was trying it out with unique-renderer , but it does not seem to be working. Please find the screenshot attached

Thank you