Search found 11213 matches
- Tue Mar 05, 2019 9:51 pm
- Forum: JFreeChart
- Topic: Problem while loading
- Replies: 4
- Views: 6269
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).
- Sat Mar 02, 2019 8:54 pm
- Forum: JFreeChart
- Topic: hi there, i hope you can help !
- Replies: 1
- Views: 3489
Re: hi there, i hope you can help !
Did you see the setUpperBound() method?
- Sat Mar 02, 2019 8:53 pm
- Forum: JFreeChart
- Topic: question about display Z-Axis ?
- Replies: 1
- Views: 3396
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
https://github.com/jfree/orson-charts
- Wed Feb 27, 2019 6:40 am
- Forum: JFreeChart
- Topic: Graph Time and Point label distorted
- Replies: 8
- Views: 11038
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?
- 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: 7145
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.
- Mon Feb 11, 2019 5:46 pm
- Forum: JFreeSVG
- Topic: JFreeSVG 3.4
- Replies: 0
- Views: 17223
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: 13245
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: 7403
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: 6717
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: 4073
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: 3446
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: 3466
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: 8985
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: 7702
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: 3636
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); //...