Visualization
    Preparing search index...

    Interface DataViewContinuousValue<T>

    Represents a value of a continuous axis for one row in a data view.

    interface DataViewContinuousValue<
        T extends DataViewValueType = DataViewValueType,
    > {
        formattedValue(): string;
        value<T2 extends DataViewValueType = T>(): null | T2;
    }

    Type Parameters

    Index

    Methods

    • Gets a formatted string that can be used to display this value. The formatting settings in Spotfire are used to create this string.

      Returns string

    • Gets the value of this instance. The type depending on the type of the expression on the associated DataViewContinuousAxis.

      This method will return null when the underlying data value is missing or invalid.

      Type Parameters

      Returns null | T2