Geesh.....didn't we just get done talking about that?
Your doing pretty well at making me feel like a putz...
Search found 7 matches
- Tue Jan 16, 2007 6:03 pm
- Forum: JFreeChart
- Topic: Cannot generate an image map. What gives???
- Replies: 10
- Views: 19334
- 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 ...
- Tue Jan 16, 2007 5:28 pm
- Forum: JFreeChart
- Topic: Cannot generate an image map. What gives???
- Replies: 10
- Views: 19334
- Tue Jan 16, 2007 4:58 pm
- Forum: JFreeChart
- Topic: Cannot generate an image map. What gives???
- Replies: 10
- Views: 19334
- 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?? ...
- Thu Jan 11, 2007 6:54 pm
- Forum: JFreeChart
- Topic: Changing BarChart bar colors. Is this possible?
- Replies: 9
- Views: 33694
- 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...