Search found 11213 matches

by david.gilbert
Fri Nov 17, 2017 12:07 am
Forum: Orson Charts
Topic: Orson Charts 1.7 / Orson Charts FX 1.0
Replies: 0
Views: 27656

Orson Charts 1.7 / Orson Charts FX 1.0

Orson Charts 1.7 has been released, along with a new project Orson Charts FX 1.0 that contains extensions that allow Orson Charts to be used with JavaFX. Version 1.7 : 17-Nov-2017 [*] removed JavaFX support to a separate project Orson Charts FX; [*] fixed cell content bug in GridElement; [*] fixed b...
by david.gilbert
Mon Nov 13, 2017 9:30 pm
Forum: JFreeChart
Topic: Issue with LogAxis and minor grid lines
Replies: 4
Views: 5631

Re: Issue with LogAxis and minor grid lines

The auto tick unit selection can probably be fixed by changing the code here: public LogAxis(String label) { super(label, new NumberTickUnitSource()); setDefaultAutoRange(new Range(0.01, 1.0)); this.tickUnit = new NumberTickUnit(1.0, new DecimalFormat("0.#"), 9); } In the call to super(), the Number...
by david.gilbert
Mon Nov 13, 2017 9:23 pm
Forum: JFreeChart
Topic: Change Y axis location in a Bar Chart
Replies: 3
Views: 4769

Re: Change Y axis location in a Bar Chart

It's the labels that are problematic - the code is all written under the assumption that the labels are on the left or right side, never in the middle of the chart. Your client will have to have their "expectations managed" :)
by david.gilbert
Mon Nov 13, 2017 9:21 pm
Forum: FXGraphics2D
Topic: Java Magazine Article
Replies: 2
Views: 36016

Re: Java Magazine Article

Ha! I had a copy on my PC at work...so (temporarily) I've uploaded it - see the link on the original post. I've pinged Oracle to see if they have an official download link (so far I can only see archived editions back to 2015).
by david.gilbert
Mon Nov 13, 2017 8:49 pm
Forum: JFreeChart
Topic: Change Y axis location in a Bar Chart
Replies: 3
Views: 4769

Re: Change Y axis location in a Bar Chart

This is just the way JFreeChart works, it isn't something you can change via the API (even modifying the source code, it wouldn't be a straightforward thing to achieve).
by david.gilbert
Sun Nov 12, 2017 11:46 pm
Forum: JFreeChart
Topic: Why my characters are so ugly?
Replies: 4
Views: 9220

Re: Why my characters are so ugly?

This is a feature where the ChartPanel keeps an offscreen image as a buffer for the charts it draws. Unfortunately it doesn't work well with retina displays, so for better output quality you should disable the buffering via the constructor.
by david.gilbert
Sun Nov 12, 2017 11:44 pm
Forum: JFreeChart
Topic: Migrating to 1.5.0
Replies: 4
Views: 14005

Re: Migrating to 1.5.0

Hans Horn wrote:There is a new JFreeChart version? How can I get it?
https://github.com/jfree/jfreechart
by david.gilbert
Tue Nov 07, 2017 11:35 pm
Forum: JFreeChart
Topic: Java Date and Time API
Replies: 4
Views: 5725

Re: Java Date and Time API

I'd like to make use of the API, but it is a fairly large task so I don't know when it would happen. The two obvious areas for incorporating these classes are the DateAxis (or some replacement) and the TimeSeries classes.
by david.gilbert
Tue Nov 07, 2017 6:25 pm
Forum: JFreeSVG
Topic: JFreeSVG 3.3
Replies: 0
Views: 28075

JFreeSVG 3.3

A new version of JFreeSVG has been uploaded to the Maven Central Repository. From the README file: Version 3.3 (7 November 2017) - the default DEFS key prefix should not begin with a number; - transferred demo code to the JFree-Demos project to streamline the distribution process. JFreeSVG is hosted...
by david.gilbert
Mon Nov 06, 2017 8:21 am
Forum: JFreeChart
Topic: Release Information is Confusing
Replies: 3
Views: 4662

Re: Release Information is Confusing

Yesterday I released JFreeChart 1.5.0, so now that's the latest release. Amongst other things, this release drops the requirement for JCommon (by moving a subset of the JCommon classes into the JFreeChart jar file) and moves JavaFX support into a separate project (JFreeChart-FX). In addition, the bu...
by david.gilbert
Sun Nov 05, 2017 11:41 am
Forum: JFreeChart
Topic: Release Information is Confusing
Replies: 3
Views: 4662

Re: Release Information is Confusing

You are right, it is confusing. The latest release for JFreeChart is 1.0.19 as of now (so the release tags are correct).
by david.gilbert
Sun Nov 05, 2017 11:38 am
Forum: JFreeChart
Topic: JavaFX Overlay
Replies: 2
Views: 4160

Re: JavaFX Overlay

Is it possible to add a crosshair overlay to a chart displayed using the JavaFX ChartViewer component? If not, is it anticipated? Yes it is possible, but with the so-far-unreleased code at GitHub. I am creating a new release of JFreeChart that has the JavaFX code stripped out (no JavaFX means that ...
by david.gilbert
Fri Oct 27, 2017 10:14 pm
Forum: JFreeChart
Topic: Java7 issues with jfreechart
Replies: 4
Views: 6099

Re: Java7 issues with jfreechart

This looks like a bug in Java2D, you should report it to Oracle and provide them details of the OS you are running on. Although first you should see if there is a later patch release available on your platform and also try JDK8 (or 9) to see if the bug is still there.
by david.gilbert
Fri Oct 27, 2017 10:07 pm
Forum: JFreeChart
Topic: Licensing question
Replies: 9
Views: 11218

Re: Licensing question

The servlet.jar file is in the distribution for sure, although it won't be in future releases. It is mentioned in the README.txt file: (c) servlet.jar - classes in the org.jfree.chart.servlet package require this file. The JFreeChart distribution includes the servlet.jar file distributed with Tomcat...
by david.gilbert
Fri Oct 27, 2017 3:44 pm
Forum: JFreeChart
Topic: Licensing question
Replies: 9
Views: 11218

Re: Licensing question

Hello,

I think you are mistaken. I don't recognise the file you mention, but in any case I downloaded the JFreeChart 1.0.17 release. The output from:

Code: Select all

jfreechart-1.0.17 dgilbert$ find . -name "*.dtd"
jfreechart-1.0.17 dgilbert$ 
...tells me there is no such file in the distribution.