Search found 11213 matches

by david.gilbert
Fri Mar 21, 2003 11:54 am
Forum: JWorkbook
Topic: the gnumeric file format
Replies: 1
Views: 165972

Hi Flora,

I haven't updated the document. You might try the Open Office web site - I haven't looked at their spreadsheet format, but I've heard that it is XML based.

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:14 pm
Forum: JFreeChart
Topic: bug: setHorizontalAxisTrace in CombinedXYPlot
Replies: 2
Views: 3549

Correct. Can you post a bug report at SourceForge?

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:13 pm
Forum: JFreeChart
Topic: Vertical Marker Axis
Replies: 1
Views: 2780

The marker axis band was implemented for the horizontal axis as a 'proof of concept'. I haven't gotten around to writing the same thing for the vertical axis.

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:11 pm
Forum: JFreeChart
Topic: HorizontalStatisticalBarRenderer ?
Replies: 1
Views: 2693

There isn't such a renderer yet...but writing one mostly just involves transposing the drawing code. I'd do it for you if I had the time...

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:10 pm
Forum: JFreeChart
Topic: Problems with a marker in an XY chart.
Replies: 1
Views: 3641

You could put a text annotation at a particular (x, y) location. The plan is to extend the annotations to handle shapes, arrows etc. Just look through the com.jrefinery.chart.annotations package - extending it would be pretty easy (I just haven't found the time yet).

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:08 pm
Forum: JFreeChart
Topic: java.lang.NoSuchMethodError
Replies: 1
Views: 3718

No idea. But a NoSuchMethodError usually signifies a version conflict somewhere. It sure looks like you have JFreeChart 0.9.6, check JCommon and the servlet API version of your application server. Apart from those tips, I can't really help much...

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 6:02 pm
Forum: JFreeChart
Topic: Chart Panel Title
Replies: 1
Views: 2616

In 0.9.6:

Code: Select all

TextTitle title = myPanel.getChart().getTitle();
if (title != null) {
    String titleStr = title.getText();
}
Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 5:59 pm
Forum: JFreeChart
Topic: API Refactoring
Replies: 4
Views: 4805

Your point about what a PiePlot would do with a LineRenderer is well-taken and got me thinking. In my original plan, my answer would be that the PiePlot wouldn't know or care what the LineRenderer is doing, and so the plot would have lines on it. But (here's the scary re-think) perhaps Renderers sh...
by david.gilbert
Thu Mar 20, 2003 5:47 pm
Forum: JFreeChart
Topic: XML data files with JFreeChart
Replies: 5
Views: 5797

Thanks. That character is being added by an incorrect usage of the CRLF converter in the Ant script. I've fixed it now.

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 5:44 pm
Forum: JFreeChart
Topic: Need help for MouseEvent
Replies: 1
Views: 2471

The problem is that you have created a new ChartPanel and left it hanging in mid-air doing nothing. You've attached a listener to the panel, but the panel is not displayed anywhere. The ChartFrame class, meanwhile, is displaying a panel that it created for itself to display your chart in. Use the ge...
by david.gilbert
Thu Mar 20, 2003 5:41 pm
Forum: JFreeChart
Topic: Compiling Jfreechart9.4a with Jbuilder 6.0
Replies: 2
Views: 3094

Other alternatives are to: (1) exclude the source files in com.jrefinery.chart.demo.jdbc.servlet.* from your project. I think that is the only package with classes that reference Batik. (2) use the Ant script to build JFreeChart, I pretty sure it leaves out the servlet demo code. I'll try to remove ...
by david.gilbert
Thu Mar 20, 2003 5:38 pm
Forum: JFreeChart
Topic: Legend Chart
Replies: 1
Views: 2269

The only legend implementation at present is the StandardLegend class, and it just displays series names. You could write your own class to replace StandardLegend though...

Regards,

Dave Gilbert
by david.gilbert
Thu Mar 20, 2003 5:36 pm
Forum: JFreeChart
Topic: DateAxis -> Ignore weekends
Replies: 1
Views: 2459

Try searching for 'DateAxis' plus 'weekend'. You'll find this thread:

http://www.jfree.org/phpBB2/viewtopic.php?t=1909

Regards,

Dave Gilbert
by david.gilbert
Wed Mar 19, 2003 12:58 am
Forum: JFreeChart
Topic: API Refactoring
Replies: 4
Views: 4805

Re: API Refactoring

Hi Fran, Thanks for your post, I am very interested in what people think about the API. First, a minor one: Eliminate the down-casting convenience methods on JFreeChart that re-cast its Plot. (That is, getCategoryPlot() and getXYPlot()). -These are rather confusing, don't really add any convenience,...
by david.gilbert
Wed Mar 19, 2003 12:29 am
Forum: JFreeChart
Topic: help: error in function"Save as"
Replies: 5
Views: 7266

You don't say what the error was, but my guess is that it is a security policy exception, rather than anything to do with JFreeChart directly.

Regards,

Dave Gilbert