Version

ClientSideEvents Property (UltraChart)

Configures client-side event handling.
Syntax
'Declaration
 
Public Property ClientSideEvents As WebEventAppearance
public WebEventAppearance ClientSideEvents {get; set;}
Example
'sets the Function names for the Javascript events, your function names do not matter, can be anything you specify
chart.ClientSideEvents.ClientOnDrilledDown="OnDrillDown"
chart.ClientSideEvents.ClientOnMouseClick="OnMouseClick"
chart.ClientSideEvents.ClientOnMouseOut="MouseOut"
chart.ClientSideEvents.ClientOnMouseOver="SomeFunction"
//sets the Function names for the Javascript events, your function names do not matter, can be anything you specify
chart.ClientSideEvents.ClientOnDrilledDown="OnDrillDown";
chart.ClientSideEvents.ClientOnMouseClick="OnMouseClick";
chart.ClientSideEvents.ClientOnMouseOut="MouseOut";
chart.ClientSideEvents.ClientOnMouseOver="SomeFunction";
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