Hi all,
I am working with vector field data in ArcGIS Maps SDK for Javascript and I am wondering if you can change the color of the arrows. The documentation says that the styles are predefined so I am wondering if it is just not possible. Please see the below code. I put "color: "red" in everyplace I can think of but it does not seem to change the color.

const rendererWind = new VectorFieldRenderer({
type: "vector-field",
color: "red",
style: "single-arrow",
flowRepresentation: "flow-from",
symbolTileSize: 80,
visualVariables: [{
type: "size",
maxSize: "50px",
minDataValue: 0,
minSize: "15px",
color: "red"
},
{
type: "rotation",
rotationType: "geographic"
},
{
type: "color",
color: "red"
}]
});
const windLayer = new ImageryLayer({
url: ***
id: "windLayer",
visible: false,
minScale: [10000000],
renderer: rendererWind
});