Represents a data table in the Spotfire document.

interface DataTable {
    columnCount: number;
    id: string;
    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.

id: string

Gets the unique id for this instance. The id is stable during the data table life cycle, thus it can be used to store as a reference to this data table in a ModProperty or AnalysisProperty.

1.1

name: string

Gets the name of this instance.

Methods