Search found 49 matches

by pmarsollier
Thu Jul 20, 2006 9:41 am
Forum: JFreeChart
Topic: Integrating JFreeChart! bit urgent :-(
Replies: 2
Views: 4577

if your data are within excel, why just not do it with Excel ??
easyer ...

how do you read it ?
using POI ?
by pmarsollier
Thu Jul 20, 2006 9:39 am
Forum: JFreeChart
Topic: Save chart inside webapps
Replies: 2
Views: 4942

you 'd better not save the chart.

have a close look at this

http://www.jfree.org/phpBB2/viewtopic.p ... jsp+webapp
by pmarsollier
Tue Jul 18, 2006 8:39 am
Forum: JFreeChart
Topic: Long time to load pie chart on Linux
Replies: 3
Views: 5054

using Java headless capability, included starting jdk 1.4

launch your JVM with -Djava.awt.headless=true, it will use internal java code only, not the OS rendering system.
by pmarsollier
Tue Jul 18, 2006 8:23 am
Forum: JFreeChart
Topic: Optimize graphes size...
Replies: 1
Views: 3280

the size you draw your chart is depending on you.
just reduce the width and height you pass to your drawing function.
by pmarsollier
Tue Jul 18, 2006 8:20 am
Forum: JFreeChart
Topic: Long time to load pie chart on Linux
Replies: 3
Views: 5054

tried headless ??
by pmarsollier
Mon Jul 17, 2006 9:51 am
Forum: JFreeChart
Topic: JFreeChart Performance Guide
Replies: 1
Views: 3863

slow with JDK 1.3 but
with 1.4, it uses the JDK's ImageIO, so it's the best you can do.

the larger your image is, the longer it takes.
generating 1024*768 images takes far less than a seconds.
rendering it on a browser takes more time.
by pmarsollier
Thu Jul 13, 2006 7:53 am
Forum: JFreeChart
Topic: need help with pie chart ,its urgent!!
Replies: 1
Views: 2993

in a pie, 1 category => 1 value

so you'll have to change it !!
by pmarsollier
Wed Jul 12, 2006 10:36 am
Forum: JFreeChart
Topic: BarChart with Interval.
Replies: 22
Views: 40584

the Interval Class public class Interval { // low Limit (value unit) private double lowLimit = 0; // high Limit (value unit) private double highLimit = 0; // max value, no computed value above this private double maxValue = 0; // separator size (soemwhat pixel) private int sepSize = 10; public Inter...
by pmarsollier
Mon Jul 03, 2006 8:36 am
Forum: JFreeChart
Topic: Dynamic charting getting stuck
Replies: 5
Views: 5104

I've been searching for months for that kind of bug, sometime my graph just did'nt show ... I found that it was because sometime, the value I had produced PathException, it could not be draw, hanging in a native call. track down null, 0, infinite ... etc ... especially with dynamic , oyou often comp...
by pmarsollier
Wed Jun 28, 2006 2:08 pm
Forum: JFreeChart
Topic: Document or guide needed for creatine new Chart Types
Replies: 12
Views: 19305

sorry, but i can't figure what you mean by Timing Diagram.

could post an example ?
by pmarsollier
Wed Jun 28, 2006 10:44 am
Forum: JFreeChart
Topic: Image truncated
Replies: 1
Views: 2880

have a look is the margin and insets in your plot / renderer
i think you find what you need there ....
by pmarsollier
Wed Jun 28, 2006 10:41 am
Forum: JFreeChart
Topic: Y axis display
Replies: 1
Views: 2953

use the axis.setRange() fonction
by pmarsollier
Wed Jun 28, 2006 10:37 am
Forum: JFreeChart
Topic: NumberAxis Problem
Replies: 1
Views: 3630

what graph do use use exactly ?

ellispses is done by the Jcommon TextUtilities.createTextBlock() function.

so find which of your axis does the call to it and override it with a greter width ...
for CategoryAxis, the key is in the createLabel() ....
by pmarsollier
Wed Jun 28, 2006 10:27 am
Forum: JFreeChart
Topic: Document or guide needed for creatine new Chart Types
Replies: 12
Views: 19305

as with any opensource projet, the ultimate doc is .. the code !

It's enought for the average java developer to understand how it works.

Depending what you wanna do, you'll need just extending an existing class, but more often, you need cloning and customizing a class.
by pmarsollier
Tue Jun 27, 2006 2:59 pm
Forum: JFreeChart
Topic: BarChart with Interval.
Replies: 22
Views: 40584

I made a first shot ...

Image

is thats fitting what you need ???