Search found 4 matches
- Thu Dec 28, 2006 3:59 pm
- Forum: JFreeChart
- Topic: Problem with servlet utilities
- Replies: 7
- Views: 9641
- Wed Dec 27, 2006 4:09 pm
- Forum: JFreeChart
- Topic: Problem with servlet utilities
- Replies: 7
- Views: 9641
- Tue Dec 26, 2006 10:27 am
- Forum: JFreeChart
- Topic: Problem with servlet utilities
- Replies: 7
- Views: 9641
yes, you're right. Here is the code of ServletUtilities.registerChartForDeletion(...) 310 ChartDeleter chartDeleter = (ChartDeleter) Session.getAttribute("JFreeChart_Deleter"); 311 if (chartDeleter == null) { 312 chartDeleter = new ChartDeleter(); 313 session.setAttribute("JFreeChart_Deleter", chart...
- Fri Dec 22, 2006 4:24 pm
- Forum: JFreeChart
- Topic: Problem with servlet utilities
- Replies: 7
- Views: 9641
Problem with servlet utilities
hello everybody, i'm a new jfreechart user, i'm tring to save charts using ServletUtilities class. Here is my code : try { result = ServletUtilities.saveChartAsJPEG(chart, WIDTH, HEIGHT, session); result = "./DisplayChart?filename=" + result ; LOG.debug("chart sauvé à l'adresse : "+result) ; } catch...