Can D3 library be used with the Electron (Atom shell)?(D3 库可以与 Electron(Atom shell)一起使用吗?)
问题描述
Electron 的网站说,使用 electron 制作的应用程序可以访问节点模块.他们可以访问 D3 库吗?如果可以,如何设置?
Electron's website says that the applications made with electron can have access to node modules. Can they have access to the D3 library? If so, how can it be set up?
推荐答案
D3 可作为 Node.js模块,可以导入到您要用于呈现可视化应用程序的 JavaScript 代码中.
D3 is available as a Node.js module that can be imported into the JavaScript code you want to use to render your visualisation application.
作为如何将 D3 集成到 Electron 应用程序的示例,请查看我的 GitHub 上的 D3 Space Filler Explorer 应用程序.此应用程序通过多个 D3 饼图和 D3 树状图可视化磁盘空间使用情况.
As an example of how to integrate D3 into an Electron application, have a look at my D3 Space Filler Explorer application on GitHub. This application visualises disk space use with multiple D3 pie charts and a D3 treemap.
我发现一种有用的模式是将 SVG 元素注入到 D3 可视化中,这与 D3 示例中通常在可视化中创建 SVG 元素的方法不同.在/app/js/pie-chart.js 和/app/js/treemap-chart.js 文件中查看这种依赖注入的示例.
One pattern I found useful was to inject the SVG element into the D3 visualisation, which differs from the usual approach in D3 examples which creates the SVG element in the visualisation. See examples of this dependency injection in the /app/js/pie-chart.js and /app/js/treemap-chart.js files.
这篇关于D3 库可以与 Electron(Atom shell)一起使用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:D3 库可以与 Electron(Atom shell)一起使用吗?


- 如何显示带有换行符的文本标签? 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01