The below is my code which creates a line, I want to see it offset a certain distance. It works in the legend but it results in the line ultimately not drawing in the map itself.
{
type: 'CIMSolidStroke',
effects: [{
type: 'CIMGeometricEffectOffset',
method: 'Rounded',
option: 'Fast',
offset: 3.0
}],
enable: true,
capStyle: 'Butt',
joinStyle: 'Round',
width: 3,
color: [
56,
168,
0,
255
]
}, Is this method supported?