Search found 20 matches

by zany
Thu Oct 28, 2004 1:10 pm
Forum: JFreeChart
Topic: smaller footprint
Replies: 2
Views: 2733

You might want to give obfuscation/shrinker tools like proguard a spin. Be sure not to change the library interface (package structure folding/ aggressive overloading) otherwise you might violate jfreecharts license. Its LGPL compliant if you can exchange the shrinked lib with the original distribut...
by zany
Mon Jun 28, 2004 10:06 am
Forum: JFreeChart
Topic: SpiderChart source (AGAIN)
Replies: 4
Views: 6635

I have working code without label drawing already.
You are free to use it as a basis. It'll be in the patch manager in a few days (nobody requested a sample so far and I'm just too lazy).
Also see http://jfree.org/phpBB2/viewtopic.php?t=1298 on that.
by zany
Mon Jun 14, 2004 9:09 am
Forum: JFreeChart
Topic: Spider Chart
Replies: 6
Views: 5317

Spider/Web Chart

See http://jfree.org/phpBB2/viewtopic.php?t=1298 on that.
I have working code without label drawing allready.
If there is demand for it I'll send the patch as some sort of starting point for a real implementation.
by zany
Mon May 24, 2004 11:02 am
Forum: JFreeChart
Topic: Radar or Radial graph
Replies: 2
Views: 3036

Radar/Spider/Web Chart

See http://jfree.org/phpBB2/viewtopic.php?t=1298 on that.
If have working code with no labels though. Expect some patch soon.
by zany
Mon May 17, 2004 10:56 am
Forum: JFreeChart
Topic: jfree?why call it free?but putchase the developer guide
Replies: 3
Views: 4881

It's about liberty

``Free software'' is a matter of liberty, not price. To understand the concept, you should think of ``free'' as in ``free speech,'' not as in ``free beer.'' see http://www.gnu.org/philosophy/free-sw.html
by zany
Thu May 06, 2004 1:50 pm
Forum: JFreeChart
Topic: Fast plotting
Replies: 15
Views: 20531

No need to deprecate get*Value()

the isMissing() method is redundant. Its purpose is only to determine the meaning of getY() when it returns Double.NaN [...] why not get the same information from the getYValue() method - by checking whether it returns 'null' or a Number object I really appreciate the steps towards primitive data h...
by zany
Wed Apr 14, 2004 10:37 am
Forum: JFreeChart
Topic: Interpolateable Datasets (Function2D plotter)
Replies: 1
Views: 2448

Interpolateable Datasets (Function2D plotter)

Hi, I'm working on 2D functions currently and got a working draft with minimum effort. Please tell me if this is the right approach or if we should make more visible and complex model for that. Attached are three extension classes to jfreechart and one sample applet/application. Here is a sketch: Pr...
by zany
Mon Apr 05, 2004 4:12 pm
Forum: JFreeChart
Topic: translateJava2DToValue from ChartMouseEvent
Replies: 2
Views: 3756

Sorry. I meant to say that the dataArea is calculated from within the Plots draw() method (shrinking the chart area by the axis space).
by zany
Mon Apr 05, 2004 4:06 pm
Forum: JFreeChart
Topic: translateJava2DToValue from ChartMouseEvent
Replies: 2
Views: 3756

translateJava2DToValue from ChartMouseEvent

Hi, I'm trying to use the axis translateJava2DToValue() from chartMouseClicked(). There seems to be one problem though. I can't figure a way of getting the right dataArea argument. double x = plot.getDomainAxis().translateJava2DToValue(getTrigger().getX(), dataArea, plot.getDomainAxisEdge()); ChartP...
by zany
Fri Apr 02, 2004 2:21 pm
Forum: JFreeChart
Topic: jfreechart-0.9.17 dependancy to log4j
Replies: 5
Views: 6234

Wrapper?

Hi, like grav says logging is a nice feature. Depending on a 350K+ library is the point in question. Perhaps there is a smaller logging wrapper around? You could bundle the calls with a primitive wrapper otherwise. Having wrappers for wrapper-like things (i.e. logging) is a pain though. Reflection c...
by zany
Mon Mar 29, 2004 1:29 pm
Forum: JFreeChart
Topic: jfreechart-0.9.17 dependancy to log4j
Replies: 5
Views: 6234

jfreechart-0.9.17 dependancy to log4j

Hi,

it seems the dependancy to log4j is for debugging only (naturally).

Is there more to come? Is it jfc < 1.0 only? Can we perhaps drop it to keep the library tidy?

(I'm using logging myself and was suprised to see debugging output in a jfc release still).

cu,
Christian
by zany
Tue Mar 23, 2004 8:11 pm
Forum: JFreeChart
Topic: Minimum Applet Size?
Replies: 1
Views: 2761

Shrinker

Hi, try using shrinker tools like proguard http://proguard.sourceforge.net/ There are some more bytes to gain by collapsing the package, class and method names (obfucating the bytecode) -- although that would clearly violate the licence. Perhaps depends on your codes licence -- if you provide all so...
by zany
Mon Mar 22, 2004 3:14 pm
Forum: JFreeChart
Topic: license permits reverse engineering and modification, help !
Replies: 3
Views: 6494

Dynamic Linking

Hi, as Java makes use of dynamic linking that rule has no substance. Just place the jfreechart-0.9.16.jar (and jcommon-0.9.1.jar) along with your commercial.jar. Users are allowed to replace and examine the free libs (.jar, .so or .dll) other things on your classpath are out of scope. In any case do...
by zany
Mon Mar 22, 2004 3:07 pm
Forum: JFreeChart
Topic: license
Replies: 2
Views: 5054

LGPL

Hi, the usual LGPL rules apply. As to my understanding if you just link to the library (LGPL § 5) you need to comply to LGPL § 6 only. Give a prominent notice that you are using JFreeChart. Include a link to jfree.org so people can download the lib (and prehaps relink). If you modify any part of JFr...
by zany
Mon Mar 22, 2004 2:55 pm
Forum: JFreeChart
Topic: localization
Replies: 3
Views: 5999

UTF-8?

Hi,

what charset and encoding do you use? Is it Unicode with UTF-8?
Can you give some example text?

cu,
Christian