All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.components.graphs.gauge.d.ts Maven / Gradle / Ivy

import { Component } from '../component';
import { RenderTypes } from '../../interfaces/enums';
export declare class Gauge extends Component {
    type: string;
    renderType: RenderTypes;
    arc: any;
    backgroundArc: any;
    getValue(): number;
    getValueRatio(): number;
    getDelta(): number;
    getArcRatio(): number;
    getArcSize(): number;
    getStartAngle(): number;
    getArrow(delta: any): string;
    render(animate?: boolean): void;
    /**
     * draws the value number associated with the Gauge component in the center
     */
    drawValueNumber(): void;
    /**
     * adds the delta number for the gauge
     */
    drawDelta(): void;
    getInnerRadius(): number;
    addEventListeners(): void;
    protected computeRadius(): number;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy