MESCIUS SPREAD for ASP.NET 10.0J
RenderMapArea プロパティ

画像マップを出力するかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Overridable Property RenderMapArea As Boolean
public virtual bool RenderMapArea {get; set;}
解説

ユーザーが、チャートの要素をクリックしたときにMapAreaClickイベントを発生させることができます。それには、このプロパティをtrueに設定し、HotSpotModeプロパティをPostBackに設定します。

次のサンプルコードは、RenderMapAreaプロパティを使用します。
protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        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();
}
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
参照

FpChart クラス
FpChart メンバ

 

 


© MESCIUS inc. All rights reserved.