UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

30 lines (29 loc) 1.4 kB
import { IgcStrategyBasedIndicatorComponent } from './igc-strategy-based-indicator-component'; import { CustomIndicator } from "./CustomIndicator"; import { IgcFinancialEventArgs } from "./igc-financial-event-args"; export declare class IgcCustomIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): CustomIndicator; get i(): CustomIndicator; constructor(); private _indicator; private _indicator_wrapped; /** * Event raised when the indicator values need to be computed. */ get indicator(): (s: IgcCustomIndicatorComponent, e: IgcFinancialEventArgs) => void; set indicator(ev: (s: IgcCustomIndicatorComponent, e: IgcFinancialEventArgs) => void); private _basedOnColumns; private _basedOnColumns_wrapped; /** * Event raised when the basedOnColumns values need to be computed. */ get basedOnColumns(): (s: IgcCustomIndicatorComponent, e: IgcFinancialEventArgs) => void; set basedOnColumns(ev: (s: IgcCustomIndicatorComponent, e: IgcFinancialEventArgs) => void); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcCustomIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; }