My guess would be that this calls for a subclass of ClusteredXYBarRenderer that does some extra drawing (of the numeric value) on top of the bar. You'd override the drawItem method for that.
Ulf Dittmer wrote:My guess would be that this calls for a subclass of ClusteredXYBarRenderer that does some extra drawing (of the numeric value) on top of the bar. You'd override the drawItem method for that.
Can you explain a little more in detail?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
9
posted
0
Something like this:
Steve Dyke
Ranch Hand
Joined: Nov 16, 2004
Posts: 1260
posted
0
Maybe I am missing somthing and I am surely not questioning your advice and expertise. Is all this necessary just to do what I thought would be a simple, turn on or display x value labels.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
9
posted
0
Maybe I'm misunderstanding what you're trying to do. I interpreted "I need to display the x values on top of the bars in my chart. " to mean that you want the values to be drawn inside of the rectangle defined by each bar. Since FreeChart has no provisions for doing that, you'd have to go the route I outlined.
If you actually meant something else, please elaborate.
Out of the box, JFreeChart can only display values as part of an Axis, which can be left or right of a chart (for value axes) or above or below a chart (for domain axes); see the AxisLocation class for details.
Steve Dyke
Ranch Hand
Joined: Nov 16, 2004
Posts: 1260
posted
0
Right now my chart displays horizontal bars, seven sets of five bars. It is showing a weeks worth of department activity. What the Management wants to see in addition to what I have is the values of the bars also displayed above each bar.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
9
posted
0
You could check out what the AbstractRenderer.setBaseItemLabelsVisible
and setBasePositiveItemLabelPosition methods can do.
Steve Dyke
Ranch Hand
Joined: Nov 16, 2004
Posts: 1260
posted
0
Ulf Dittmer wrote:You could check out what the AbstractRenderer.setBaseItemLabelsVisible
and setBasePositiveItemLabelPosition methods can do.
Is there any way you could provide an example of this?