package.dist.components.essentials.threshold.d.ts Maven / Gradle / Ivy
import { Position } from '@carbon/utils-position';
import { Component } from '../component';
import { ChartModel } from '../../model/model';
import { RenderTypes } from '../../interfaces/enums';
export declare class Threshold extends Component {
type: string;
renderType: RenderTypes;
label: any;
positionService: Position;
constructor(model: ChartModel, services: any);
render(animate?: boolean): void;
getFormattedValue(datum: any): any;
appendThresholdLabel(): void;
setThresholdLabelPosition({ event, datum }: {
event: CustomEvent;
datum: any;
}): void;
constructDatumObj(d: any, element: any): any;
addEventListeners(): void;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy