UNPKG

igniteui-webcomponents-charts

Version:

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

36 lines (35 loc) 1.46 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { DetrendedPriceOscillatorIndicator } from "./DetrendedPriceOscillatorIndicator"; /** * Represents a IgxDataChartComponent Detrended Price Oscillator indicator series. * Default required members: Close * * The `DetrendedPriceOscillatorIndicator` class represents a IgxDataChartComponent Detrended Price Oscillator indicator series. */ export declare class IgcDetrendedPriceOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): DetrendedPriceOscillatorIndicator; /** * @hidden */ get i(): DetrendedPriceOscillatorIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcDetrendedPriceOscillatorIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the current DetrendedPriceOscillatorIndicator object. * The typical, and initial, value for DPO periods is 20. * * You can use the `period` to set the current moving average period. * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); }