page « JFreeChart « JSP-Servlet Q&A





1. jfreechart along with other data in a web page    stackoverflow.com

I have created a chart and converted the chart into an image and displaying it using a servlet using this code :

OutputStream out = p_resp.getOutputStream();

       ...

2. XY chart on jsp page    jfree.org

3. Add a graphic in a jsp page    jfree.org

4. Reg Multiplechart display in JSP page    jfree.org

First do the work to put one plot on a page. To do that you can either find some examples here in the forum or better yet, purchase the manual which will let you cut/paste. When you get that accomplished try adding your second plot (there isn't anything special to add another once you get one). Then, when you have a ...