Interface DataViewContinuousValue<T>

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

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

Type Parameters

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