Represents a row of data in a DataView. Each row can be thought of as a data point that the mod visualization renders.

interface DataViewRow {
    categorical(axisName: string): DataViewCategoricalValue;
    color(): DataViewColorInfo;
    continuous<T>(axisName: string): DataViewContinuousValue<T>;
    isMarked(): boolean;
    mark(operation?: MarkingOperation): void;
}

Methods

  • Gets a value indicating whether this row is marked.

    Returns boolean