在mvc2中生成动态饼图和页面重定向

发布于 2024-10-25 17:30:25 字数 39 浏览 1 评论 0原文

我想知道如何动态生成饼图。以及如何将一个页面重定向到另一个网页?

I want to know how to generate a pie chart dynamically. and how to redirect a page to another web page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

维持三分热 2024-11-01 17:30:25

您可以使用 Silverlight 来绘制饼图,它非常适合那些动态的图表。

对于重定向页面,如果您要重定向到的页面是由操作方法呈现的视图,您可以重定向到该操作,它会在发挥其魔力后将页面重定向到其相应的视图:

public ActionResult SomeAction(int id)
{
    // Do your things here

    return RedirectToAction("Index");
}

编辑: 是的,这就是为什么我告诉你使用 Silverlight :),要开始使用,你需要检查 Silverlight 图表工具包,这是一个 饼图视频

You could use Silverlight for the pie chart, it is very good for those and dynamic.

for redirecting the page, if the page you want to redirect to is a View which is rendered by an action method, you can redirect to that action and it will redirect the page to its corresponding view after doing its magic:

public ActionResult SomeAction(int id)
{
    // Do your things here

    return RedirectToAction("Index");
}

EDIT: Yes, that's why I told you to use Silverlight :), to get started, you need to check Silverlight Charting Toolkit and here's a video on Pie Chart

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