www.Chart4.NET | Samples

Whether to reload data of the chart on a drill-down (node-click). See Remarks. Default is false.

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

Syntax

C#
public bool hpRefreshNeeded { get; set; }
Visual Basic (Declaration)
Public Property hpRefreshNeeded As Boolean
Visual Basic (Usage)
Dim instance As HierarchyWeb
Dim value As Boolean

value = instance.hpRefreshNeeded

instance.hpRefreshNeeded = value
Visual C++
public:
property bool hpRefreshNeeded {
	bool get ();
	void set (bool value);
}
J#
/** @property */
public boolean get_hpRefreshNeeded()
/** @property */
public  void set_hpRefreshNeeded(boolean value)
JScript
public function get hpRefreshNeeded () : boolean
public function set hpRefreshNeeded (value : boolean)
JavaScript
function get_hpRefreshNeeded();
function set_hpRefreshNeeded(value);

Field Value

System.Boolean

Remarks

You have to set it to true, if you want to plot a different set of data/subchart on a node-click.
- Relevant only if hpDrillDownMode is PostBack.
- Set this property in the heNodeClick event.

See Also