在浮动条形图上显示条形内的值
我想在 flot 条形图上显示条形内的值,如下所示:
|
| +----+
| | |
| | |
| | |
| +----+ | 20 |
| | | | |
| | 10 | | |
| | | | |
|---+----+------+----+------
data = [[1, 10], [2, 20]]
有办法做到这一点吗?
I would like to show the value within the bar on the flot bar chart, something like this:
|
| +----+
| | |
| | |
| | |
| +----+ | 20 |
| | | | |
| | 10 | | |
| | | | |
|---+----+------+----+------
data = [[1, 10], [2, 20]]
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我需要同样的东西,所以我很快就为它编写了一个 插件 和一个快速 实际应用示例。
I needed the same thing, so I quickly hacked together a plugin for it and a quick example of it in action.
我想您的答案就在这里:
http://code.google.com/ p/flot/issues/detail?id=218
I think your answer is here:
http://code.google.com/p/flot/issues/detail?id=218
可以使用插件flot.barlabels:
The plugin flot.barlabels can be used: