JQuery JQPlot - 自定义堆积条形图
我有一个独特的要求。 1. 呈现堆积条形图 2.每个堆栈的颜色可以由用户在db中设置 3. 用户可以选中/取消选中以在图表中添加或删除堆栈 4. 用户可以更改堆栈的顺序。
1 和 2 很好,但我卡在 3 和 4 上。我想我必须为图例创建一个自定义渲染器,以便我可以向其添加一个复选框,但之后呢?
有人做过这个吗?或者有什么指点吗?
I have a unique requirement.
1. Present a stacked bar chart
2. The color of each stack can be set by the user in the db
3. The user can check/uncheck to add or remove a stack from the graph
4. The user can change the order of the stacks.
1 and 2 are fine, but I am stuck at 3 and 4. I am thinking I will have to create a custom renderer for the legends, so that I can add a checkbox to it, but after that what?
Anyone done this? Or have any pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建渲染器后,您可以在复选框的 onclick 事件上绑定一些处理程序,该处理程序将根据用户的选择重新绘制图形。
Once you created the renderer, you can bind some handler on the checkboxes' onclick event that would redraw the graph according to the user's choice.