com.steema.teechart.exports
Class Exports.DataExport

java.lang.Object
  extended by com.steema.teechart.exports.Exports.DataExport
Enclosing class:
Exports

public final class Exports.DataExport
extends java.lang.Object


Constructor Summary
Exports.DataExport()
           
 
Method Summary
 ExcelFormat getExcel()
          Export Chart as Excel spreadsheet
 HTMLFormat getHTML()
          Export Chart as HTML table
 TextFormat getText()
          Export Chart as text Example: myChart.getExport().getData().getText().save(tmpName);
 XMLFormat getXML()
          Export Chart to XML data format
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Exports.DataExport

public Exports.DataExport()
Method Detail

getXML

public XMLFormat getXML()
Export Chart to XML data format

Returns:
XMLFormat

getText

public TextFormat getText()
Export Chart as text

Example:


 myChart.getExport().getData().getText().save(tmpName);
 

Returns:
TextFormat

getHTML

public HTMLFormat getHTML()
Export Chart as HTML table

Returns:
HTMLFormat

getExcel

public ExcelFormat getExcel()
Export Chart as Excel spreadsheet

Returns:
ExcelFormat