Have you not tried to set the COLOR property of your IDLgrSymbol? If your IDLgrWindow is using RGB true color in its visualizations (the default), then you can set this with syntax like:
oSymbol->SetProperty, COLOR=[255,255,0] ; Yellow
Alternatively, if your IDLgrWindow is using the 256-element color table color, then you would just set color to a scalar color index value between 0 and 255:
oSymbol->SetProperty, COLOR=42
James Jones
|