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

Properties

Methods

Properties

dataType: DataType

Gets the data type of this instance.

name: string

Gets the name of this instance.

Methods