Represents a data table in the Spotfire document.

interface DataTable {
    columnCount: number;
    name: string;
    column(name: string): ReadableProxy<Column>;
    columns(): Readable<Column[]>;
    properties(): Readable<AnalysisPropertyValue<AnalysisPropertyDataType>[]>;
    property(name: string): Readable<AnalysisPropertyValue<AnalysisPropertyDataType>>;
}

Hierarchy (view full)

Properties

columnCount: number

Gets the number of columns in this instance.

name: string

Gets the name of this instance.

Methods