www.Chart4.NET | Samples

Background type for the particular node as one of BackgroundType. Default is null.

Namespace:  UnifoChart.Hierarchy
Assembly:  UnifoChart.Hierarchy (in UnifoChart.Hierarchy.dll) Version: 2.6.0.0 (2.6)

Syntax

C#
public Nullable<BackgroundType> BackgroundType { get; set; }
Visual Basic (Declaration)
Public Property BackgroundType As Nullable(Of BackgroundType)
Visual Basic (Usage)
Dim instance As HierarchyNode
Dim value As Nullable(Of BackgroundType)

value = instance.BackgroundType

instance.BackgroundType = value
Visual C++
public:
property Nullable<BackgroundType> BackgroundType {
	Nullable<BackgroundType> get ();
	void set (Nullable<BackgroundType> value);
}
J#
/** @property */
public Nullable<BackgroundType> get_BackgroundType()
/** @property */
public  void set_BackgroundType(Nullable<BackgroundType> value)
JScript
public function get BackgroundType () : Nullable<BackgroundType>
public function set BackgroundType (value : Nullable<BackgroundType>)
JavaScript
function get_BackgroundType();
function set_BackgroundType(value);

Field Value

UnifoChart.Hierarchy.BackgroundType

Remarks

  • If you set BackgroundType as Image, then set BackgroundImage too.
    If you set BackgroundType as Brush, then set BackgroundBrush too.
  • If you set Control property to display .NET controls, then set a transparent background for the container control to make the node background visible. See Control property for details.

See Also