Search found 7 matches

by hardwickj
Tue Jan 16, 2007 6:03 pm
Forum: JFreeChart
Topic: Cannot generate an image map. What gives???
Replies: 10
Views: 19334

Geesh.....didn't we just get done talking about that?

Your doing pretty well at making me feel like a putz...
by hardwickj
Tue Jan 16, 2007 5:57 pm
Forum: JFreeChart
Topic: Cannot generate an image map. What gives???
Replies: 10
Views: 19334

I changed the code somewhat like the following: response.setContentType("image/png"); OutputStream out = response.getOutputStream(); ChartUtilities.writeChartAsPNG(out,chart,600,spacer); out.close(); // Stores imagemap html for JSP String imageMap = ChartUtilities.getImageMap("imageMap", info); and ...
by hardwickj
Tue Jan 16, 2007 5:28 pm
Forum: JFreeChart
Topic: Cannot generate an image map. What gives???
Replies: 10
Views: 19334

Excellent. Well this makes sense. I'll have to re-arrange the flow of my servlets a bit but this should be an easy fix.

Thanks for pointing out the obvious to me David :)
by hardwickj
Tue Jan 16, 2007 4:58 pm
Forum: JFreeChart
Topic: Cannot generate an image map. What gives???
Replies: 10
Views: 19334

K, seems simple enough. I was looking at all your sample ImageMapDemo code, and never saw anything do this.

Or let me guess, something such as ChartUtilities.writeChartAsPNG() hit's up the draw method?
by hardwickj
Tue Jan 16, 2007 4:35 pm
Forum: JFreeChart
Topic: Cannot generate an image map. What gives???
Replies: 10
Views: 19334

Cannot generate an image map. What gives???

I have been working on this servlet the past day and a half, and for whatever reason, I cannot get this to generate an image map. When I view the html source of its output, the <map id=etc..></map> tags are there, but there is no further information within them. Any ideas on what I am doing wrong?? ...
by hardwickj
Thu Jan 11, 2007 6:54 pm
Forum: JFreeChart
Topic: Changing BarChart bar colors. Is this possible?
Replies: 9
Views: 33694

Wow well that was rediculously easy. Works like a charm.

As for the subclass thing, I have done it so rarely in practice that I never even gave it a thought. Plus it doesn't help that I am still learning JFreeChart...
by hardwickj
Thu Jan 11, 2007 5:41 pm
Forum: JFreeChart
Topic: Changing BarChart bar colors. Is this possible?
Replies: 9
Views: 33694

Changing BarChart bar colors. Is this possible?

I am currently dynamically generating a horizontal bar chart based on risk values of track data. The higher the risk, the greater the value each item has. These risks fall into certain risk categories, ie. high, medium, low. Is there any way for me to change the color of individual bars to something...