views:

69

answers:

1

Hi Guys,

Those anyone know of a Scala Library for Graphs / Charts or an implementation of the Google Visualisation API.

Cheers

+7  A: 

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.

Carl Smotricz