Infragistics 可点击饼图

发布于 2024-07-27 21:49:35 字数 608 浏览 9 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆光下的微笑 2024-08-03 21:49:36

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文