ASP.Net 图表 LabelURL
我有一些与 MS Asp.Net 图表控件一起使用的图形,我注意到标签有一个标签 URL 属性,如果我在其中放置一个 URL,那么它会使该标签成为一个链接。
我的问题是,是否可以让图表中每个条目的标签 URL 都是动态的,例如我有一个图表,绘制了每个项目有多少未完成的任务。 我希望该 URL 能够转到每个项目的主页。
例如 http://www.mywebsite.com/projects.aspx?projectId=*InsertProjectIdHere*
我确信这一定是很常见的事情,所以我猜这是可能的。
谢谢
I've got some graphics working with the MS Asp.Net Chart controls, I noticed the labels have a label URL property, If I put a URL in there then it makes that label a link.
My question is, is it possible to have the label URL be dynamic for each entry in the graph for example I have a graph plotting how many tasks are outstanding for each project. I want the URL to go to the home page for each project.
e.g Http://www.mywebsite.com/projects.aspx?projectId=*InsertProjectIdHere*
I'm sure this must be quite a common thing to do so i'm guessing it is possible.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 x 系列中有项目 ID,您可以执行
labelUrl = "Http://www.mywebsite.com/projects.aspx?projectId=#VALX"
If your x series has the project id in it, you can do
labelUrl = "Http://www.mywebsite.com/projects.aspx?projectId=#VALX"