net.sf.jdmf.visualization.export
Class OutputDataExporter

java.lang.Object
  extended by net.sf.jdmf.visualization.export.OutputDataExporter

public class OutputDataExporter
extends java.lang.Object

Export the data mining model to other formats. Useful for GUIs using this library.

Author:
quorthon

Constructor Summary
OutputDataExporter()
           
 
Method Summary
 org.w3c.dom.svg.SVGDocument exportChartToSVG(org.jfree.chart.JFreeChart chart, java.lang.Integer width, java.lang.Integer height)
          Exports charts created using JFreeChart to SVG (which can be embedded in web pages or anywhere else).
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OutputDataExporter

public OutputDataExporter()
Method Detail

exportChartToSVG

public org.w3c.dom.svg.SVGDocument exportChartToSVG(org.jfree.chart.JFreeChart chart,
                                                    java.lang.Integer width,
                                                    java.lang.Integer height)
Exports charts created using JFreeChart to SVG (which can be embedded in web pages or anywhere else).

Parameters:
chart - the chart being exported
width - the width of the SVG
height - the height of the SVG
Returns:
SVG document
See Also:
ChartGenerator