Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/chart/Chart.java @ 299:d6c75171f1e9
Pass the xml document of the request to OutputTransition for more information about output formats of charts (png,jpeg).
gnv-artifacts/trunk@353 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 19 Nov 2009 17:54:18 +0000 |
parents | 3f43392df3f6 |
children | 9ba2cf8cad8d |
line wrap: on
line source
package de.intevation.gnv.chart; import java.io.IOException; import java.awt.image.BufferedImage; import org.jfree.chart.JFreeChart; /** * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> */ public interface Chart { public JFreeChart generateChart(); public BufferedImage exportPNG(int width, int height) throws IOException; public void exportSVG(); //TODO Change return value public void exportPDF(); //TODO Change return value }