UNPKG

igniteui-webcomponents-charts

Version:

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

60 lines (59 loc) 2.56 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { FullStochasticOscillatorIndicator } from "./FullStochasticOscillatorIndicator"; /** * Represents a IgxDataChartComponent Full Stochastic Oscillator indicator series. * Default required members: High, Low, Close * * The `FullStochasticOscillatorIndicator` class represents a IgxDataChartComponent Full Stochastic Oscillator indicator series. */ export declare class IgcFullStochasticOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): FullStochasticOscillatorIndicator; /** * @hidden */ get i(): FullStochasticOscillatorIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcFullStochasticOscillatorIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the current FullStochasticOscillatorIndicator object. * The typical, and initial, value for FullStochasticOscillatorIndicator periods is 14. * * You can use the `period` property for the moving average period of the current FullStochasticOscillatorIndicator object. * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); /** * Gets or sets the moving average SmoothingPeriod for the current FullStochasticOscillatorIndicator object. * The typical, and initial, value for FullStochasticOscillatorIndicator SmoothingPeriod is 3. * * The `SmoothingPeriod` property to fets/sets the moving average SmoothingPeriod for the current FullStochasticOscillatorIndicator object. * * ```ts * series.smoothingPeriod=30; * ``` */ get smoothingPeriod(): number; set smoothingPeriod(v: number); /** * Gets or sets the moving average TriggerPeriod for the current FullStochasticOscillatorIndicator object. * The typical, and initial, value for FullStochasticOscillatorIndicator TriggerPeriod is 3. * * You can use the `period` to set the current moving average period. * * ```ts * this.series.triggerPeriod = 30; * ``` */ get triggerPeriod(): number; set triggerPeriod(v: number); }