I need to set the colors of the points that show up in the 3D scatterchart. I've tried using the FillWceneGraph event and setting the Primitive i.e. p.PE.Fill = Color.Red; unfortunately this does nothing for me. I used a filter to look for primitives with a valid row identifying whether it represents a data row then set the fill but no help.
Another issue is the size of the sphere. I want to make it smaller than it is.
Any assistance would be much appreciated.
Thanks
Rick
Unfortunately, FillSceneGraph will have no effect on almost all 3d charts because of the complexity of each shape. For point sizes you are limited to setting PointChart3D.IconSize to one of the three sizes (small, medium, large). To change the color of a particular point you can add an override to chart.Override collection. However, Transform3D.Light must be turned off for this.
It's PointChart3D that I'm having issues with.