Search found 10 matches

by stu
Thu Oct 30, 2008 12:02 pm
Forum: JFreeChart
Topic: XYBarRender issues after upgrade to 1.0.11
Replies: 5
Views: 8825

I've just found that switching back to the legacy theme has given me the borders back!

Thanks again for your help RugWarrior 8)
by stu
Thu Oct 30, 2008 10:48 am
Forum: JFreeChart
Topic: XYBarRender issues after upgrade to 1.0.11
Replies: 5
Views: 8825

Hi RugWarrior, thanks for the quick reply. Believe me I'd done a lot of searching but all my emphasis was on XYBarRenderer so I totally missed the fake 3d post. Many thanks for the heads up though! I can live with the shadows until 1.0.12. Any timescales on that btw? And that just leaves the borders...
by stu
Wed Oct 29, 2008 6:52 pm
Forum: JFreeChart
Topic: XYBarRender issues after upgrade to 1.0.11
Replies: 5
Views: 8825

XYBarRender issues after upgrade to 1.0.11

I've just upgraded from 1.0.6 to 1.0.11 and have found three problems with an existing chart that uses XYBarRenderer. These may be bugs or they could be new features of the API that I'm not familiar with. Either way, your help would be greatly appreciated. I'm using a very basic XYBarRenderer that o...
by stu
Fri May 23, 2008 9:02 am
Forum: JFreeChart
Topic: Tooltip problem with XYLineAndShapeRenderer
Replies: 3
Views: 4518

Roy, David, thanks for the quick reply 8) I'll monitor the bug and retest when its fixed.
by stu
Thu May 22, 2008 10:12 am
Forum: JFreeChart
Topic: Tooltip problem with XYLineAndShapeRenderer
Replies: 3
Views: 4518

Tooltip problem with XYLineAndShapeRenderer

I have a chart that uses XYLineAndShapeRenderer and plots a series a points with custom shapes like this: renderer.setSeriesShape(0, new Rectangle2D.Double(-3, -3, 6, 6)); Tooltips are then generated like this: renderer.setBaseToolTipGenerator(new StandardXYToolTipGenerator()); renderer.setURLGenera...
by stu
Wed Nov 14, 2007 3:18 pm
Forum: JFreeChart
Topic: Using a String to represent points instead of a Shape
Replies: 0
Views: 2039

Using a String to represent points instead of a Shape

I have a slightly unusual requirement where I want to specifiy that a renderer uses a String for plotting XY points. For example, there are some useful unicode characters like the Male and Female symbols which are easy to represent as a String: new Character('\u2642').toString() This String can then...
by stu
Fri Nov 09, 2007 5:56 pm
Forum: JFreeChart
Topic: Using Tooltips with the XYDotRenderer
Replies: 2
Views: 3210

Ah, that makes sense. I'll switch back to the XYLineAndShapeRenderer and use custom Shapes.
by stu
Fri Nov 09, 2007 12:30 pm
Forum: JFreeChart
Topic: Using Tooltips with the XYDotRenderer
Replies: 2
Views: 3210

Using Tooltips with the XYDotRenderer

I have a chart that was using XYLineAndShapeRenderer along with the StandardXYToolTipGenerator and everything worked fine.

When I switched the renderer to the XYDotRenderer the tooltips stopped working and the imagemap doesn't get generated.

Can anyone explain what I'm doing wrong?
by stu
Wed Aug 03, 2005 4:49 pm
Forum: JFreeChart
Topic: How to make a "legend" for long category names?
Replies: 4
Views: 4441

I am trying to solve the exact same problem at the moment. I created a new LegendItemCollection and added it to the plot using setFixedLegendItems. Each LegendItem contains the long name of the truncated Category names. The problem now is that I want each LegendItem to be on its own line inside the ...
by stu
Mon Aug 01, 2005 2:47 pm
Forum: JFreeChart
Topic: How to reposition a tick label?
Replies: 1
Views: 2706

How to reposition a tick label?

Does anyone know if its possible to move a tick label? By default they are positioned centrally over the corresponding tick but what if I want to move it to the left of the tick?

I'm guessing its something to do with setTickLabelInsets() but I'm not really sure?

Thanks in advance :)