I have created a ROI box as following code
import SampleData
sampleDataLogic = SampleData.SampleDataLogic()
self.delayDisplay("Getting MR Head Volume")
mrHeadVolume = sampleDataLogic.downloadMRHead()
# Create clipping ROI
roiNode = slicer.vtkMRMLAnnotationROINode()
roiNode.SetXYZ(36, 17, -10)
roiNode.SetRadiusXYZ(25, 40, 65)
roiNode.Initialize(slicer.mrmlScene)
I want to fill color to the roiNode (such as blue color). Is it possible to do it? I have found some methods but it does not work.