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> {
    dataType: DataType;
    isList: boolean;
    name: string;
    set(value: null | T | T[]): void;
    value<T2>(): null | T2;
    valueList<T2>(): T2[];
}

Type Parameters

Hierarchy (view full)

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