Search found 11163 matches
- Mon Feb 11, 2019 5:46 pm
- Forum: JFreeSVG
- Topic: JFreeSVG 3.4
- Replies: 0
- Views: 41
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...
- 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: 3167
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.
- Fri Dec 07, 2018 2:49 am
- Forum: JFreeSVG
- Topic: org.apache.batik
- Replies: 1
- Views: 733
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.
- Fri Dec 07, 2018 2:48 am
- Forum: JFreeChart
- Topic: unfamiliar jar files
- Replies: 4
- Views: 698
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:
- Tue Aug 14, 2018 9:17 pm
- Forum: JFreeChart
- Topic: @admins: When is spam spam?
- Replies: 1
- Views: 884
Re: @admins: When is spam spam?
Yes, I'm dealing with it whenever I have the time. Super annoying.
- Mon Jul 16, 2018 8:05 pm
- Forum: JFreeChart
- Topic: legend items???
- Replies: 1
- Views: 793
Re: legend items???
Are you using the LegendTitle class? It has a setSortOrder() method.
- Mon Jul 16, 2018 8:01 pm
- Forum: JFreeChart
- Topic: NetBeans with Batik 1.6
- Replies: 1
- Views: 671
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
http://www.object-refinery.com/blog/blog-20140423.html
- Wed Jul 11, 2018 10:50 pm
- Forum: JFreeSVG
- Topic: need help?
- Replies: 1
- Views: 2213
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
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
- Thu Jul 05, 2018 5:39 am
- Forum: FXGraphics2D
- Topic: FXGraphics2D 1.7
- Replies: 0
- Views: 858
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> </...
- Sun Jun 17, 2018 5:02 pm
- Forum: JFreeChart
- Topic: JFreeChart's ChartViewer is not filling the entire tab space
- Replies: 0
- Views: 750
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); //...
- Sat Jun 09, 2018 12:01 pm
- Forum: JFreeChart
- Topic: hi guy,i have a question,please help me!
- Replies: 0
- Views: 790
Re: hi guy,i have a question,please help me!
I would take a look at SimpleHistogramDataset, it is a different dataset implementation that allows for updates.
- Fri Jun 08, 2018 3:35 pm
- Forum: JFreeChart
- Topic: XYDataSeries does not update
- Replies: 2
- Views: 874
Re: XYDataSeries does not update
At some point (I think version 1.0.14) I changed the getDataItem() method to return a clone of the object to make it harder for the XYSeries to have its data values changed without triggering a SeriesChangeEvent.
- Thu Jun 07, 2018 6:41 pm
- Forum: JCommon
- Topic: J free Chart
- Replies: 1
- Views: 3834
Re: J free Chart
What is the exact error, because that message doesn't make a lot of sense. In any case, I would recommend updating to JFreeChart 1.0.19 or 1.5.0.
- Thu Jun 07, 2018 6:39 pm
- Forum: JCommon
- Topic: hi guy,i have a question,please help me!
- Replies: 1
- Views: 3822
Re: hi guy,i have a question,please help me!
Better is to make the jump to JFreeChart 1.5.0, then you don't need JCommon at all. But if you must use JFreeChart 1.0.x, then you'll see the JCommon dependency in the pom.xml <dependency> <groupId>org.jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.24</version> </dependency>
- Mon Jun 04, 2018 7:33 pm
- Forum: JFreeChart
- Topic: I am a new member and I need help from everyone.
- Replies: 0
- Views: 765
Re: I am a new member and I need help from everyone.
It's possible there was a bug somewhere along the way. The latest version is working, you should try to upgrade to the latest version of JFreeChart or compare the XYSeries and DatasetUtilities classes between the two versions to see what has changed.