Interface DataViewContinuousAxis

Represents metadata computed for continuous Axis.

interface DataViewContinuousAxis {
    dataType: DataType;
    isCategorical: boolean;
    name: string;
}

Hierarchy (view full)

Properties

dataType: DataType

Gets the data type of the values computed by this axis.

isCategorical: boolean

Gets a value indicating whether this axis is an instance of DataViewContinuousAxis or DataViewCategoricalAxis .

name: string

Gets the name of this axis.