Spread ASP.NET 6.0 Product Documentation
MapAreaInfo Property
See Also  Example Send Feedback
FarPoint.Web.Chart Assembly > FarPoint.Web.Chart Namespace > MapAreaClickEventArgs Class : MapAreaInfo Property


Glossary Item Box

Gets or sets the MapAreaInfo indicates the event source.

Syntax

Visual Basic (Declaration) 
Public Property MapAreaInfo As MapAreaInfo
Visual Basic (Usage)Copy Code
Dim instance As MapAreaClickEventArgs
Dim value As MapAreaInfo
 
instance.MapAreaInfo = value
 
value = instance.MapAreaInfo
C# 
public MapAreaInfo MapAreaInfo {get; set;}

Example

This example uses the MapAreaInfo argument.
C#Copy Code
FpChart1.RenderMapArea = true;
FpChart1.HotSpotMode = HotSpotMode.PostBack;

protected void FpChart1_MapAreaClick(object sender, MapAreaClickEventArgs e)
{
HitTest hitTest = this.FpChart1.HitTest(e.MapAreaInfo);
this.Label1.Text = hitTest.ToString();
}
Visual BasicCopy Code
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If (Me.IsPostBack) Then Return
        FpChart1.RenderMapArea = True
        FpChart1.HotSpotMode = HotSpotMode.PostBack
End Sub

Protected Sub FpChart1_MapAreaClick(ByVal sender As Object, ByVal e As FarPoint.Web.Chart.MapAreaClickEventArgs) Handles FpChart1.MapAreaClick
        Dim hit As FarPoint.Web.Chart.HitTest
        hit = FpChart1.HitTest(e.MapAreaInfo)
        ListBox1.Items.Add(hit.ToString())
End Sub

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.