Interface Dataset

interface Dataset {
    axisCount(): number;
    fetchAsObject(): any;
    getAxis(nameOrIndex): Axis;
    getCellset(): Cellset;
    getColumnAxis(): Axis;
    getRowAxis(): Axis;
    hasAxis(nameOrIndex): boolean;
    hasColumnAxis(): boolean;
    hasRowAxis(): boolean;
}

Methods

Generated using TypeDoc