ASP.NET 图表控件 - 如何创建此条形图?
我想从数据表中制作一个图表控件。
该表格如下所示:
alt text http://www.freeimagehosting.net/uploads/5d02ce1558.png
我想要的图表将如下所示:
'''
''''
''''' '' '
''''' '' '
ECCTMP ECCTMP ECCTMP
Monday Tuesday Wednesday
希望这对于按类型(电子邮件、电话)分组的每一天都有意义。
我现在才确定如何对其进行数据绑定?
比利
Got a chart control i wanna make from a data table.
the table looks like this:
alt text http://www.freeimagehosting.net/uploads/5d02ce1558.png
the chart i want will look like this:
'''
''''
''''' '' '
''''' '' '
ECCTMP ECCTMP ECCTMP
Monday Tuesday Wednesday
hope this makes sense for each day its grouped b y the type (email, calls).
I'm just now sure how to databind it?
Billy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望在条形图中对系列进行分组,那么您需要使用 Chart.DataBindTable 方法 (MSDN)。
只需添加以下代码:
这将生成一个如下所示的图表:
这是一些用作测试的虚拟代码:
也可以让标签按照您使用 ECCTMP 的描述显示但添加图例可能看起来更干净。
If you're looking to group series in a bar chart then you'll need to use the Chart.DataBindTable method (MSDN).
Just add the following code:
This will produce a chart that looks something like the following:
Here's some dummy code to use as a test:
It is also possible to have the labels appear as you describe with ECCTMP but adding a legend will probably look cleaner.