Version

FillSceneGraph Method (BubbleLayer)

Adds Bubbles to the Scene Graph.
Syntax
'Declaration
 
Public Overrides Sub FillSceneGraph( _
   ByVal scene As SceneGraph _
) 
public override void FillSceneGraph( 
   SceneGraph scene
)

Parameters

scene
A scene graph passed in to which graphical primitives are added.
Exceptions
ExceptionDescription
System.NullReferenceExceptionThrown when the SceneGraph object supplied is null.
Remarks

All layers override this method to provide functionality specific to their presentation. This method should call its base class' FillSceneGraph method, and should then add graphical Primitive objects to the scene graph.

The BubbleLayer implementation of this method adds Ellipse objects to the scene graph corresponding the the rows of data bound to this layer's chart component.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also