Search found 11213 matches

by david.gilbert
Tue Mar 05, 2019 9:51 pm
Forum: JFreeChart
Topic: Problem while loading
Replies: 4
Views: 8110

Re: Problem while loading

First, please post the exact exception message you see. Second, perhaps try a more recent version of JFreeChart (1.0.14 is quite old).
by david.gilbert
Sat Mar 02, 2019 8:54 pm
Forum: JFreeChart
Topic: hi there, i hope you can help !
Replies: 1
Views: 4614

Re: hi there, i hope you can help !

Did you see the setUpperBound() method?
by david.gilbert
Sat Mar 02, 2019 8:53 pm
Forum: JFreeChart
Topic: question about display Z-Axis ?
Replies: 1
Views: 4593

Re: question about display Z-Axis ?

No, not in JFreeChart. But you can do this in Orson Charts, another chart library I wrote:

https://github.com/jfree/orson-charts
by david.gilbert
Wed Feb 27, 2019 6:40 am
Forum: JFreeChart
Topic: Graph Time and Point label distorted
Replies: 8
Views: 13757

Re: Graph Time and Point label distorted

I guess the permissions on your dropbox don't allow others to access the image. Can you upload it somewhere else?
by david.gilbert
Sun Feb 24, 2019 8:41 pm
Forum: JFreeChart
Topic: Top những mẫu đồng hồ treo tường “hot” nhất hiện nay
Replies: 0
Views: 8936

Re: JFreeChart Integration with ExtJS

ExtJS is a JavaScript framework and JFreeChart is a Java charting library...so there isn't a lot in common between them.
by david.gilbert
Mon Feb 11, 2019 5:46 pm
Forum: JFreeSVG
Topic: JFreeSVG 3.4
Replies: 0
Views: 33011

JFreeSVG 3.4

A new version of JFreeSVG has been uploaded to the Maven Central Repository. From the README file: Version 3.4 (10 February 2019) - added attribute for font size units override; - added automatic module name (org.jfree.jfreesvg); - omit transformation if it is the identity transform; - fixed drawStr...
by david.gilbert
Fri Dec 07, 2018 2:51 am
Forum: JCommon
Topic: Which version jfreechart and jcommon jar files should I use for JDK 1.6
Replies: 1
Views: 29225

Re: Which version jfreechart and jcommon jar files should I use for JDK 1.6

Use the latest version, JFreeChart is still compiling and running with Java 6. If you want JavaFX support, then you'll need Java 8.
by david.gilbert
Fri Dec 07, 2018 2:49 am
Forum: JFreeSVG
Topic: org.apache.batik
Replies: 1
Views: 22389

Re: org.apache.batik

No. You can use Batik to generate SVG output, although I would recommend JFreeSVG as a smaller, faster and simpler dependency.
by david.gilbert
Fri Dec 07, 2018 2:48 am
Forum: JFreeChart
Topic: unfamiliar jar files
Replies: 4
Views: 8685

Re: unfamiliar jar files

I'm not actively supporting the SWT code for JFreeChart, but you'll find all the latest status in these projects at GitHub:
by david.gilbert
Tue Aug 14, 2018 9:17 pm
Forum: JFreeChart
Topic: @admins: When is spam spam?
Replies: 1
Views: 4978

Re: @admins: When is spam spam?

Yes, I'm dealing with it whenever I have the time. Super annoying.
by david.gilbert
Mon Jul 16, 2018 8:05 pm
Forum: JFreeChart
Topic: legend items???
Replies: 1
Views: 4133

Re: legend items???

Are you using the LegendTitle class? It has a setSortOrder() method.
by david.gilbert
Mon Jul 16, 2018 8:01 pm
Forum: JFreeChart
Topic: NetBeans with Batik 1.6
Replies: 1
Views: 4171

Re: NetBeans with Batik 1.6

Unless you have a strong reason for wanting to use Batik, I would recommend JFreeSVG - it is a simpler dependency, much smaller jar file, and the code runs faster:

http://www.object-refinery.com/blog/blog-20140423.html
by david.gilbert
Wed Jul 11, 2018 10:50 pm
Forum: JFreeSVG
Topic: need help?
Replies: 1
Views: 24222

Re: need help?

On the JFreeSVG home page:

http://www.jfree.org/jfreesvg/

...you will see this link to the alternative license that is available:

http://www.jfree.org/jfreesvg/jfreesvg-licence-1.0.pdf

...and this link to purchase:

https://object-refinery.myshopify.com/p ... on-licence
by david.gilbert
Thu Jul 05, 2018 5:39 am
Forum: FXGraphics2D
Topic: FXGraphics2D 1.7
Replies: 0
Views: 23081

FXGraphics2D 1.7

Version 1.7 has been released, this fixes a bug where multiple calls to the setClip() method caused font and color attributes to be lost. The code is available from the Maven Central Repository: <dependency> <groupId>org.jfree</groupId> <artifactId>fxgraphics2d</artifactId> <version>1.7</version> </...
by david.gilbert
Sun Jun 17, 2018 5:02 pm
Forum: JFreeChart
Topic: JFreeChart's ChartViewer is not filling the entire tab space
Replies: 0
Views: 4276

Re: JFreeChart's ChartViewer is not filling the entire tab space

I think all you need to add is: chartViewer.setPrefHeight(300); ...because the preferred width and height of the ChartViewer are defaulting to 0. You could also consider removing the VBox and second anchor pane, and add the ChartViewer directly to the first AnchorPane: tab.setContent(anchorPane); //...