Packagecom.flexmonster.pivot.model.export
Classpublic class ExportType
InheritanceExportType Inheritance Object

The ExportType class provides values for export types.



Public Methods
 MethodDefined By
  
validType(type:String):Boolean
[static] Validator to check if export type is valid.
ExportType
Public Constants
 ConstantDefined By
  CSV : String = csv
[static] Export report data to CSV file.
ExportType
  EXCEL : String = excel
[static] Export Pivot Grid to Excel.
ExportType
  HTML : String = html
[static] Export Pivot Grid or Chart to HTML table.
ExportType
  IMAGE : String = image
[static] Export Pivot Grid or Chart to Image.
ExportType
  JSON : String = json
[static]
ExportType
  PDF : String = pdf
[static] Export Pivot Grid or Chart to PDF.
ExportType
Method Detail
validType()method
public static function validType(type:String):Boolean

Validator to check if export type is valid.

Parameters

type:String — export type

Returns
Booleantrue if export type is valid, false if export type is invalid
Constant Detail
CSVConstant
public static const CSV:String = csv

Export report data to CSV file.

Data exported as CSV file.

EXCELConstant 
public static const EXCEL:String = excel

Export Pivot Grid to Excel.

Whole grid is exported to Excel file.

HTMLConstant 
public static const HTML:String = html

Export Pivot Grid or Chart to HTML table.

Whole grid or chart is exported to HTML file.

IMAGEConstant 
public static const IMAGE:String = image

Export Pivot Grid or Chart to Image.

Only viewed area is exported.

JSONConstant 
public static const JSON:String = json

PDFConstant 
public static const PDF:String = pdf

Export Pivot Grid or Chart to PDF.

Whole grid or chart is exported to PDF file.