Spread for ASP.NET 7.0 Product Documentation
Click Event
See Also  Example Support Options
FarPoint.Web.Chart Assembly > FarPoint.Web.Chart Namespace > FpChart Class : Click Event


Glossary Item Box

Occurs when the chart image is clicked.

Syntax

Visual Basic (Declaration) 
Public Event Click As ImageClickEventHandler
Visual Basic (Usage)Copy Code
Dim instance As FpChart
Dim handler As ImageClickEventHandler
 
AddHandler instance.Click, handler
C# 
public event ImageClickEventHandler Click

Remarks

The EnableClickEvent property specifies whether the Click event fires.

The MapAreaClick event fires if the RenderMapArea property is true and the EnableClickEvent property is false. If the RenderMapArea property is false and the EnableClickEvent property is true, only the Click event fires. If the RenderMapArea property is true and the EnableClickEvent property is true, the MapAreaClick event fires if the user clicks on a chart element. The Click event fires if the user clicks on the chart background.

The HotSpotMode property is used if RenderMapArea is true. HotSpotMode determines the behavior when the user clicks in a map area. The options are inactive, navigate, and post back. The inactive option is useful if you wish to display a tooltip in the map area. If the HotSpotMode is set to post back, the MapAreaClick and Client events are fired. If the RenderMapArea property is false, the HotSpotMode property has no effect.

Example

This example uses the Click event.
C#Copy Code
protected void FpChart1_Click(object sender, ImageClickEventArgs e)
  {
   FarPoint.Web.Chart.HitTest hitTest = FpChart1.HitTest(e.X, e.Y);
  }
Visual BasicCopy Code
Protected Sub FpChart1_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles FpChart1.Click
  Dim hitTest As FarPoint.Web.Chart.HitTest
  hitTest = FpChart1.HitTest(e.X, e.Y)
End Sub

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.