Scala, charts, and Google visualization APIs

Those who know the Scala library for graphs / charts or the implementation of the Google Visualization API.

Greetings

+4
source share
2 answers

So far, Scala is cool and all, why not use a well-established library from a Java domain? JFreeChart comes to mind, it is very versatile and works well.

One of Scala's strengths is its compatibility with Java. Without raising a finger, Scala programs gain access to a wide range of libraries developed in / for Java. No need to wait for someone to re-launch the wheel in Scala for specialized solutions like these.

+8
source

Actually there is a scala shell on top of JFreeCharts: https://github.com/wookietreiber/scala-chart It may be more convenient to use the scala API working with Java libraries.

+1
source

Source: https://habr.com/ru/post/1316392/


All Articles