UNPKG

igniteui-webcomponents-charts

Version:

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

24 lines (23 loc) 1.04 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { PriceVolumeTrendIndicator } from "./PriceVolumeTrendIndicator"; /** * Represents a IgxDataChartComponent Price Volume Trend Indicator series. * Default required members: Volume, Close * * You can use the `PriceVolumeTrendIndicator` to measure money flow by adding or subtracting a portion of the daily volume. */ export declare class IgcPriceVolumeTrendIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): PriceVolumeTrendIndicator; /** * @hidden */ get i(): PriceVolumeTrendIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcPriceVolumeTrendIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; }