Visualization
    Preparing search index...

    Interface AnalysisProperty<T>

    Represents a property owned by the Spotfire document. These can be either document properties, data table properties or data column properties.

    interface AnalysisProperty<
        T extends AnalysisPropertyDataType = AnalysisPropertyDataType,
    > {
        dataType: DataType;
        isList: boolean;
        name: string;
        set(value: null | T | T[]): void;
        value<T2 extends AnalysisPropertyDataType>(): null | T2;
        valueList<T2 extends AnalysisPropertyDataType>(): T2[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    dataType: DataType

    Get the Spotfire internal data type of the property.

    isList: boolean

    Gets a value indicating whether the property is a list.

    name: string

    Gets the name of this instance.

    Methods

    • Set the value of this instance.

      Parameters

      • value: null | T | T[]

        The value to set.

      Returns void