Visualization
    Preparing search index...

    Interface DataTable

    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 Summary)

    Index

    Properties

    columnCount: number

    Gets the number of columns in this instance.

    name: string

    Gets the name of this instance.

    Methods