将 Google 的可视化组织结构图与 Rails 结合使用
我打算在我的应用程序中实现组织结构图,我发现显示组织结构图的最佳资源是 Google 的组织结构图。
我正在使用 Awesome_nested_set 来维护数据库中的树结构,现在我需要将树显示为组织结构图,为此我认为可以使用 Google 组织结构图。能做到吗?如果是这样,任何提示或资源都会有所帮助。谢谢 !
I intend to implement an Organization Chart in my app and the best resource I found to display one was Google's Organisational Chart.
I'm using awesome_nested_set to maintain a tree structure in the database, and now I need to display the tree as an organization chart, for which I thought I could use the Google Org chart. Can it be done? If so, any tips or resources would be helpful. Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以,我找到了这个资源。它的名称为 GoogleVisualR。
它使可视化 Google 的组织结构图变得非常容易,而且,您编写的是 Ruby 代码,而不是 Javascript 中的一行(当然,除非您需要自定义它)。好的!
So, I found this resource. Its called GoogleVisualR.
It makes visualizing Google's org chart really easy, what's more, you write Ruby code and not a line in Javascript (Unless ofcourse you need to customize it). Nice!
我正在制作一个组织结构图,我从连接到“经理”字段的列表中获取用户配置文件。
我已经使用 KineticJS 制作了动态组织结构图,目前运行良好,但我想知道其他人对此有何看法
I was working on an Org Chart where i get User-profiles from a list connected to the with manager field.
I have used KineticJS to make a dynamic org chart and it is working fine for the moment, but i would like to know what others think about it