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 ...
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) ...
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...
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 ...
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...
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 ...
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.
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...
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...