http://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.chart.click.aspx
事件处理程序:
protected void Chart1_Click(object sender, ImageMapEventArgs e)
{
//stuff
}
我想手动引发此事件。
public ActionResult HistoricalDrillDown(int reportID, string postBackValue)
{
string sessionKey = string.Format("HistoricalReport: {0}", reportID);
LineChart lineChart = (LineChart)Session[sessionKey];
ImageMapEventArgs imageMapEventArgs = new ImageMapEventArgs(postBackValue);
//Raise lineChart.Click() using ImageMapEventArgs
}
我觉得我已经很接近了——我只是不知道如何使用ImageMapEventArgs广播事件。任何人
感谢
您应该将代码移动到一个单独的方法,并从处理程序中调用该方法。
直接调用事件处理程序是不好的做法。