Search found 20 matches

by ge0ffrey
Tue Jan 19, 2016 8:04 pm
Forum: JFreeChart
Topic: NumberAxis does not show axis labels when values too big
Replies: 7
Views: 10531

Re: NumberAxis does not show axis labels when values too big

Great to hear :)
I look forward to be able to send a Pull Request to JFreeChart!
by ge0ffrey
Tue Jan 19, 2016 10:08 am
Forum: JFreeChart
Topic: NumberAxis does not show axis labels when values too big
Replies: 7
Views: 10531

Re: NumberAxis does not show axis labels when values too big

The classpath jar hack-replacing in IntelliJ worked.

I verify that your commit for 1.0.20-pre fixes this issue:

Image

Thanks :)
by ge0ffrey
Tue Jan 19, 2016 9:55 am
Forum: JFreeChart
Topic: NumberAxis does not show axis labels when values too big
Replies: 7
Views: 10531

Re: NumberAxis does not show axis labels when values too big

Thanks for the quick fix David! I checked out the source from svn (any plans to move to github? ;) and build it with ant (any plans to move to maven (or gradle)? ;) but then I got lost on how to deploy the 1.0.20-SNAPSHOT to my local maven repository... I 'll check if I can hack-replace the jars in ...
by ge0ffrey
Mon Jan 18, 2016 4:39 pm
Forum: JFreeChart
Topic: NumberAxis does not show axis labels when values too big
Replies: 7
Views: 10531

Re: NumberAxis does not show axis labels when values too big

Thanks for taking a look. My number axis code (see above in my original post), uses a normal JFreeChart NumberAxis which does use NumberTickUnitSource in 1.0.19 (code proof below). // My code NumberAxis yAxis = new NumberAxis("Best score level 1"); // JFreeChart code public NumberAxis(String label) ...
by ge0ffrey
Fri Jan 15, 2016 11:54 am
Forum: JFreeChart
Topic: NumberAxis does not show axis labels when values too big
Replies: 7
Views: 10531

NumberAxis does not show axis labels when values too big

Our Y-Axis labels don't show up when the values become too big: https://issues.jboss.org/secure/attachment/12396742/yAxisLabelMissing.png Here's how we create our plot: NumberAxis yAxis = new NumberAxis("Best score level 1"); yAxis.setNumberFormatOverride(NumberFormat.getInstance(locale)); yAxis.set...
by ge0ffrey
Fri Oct 30, 2015 11:55 am
Forum: JFreeChart
Topic: How to remove outliers(small circle) from Box and Whisker
Replies: 4
Views: 9697

Re: How to remove outliers(small circle) from Box and Whiske

Such a flag (to draw outliers as part of the whiskers) would be welcome for me too. I am using box and whiskers for OptaPlanner metaheuristic benchmarks and the outliers are not considered ignorable , instead they are considered very important because they represent risk/opportunity. In case I want ...
by ge0ffrey
Tue Feb 10, 2015 1:10 pm
Forum: JFreeChart
Topic: Combined plot: use same label for 2 series in diff subplots
Replies: 2
Views: 4292

Combined plot: use same label for 2 series in diff subplots

Hi, I have a CombinedRangeXYPlot and I 'd like to use the same label in the legend for 2 series in different subplots. Currently I get different labels (and so different colors) for the 2 series, despite that they represent the same domain object (machine in my case). For the pseudo code below gives...
by ge0ffrey
Wed Aug 06, 2014 12:58 pm
Forum: JFreeChart
Topic: Automatic scaling of axis with numbers above trillion
Replies: 4
Views: 6976

Re: Automatic scaling of axis with numbers above trillion

Solved by upgrading to 1.0.19 :)
by ge0ffrey
Thu Jul 24, 2014 11:49 am
Forum: JFreeChart
Topic: Version 1.0.18 is not yet in maven central
Replies: 5
Views: 8046

Re: Version 1.0.18 is not yet in maven central

BTW, there's another way of doing it too: In your build.xml ANT script, add the ANT task to deploy the maven artifact of jcommon and jfreechart: http://maven.apache.org/ant-tasks/examples/install-deploy.html You'll still want to deploy to https://oss.sonatype.org/ (where it will end up on a staging ...
by ge0ffrey
Thu Jul 24, 2014 11:40 am
Forum: JFreeChart
Topic: Version 1.0.18 is not yet in maven central
Replies: 5
Views: 8046

Re: Version 1.0.18 is not yet in maven central

That sync usually takes 6 hours in my experience. If there was a staging repo, it needs to be closed and released (= 2 separate actions) before the syncing can start.
by ge0ffrey
Wed Jul 23, 2014 4:30 pm
Forum: JFreeChart
Topic: Version 1.0.18 is not yet in maven central
Replies: 5
Views: 8046

Version 1.0.18 is not yet in maven central

Hi guys, JFreeChart 1.0.18 (released a few weeks ago) is not yet in maven central. https://repository.sonatype.org/index.html#nexus-search;gav~org.jfree~jfreechart~~~~kw,versionexpand which makes it cumbersome to consume for maven/gradle/buildr/ivy users (basically everybody who's not using plain AN...
by ge0ffrey
Tue Jul 08, 2014 1:19 pm
Forum: JFreeChart
Topic: Automatic scaling of axis with numbers above trillion
Replies: 4
Views: 6976

Re: Automatic scaling of axis with numbers above trillion

Thanks.
I'll start with updating to 1.0.18 and work my way from there.
JFreeChart is wonderful :)
by ge0ffrey
Mon Jul 07, 2014 10:45 am
Forum: JFreeChart
Topic: Automatic scaling of axis with numbers above trillion
Replies: 4
Views: 6976

Automatic scaling of axis with numbers above trillion

This doesn't look pretty (JFreeChart 1.0.14): https://issues.jboss.org/secure/attachment/12383517/jfreechart_axis_bug.png Is there any way make this look pretty? Is there any support for BigDecimal YXDatasets ? Used code for the axis: private XYPlot createPlot(BenchmarkReport benchmarkReport, int sc...
by ge0ffrey
Thu Dec 08, 2011 4:55 pm
Forum: JFreeChart
Topic: JFreechart irc channel
Replies: 0
Views: 3025

JFreechart irc channel

Is there a JFreechart IRC channel? On irc.freenode.org preferably?
by ge0ffrey
Wed Oct 26, 2011 4:51 pm
Forum: JFreeChart
Topic: How to build JFreeChart from SVN
Replies: 24
Views: 24643

Re: How to build JFreeChart from SVN

Moving to github is really good idea. We did it and it significantly increasing the number of patches (as pull requests) we get.