Visualization
    Preparing search index...

    Interface DataViewRow

    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 extends DataViewValueType>(
            axisName: string,
        ): DataViewContinuousValue<T>;
        isMarked(): boolean;
        mark(operation?: MarkingOperation): void;
    }
    Index

    Methods

    • Gets a value indicating whether this row is marked.

      Returns boolean