www.Chart4.NET | Samples

Html or text to display while chart is loading from the server. Can specify img tag too; but make sure that the image exists, irregular behavior otherwise. See Remarks.

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

Syntax

C#
public string hpLoadingHtml { get; set; }
Visual Basic (Declaration)
Public Property hpLoadingHtml As String
Visual Basic (Usage)
Dim instance As HierarchyWeb
Dim value As String

value = instance.hpLoadingHtml

instance.hpLoadingHtml = value
Visual C++
public:
property String^ hpLoadingHtml {
	String^ get ();
	void set (String^ value);
}
J#
/** @property */
public String get_hpLoadingHtml()
/** @property */
public  void set_hpLoadingHtml(String value)
JScript
public function get hpLoadingHtml () : String
public function set hpLoadingHtml (value : String)
JavaScript
function get_hpLoadingHtml();
function set_hpLoadingHtml(value);

Field Value

System.String

Remarks

Default is the text 'Loading...'

Examples

CopyC#
HierarchyWeb1.hpLoadingHtml = "<img src="/image/loading.gif" />";

See Also