Search found 483 matches

by matinh
Fri Nov 21, 2014 1:33 pm
Forum: JFreeChart
Topic: Why are not all the Bars in my Barchart red?
Replies: 8
Views: 9589

Re: Why are not all the Bars in my Barchart red?

To me this seems like a rendering artifact. The bars are quite small on the image. Did you try enlarging the chart?

hth,
- martin
by matinh
Thu Jul 24, 2014 10:06 am
Forum: JFreeChart
Topic: Version 1.0.18 is not yet in maven central
Replies: 5
Views: 5657

Re: Version 1.0.18 is not yet in maven central

Hi David! Just saw you staged JFreeChart 1.0.18 for Maven Central. Great. How was it going? I documented the process some time ago on the media-wiki at SourceForge. The URL was http://sourceforge.net/apps/mediawiki/jfreechart/index.php?title=Developer_Information#Deploy_a_release_to_the_Maven_Centra...
by matinh
Mon Mar 24, 2014 10:56 am
Forum: JFreeChart
Topic: JFreeChart 1.0.17 in Maven Central
Replies: 4
Views: 5957

Re: JFreeChart 1.0.17 in Maven Central

Hi!

I'm quite busy these days, so I definitively won't do this within the next one or two weeks. I could possibly have a look somewhen in april but don't rely on it.

- martin
by matinh
Wed Feb 12, 2014 9:52 am
Forum: JFreeChart
Topic: JFreeChart 1.0.17
Replies: 9
Views: 14636

Re: JFreeChart 1.0.17

JFreeChart 1.0.17 and JCommon 1.0.21 have been uploaded to Maven Central. See this announcement for further details.

- martin
by matinh
Wed Feb 12, 2014 9:50 am
Forum: JFreeChart
Topic: JFreeChart 1.0.17 in Maven Central
Replies: 4
Views: 5957

JFreeChart 1.0.17 in Maven Central

Hi there! As people were already asking for uploading recent JFreeChart versions to maven central , I decided to take this task (once more :)). So this is an announcement, that JCommon 1.0.21 and JFreeChart 1.0.17 are uploaded to maven central repository and will be available after Sonatype's OSS re...
by matinh
Thu Nov 14, 2013 9:21 am
Forum: JFreeChart
Topic: Range axis problem, data are not visible
Replies: 6
Views: 7522

Re: Range axis problem, data are not visible

Not from my side. But the bug-report is closed. So please try with the latest version (1.0.16 currently) and if there is still a problem, create a new bug-report and link to this forum post.
A small demo for reproducing the problem would be nice to be included in the bug report.

thx,
- martin
by matinh
Tue Oct 22, 2013 9:23 am
Forum: JFreeChart
Topic: JfreeChart 1.0.16 dependencies
Replies: 6
Views: 6060

Re: JfreeChart 1.0.16 dependencies

Hi Rob!

Your are right. But this has already been fixed in SVN.

Thanks anyway,
- martin
by matinh
Mon Oct 14, 2013 7:46 am
Forum: JFreeChart
Topic: What IDE is recommended for the sample apps
Replies: 4
Views: 5060

Re: What IDE is recommended for the sample apps

Try this. The first three hits are the most famous ones.
by matinh
Fri Oct 11, 2013 2:00 pm
Forum: JFreeChart
Topic: How do you test these charts in a browser?
Replies: 1
Views: 2480

Re: How do you test these charts in a browser?

This is not really JFreeChart related. However, AFAIK testing image manipulation (or creation) works via comparing files.
See this stackoverflow question for further details.

hth,
- martin
by matinh
Fri Oct 11, 2013 1:55 pm
Forum: JFreeChart
Topic: setMinorTickCount don´t work
Replies: 1
Views: 2809

Re: setMinorTickCount don´t work

Quite a while since I last used the PeriodAxis, so don't expect to much. But as far as I remember PeriodAxis just works completely different. You have to provide multiple PeriodAxisLabelInfo instances to get more or less tickmarks. AFAIR real minor-tick--marks are not supported by the PeriodAxis. ht...
by matinh
Fri Oct 11, 2013 1:50 pm
Forum: JFreeChart
Topic: What IDE is recommended for the sample apps
Replies: 4
Views: 5060

Re: What IDE is recommended for the sample apps

The IDE shouldn't matter. But Android does matter! Using them on any classic PC system should work.
Search this forum for "android" or "afreechart" to find some related information.

- martin
by matinh
Fri Oct 11, 2013 1:47 pm
Forum: JFreeChart
Topic: Major and minor Tick Units in DateAxis
Replies: 2
Views: 3635

Re: Major and minor Tick Units in DateAxis

This should work!
Did you set the tickmarks to be visible via setMinorTickMarksVisible()?

If this doesn't help, try to send a simple, self-contained example that demonstrates the problem.

- martin
by matinh
Wed Oct 02, 2013 9:07 am
Forum: JFreeChart
Topic: JfreeChart 1.0.16 dependencies
Replies: 6
Views: 6060

Re: JfreeChart 1.0.16 dependencies

Hi David! There is the tool animals-sniffer that is already configured in the Maven pom.xml to check for Java 1.4 compatibility. It should only need minor modifications to verify Java 1.6 compatibility. This is already documented in the wiki and was mentioned in a mail to the dev-list from 2012-07-0...
by matinh
Tue Aug 13, 2013 8:33 am
Forum: JFreeChart
Topic: ParamChecks.nullNotPermitted()
Replies: 6
Views: 5753

Re: ParamChecks.nullNotPermitted()

As far as I understand correctly, the jsr305 jar can be added as an optional dependency - it does not need to be distributed with JFreeChart. The code will work fine even if this jar is not available. That's only half-true. You wouldn't need the dependency at runtime, but you will need it at compil...
by matinh
Wed Aug 07, 2013 10:01 am
Forum: JFreeChart
Topic: ParamChecks.nullNotPermitted()
Replies: 6
Views: 5753

Re: ParamChecks.nullNotPermitted()

There is an old but good article about this topic available. According to this article it was planed for Java 7. But AFAIK it didn't make it into it. Maybe Java 8. However, there is a reference implementation at google (with almost no documentation) which seems to be used at least by FindBugs. So it...