Scala、图表和 Google 可视化 API
任何人都知道用于图形/图表的 Scala 库或 Google 可视化 API 的实现。
干杯
Those anyone know of a Scala Library for Graphs / Charts or an implementation of the Google Visualisation API.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然 Scala 很酷,但为什么不使用 Java 领域的成熟库呢?我想到了JFreeChart,它非常通用并且运行良好。
Scala 的优势之一是它与 Java 的互操作性。无需费力,Scala 程序就可以访问大部分用 Java 开发的/为 Java 开发的库。无需等待有人在 Scala 中重新发明轮子即可获得此类专业解决方案。
While Scala is cool and all, why not use a well-established library from the Java domain? JFreeChart comes to mind, it's very versatile and works well.
One of Scala's strengths is its interoperability with Java. Without lifting a finger, Scala programs get access to most of the wealth of libraries developed in/for Java. No need to wait for someone to re-invent the wheel in Scala for specialized solutions like these.
实际上,JFreeCharts 有一个 scala 包装器:
https://github.com/wookietreiber/scala-chart
使用 scala API 与基于 java 的库一起工作可能会更方便。
Actually, there are a scala wrapper over JFreeCharts:
https://github.com/wookietreiber/scala-chart
It may be more handy to use scala API's working with java-based libraries.