问题描述
我无法在饼图聊天中为饼图的各个部分(切片)触发事件。
我提到了图表事件代码...
覆盖protected void OnInit( EventArgs e)
{
if(!Page.IsPostBack)
this.Chart1.Click + = new ImageMapEventHandler(Chart1_Click);
base.OnInit(e);
InitializeComponent();
base.OnInit(e);
}
protected void Chart1_Click(对象发送者,ImageMapEventArgs e)
{
//代码
}
Hi,
I'm unable to fire an event in the pie chat for the individual sections(slices) of the pie chart.
I have mentioned the chart event code ...
override protected void OnInit(EventArgs e)
{
if (!Page.IsPostBack)
this.Chart1.Click += new ImageMapEventHandler(Chart1_Click);
base.OnInit(e);
InitializeComponent();
base.OnInit(e);
}
protected void Chart1_Click(object sender, ImageMapEventArgs e)
{
//Code
}
推荐答案
这篇关于是否可以对饼图的各个部分(切片)执行Click事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!