Infragistics 可点击饼图
我正在尝试使用 Infragistics 软件 7.1 版本,使用 C# 在 ASP.NET 2.0 中创建可单击的饼图。
图表按其应有的方式显示,但未调用 OnChartDataClicked 事件中标记的函数。
从.aspx:
<饼图>
在 .aspx.cs 中:
protected void DataRegionClicked(object sender, Infragistics.UltraChart.Shared.Events.ChartDataEventArgs e) {
Session["BLOCK"] = "一些几乎随机的文本";
<代码>}
I am attempting to create a clickable piechart in ASP.NET 2.0 with C# using version 7.1 of Infragistics' software.
The chart appears as it should, but the function marked in the OnChartDataClicked event is not called.
From the .aspx:
<igchart:UltraChart ID="UltraChart1" runat="server" OnChartDataClicked="DataRegionClicked">
<PieChart></PieChart>
</igchart:UltraChart>
And in the .aspx.cs:
protected void DataRegionClicked(object sender, Infragistics.UltraChart.Shared.Events.ChartDataEventArgs e) {
Session["BLOCK"] = "some nearly random text";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fiddler 在检索 Infragistics js 文件之一时发现了 404 错误。 通过将 Infragistics 目录结构直接复制到项目中解决了问题。
Fiddler revealed a 404 error on retrieval of one of the Infragistics js files. Problem solved by copying the Infragistics directory structure directly into the project.