Visualization
    Preparing search index...

    Interface Column

    Represents a data column in a Spotfire data table.

    interface Column {
        dataType: DataType;
        name: string;
        properties(): Readable<AnalysisPropertyValue<AnalysisPropertyDataType>[]>;
        property(
            name: string,
        ): Readable<AnalysisPropertyValue<AnalysisPropertyDataType>>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    dataType: DataType

    Gets the data type of this instance.

    name: string

    Gets the name of this instance.

    Methods