Search found 483 matches

by matinh
Thu May 23, 2013 11:06 am
Forum: JFreeChart
Topic: XYStepRenderer Center Item Label on the Step
Replies: 1
Views: 2660

Re: XYStepRenderer Center Item Label on the Step

Hi! It is only possible to adopt where the step should be made via setStepPoint() . The position of the label itself is currently fixed. This would be a useful extension to the XYStepRenderer. Please file a feature request here and provide a patch if possible. If you want to have a go, start with ov...
by matinh
Fri Apr 12, 2013 8:09 am
Forum: JFreeChart
Topic: Horizontal Bar Chart: Display values at end of bar
Replies: 1
Views: 2541

Re: Horizontal Bar Chart: Display values at end of bar

Hi!

Use an XYTextAnnotation or CategoryTextAnnotation to display arbitrary text wherever you like. To find out the max-value of all bars, just iterate through your dataset.

hth,
- martin
by matinh
Wed Mar 27, 2013 11:06 am
Forum: JFreeChart
Topic: Hi-lo value between two line graph
Replies: 4
Views: 4345

Re: Hi-lo value between two line graph

I don't think so, but I never used this renderer myself.
You could either try to extend the renderer or, you could use XYTextAnnotations to output the required values.

- martin
by matinh
Wed Mar 27, 2013 10:10 am
Forum: JFreeChart
Topic: dataset with two timeseries, one empty
Replies: 2
Views: 3958

Re: dataset with two timeseries, one empty

This is probably due to bug #3445507, which is already fixed in SVN. You could either use an older version of JFreeChart or a 1.0.15-SNAPSHOT version from here.

hth,
- martin
by matinh
Wed Mar 27, 2013 9:45 am
Forum: JFreeChart
Topic: Hi-lo value between two line graph
Replies: 4
Views: 4345

Re: Hi-lo value between two line graph

Hi!

There is the XYDifferenceRenderer to show differences of two series.

hth,
- martin
by matinh
Thu Mar 14, 2013 9:07 am
Forum: JFreeChart
Topic: Polar Chart : rotate axis line
Replies: 2
Views: 4876

Re: Polar Chart : rotate axis line

Hi! You don't mention the used version of JFreeChart but JFreeChart 1.0.14 got some improvements for polarcharts. You can set an angle-offset via PolarPlot.setAngleOffset() which allows to start with 12am at whatever position you like. However, the axes themselves cannot be at arbitrary angles but o...
by matinh
Thu Mar 14, 2013 8:39 am
Forum: JFreeChart
Topic: Bug - AutoRange in TimeSeriesChart
Replies: 13
Views: 14767

Re: Bug - AutoRange in TimeSeriesChart

Hi!

You have three possibilities:
  1. either you checkout JFreeChart from it's source repository (which is described on this wiki page).
  2. or use a 1.0.15-SNAPSHOT from this maven repository.
  3. or wait for the 1.0.15 release to happen. But please don't ask when it is expected ;-)
hth,
- martin
by matinh
Thu Jan 17, 2013 8:26 am
Forum: JFreeChart
Topic: Jfree chart and OpenSDK Issue
Replies: 2
Views: 3577

Re: Jfree chart and OpenSDK Issue

Sound's like an anti-aliasing issue. Try turning anti-aliasing off via the RenderingKeys as mentioned here.

Example:

Code: Select all

chart.getRenderingHints().add(new RenderingHints(RenderingHints.KEY_TEXT_ANTIALIASING,RenderingHints.VALUE_TEXT_ANTIALIAS_OFF));
hth,
- martin
by matinh
Fri Jan 11, 2013 7:21 am
Forum: JFreeChart
Topic: Spam in 2013
Replies: 7
Views: 9047

Re: Spam in 2013

Hi David! I also realized the increased spam messages and am (more or less) regularly deleting spam posts. However, I don't think we will benefit much from the new account activation procedure. An admin cannot tell in advance if a new user is malicious or not. So he would have to grant permission to...
by matinh
Tue Jan 08, 2013 9:25 am
Forum: JFreeChart
Topic: Is JFree charts provide geographical Charts ?
Replies: 1
Views: 2609

Re: Is JFree charts provide geographical Charts ?

Hi!

See this thread for more information about geographical charts. This is however not included in 1.0.14 and probably won't be in 1.0.15. I still hope we can integrate it sooner or later with the official release.

hth,
- martin
by matinh
Thu Dec 06, 2012 4:54 pm
Forum: JFreeChart
Topic: Help needed getting setItemMargin(0.0) to work ........
Replies: 8
Views: 10292

Re: Help needed getting setItemMargin(0.0) to work ........

What exactly is your problem? "Stopped working" is not very helpful.
Regarding the IntervalMarker: run the demo and have a look at the examples in Miscellaneous/Markers.

- martin
by matinh
Thu Dec 06, 2012 9:47 am
Forum: JFreeChart
Topic: ValueAxis inside data area.
Replies: 4
Views: 4683

Re: ValueAxis inside data area.

Yes, that's what I mean. And you can use drawZeroDomainBaseline() and drawZeroRangeBaseline() and related methods for setting the paint.

hth,
- martin
by matinh
Tue Dec 04, 2012 12:02 pm
Forum: JFreeChart
Topic: ValueAxis inside data area.
Replies: 4
Views: 4683

Re: ValueAxis inside data area.

Hi! To my knowledge there is currently no support for drawing axis inside the XYPlot (PolarPlot has it, but that's probably not what you want). But you have the possibility to draw the axis on the plot's edges and add zero baselines. What you do not get this way is moving the labels and ticks inside...
by matinh
Wed Nov 28, 2012 11:10 am
Forum: JFreeChart
Topic: [SOLVED][1.0.14] Plot remains empty on empty series [BUG]
Replies: 3
Views: 4281

Re: [SOLVED][1.0.14] Plot remains empty on empty series [BUG

You can try a recent SNAPSHOT from https://oss.sonatype.org/content/reposi ... -SNAPSHOT/. I just uploaded a new version.

hth,
- martin
by matinh
Wed Nov 21, 2012 10:00 am
Forum: JFreeChart
Topic: Looking for ways to update JFreePieCharts on the fly
Replies: 1
Views: 2642

Re: Looking for ways to update JFreePieCharts on the fly

Hi!

If you use the default dataset implementations, that happens automatically.
If you implemented your own dataset you have to notify the listeners. Have a look at the AbstractDataset.fireDatasetChanged() method for details.

hth,
- martin