UNPKG

igniteui-webcomponents-charts

Version:

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

38 lines (37 loc) 1.59 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { RateOfChangeAndMomentumIndicator } from "./RateOfChangeAndMomentumIndicator"; /** * Represents a IgxDataChartComponent Rate of Change and Momentum indicator series. * Default required members: Close * * `RateOfChangeAndMomentumIndicator` class represents a Rate of Change and Momentum indicator series for the IgxDataChartComponent. */ export declare class IgcRateOfChangeAndMomentumIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): RateOfChangeAndMomentumIndicator; /** * @hidden */ get i(): RateOfChangeAndMomentumIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcRateOfChangeAndMomentumIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the current AverageTrueRangeSeries object. * The typical, and initial, value for AverageTrueRange periods is 14. * * You can use the `period` property for the current AverageTrueRangeSeries object. * * The typical, and initial, value for AverageTrueRange periods is 14. * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); }