UNPKG

igniteui-webcomponents-charts

Version:

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

26 lines (25 loc) 1.1 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { TypicalPriceIndicator } from "./TypicalPriceIndicator"; /** * Represents a IgxDataChartComponent Typical Price indicator series. * The typical price indicator is represented as a arithmetic average * of the High, Low, and Close for a day. * Default required members: High, Low, Close * * The `TypicalPriceIndicator` class represents a IgxDataChartComponent Typical Price indicator series. */ export declare class IgcTypicalPriceIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): TypicalPriceIndicator; /** * @hidden */ get i(): TypicalPriceIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcTypicalPriceIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; }