使用 Flot 在 ASP.NET 中制作图表并从代码隐藏文件中获取值
我正在开发一个项目,我从 ASP.NET 页面获取用户的输入。然后,该输入将被处理为数据,并使用该数据我可以创建图表,这适用于 Microsoft 标准图表库。
但现在我想用 Flot 制作相同的图表。我可以制作 Flot 图表,但该数据是硬编码在 .ASPX 页面中的。这是用 jQuery 实现的。
我想做的是让代码隐藏文件填充图表。我知道我需要使用 JSON (我不熟悉),但我不知道如何使用。
I'm working on a project were I have input from the user from the ASP.NET page. This input is then being processed into data and with this data I can create charts, this works with the Microsoft standard Charting library's.
But now I want to make the same chart but with Flot. I can make a Flot chart but this data is hard-coded in the .ASPX page. This is with jQuery.
What I'm trying to do is let the code-behind file fill in the chart. I know I need to use JSON (which I'm not acquainted with), but I don't know how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您想要做的是使用 AJAX 从服务器动态加载数据。
这是一个可以做同样多事情的例子。
http://people.iola.dk/olau/flot/examples/ajax.html
如果这不是您要找的,请告诉我。
I think what you want to do is to use AJAX do load data dynamically from a server.
Here is an example to do as much.
http://people.iola.dk/olau/flot/examples/ajax.html
Let me know if this is not that for which you are looking.