After more than 4 years, there's finally a new Cewolf release! It's based on the various "cewolf-1.1-ulf" releases that have been available from my web site at http://www.ulfdittmer.com/code/cewolf.html, and incorporates lots of bug fixes and enhancements over 1.0, both from myself and numerous other contributors. The release notes has all the details, but the big issues are:
- All Cewolf objects are Serializable - there'll be no more exceptions when they're put into sessions.
- A lot of new postprocessors have been added, so if certain charts don't quite look the way you'd like them, check out the de.laures.cewolf.cpp package - it contains numerous classes that tinker with charts. There's even one that puts annotations (labels and arrows pointing to specific data points) on the chart.
- Several new chart types are available: spline, spiderweb, dial, compass, thermometer, stackedhorizontalbar3d
- The JSP expression language (EL) can now be used for parameter values - scriptlets are no longer necessary.
- Lots of bug fixes, performance and HTML improvements, and additional attributes for setting chart options.
Be sure to download the example web app as well - it shows all chart types as well as many of the options and postprocessors in action. It includes everything you need to get started with using cewolf in your web app.
Is it possible to create 'organization' chart with Cewolf?
Thank you.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32768
posted
0
You mean something like this?
No, because JFreeChart (the charting library on which cewolf is based) has no such capabilities.
Vikas Kapoor
Ranch Hand
Joined: Aug 16, 2007
Posts: 1374
posted
0
Yes, in project we are using jFreeChart and it does not have that capability. I am wondering why particularly Org. chart is not supported widely.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32768
posted
0
Org charts are very different in structure from what JFC (and cewolf) do - there in't much (or any) commonality to charts that have clearly defined axes. But I'm sure there are other libraries that support this - search for "org chart java" or some such phrase.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32768
posted
0
By now version 1.1.2 is available which adds/fixes the following:
The PieEnhancer postprocessor can now be used to turn off PiePlot labels altogether (set showSectionLabels to false)
removed all -Xlint compilation warnings, and incorporated a handful of FindBugs suggestions