igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 1.26 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { FastStochasticOscillatorIndicator } from "./FastStochasticOscillatorIndicator";
/**
* Represents a IgxDataChartComponent Fast Stochastic Oscillator indicator series.
* Default required members: High, Low, Close
*/
export declare class IgcFastStochasticOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): FastStochasticOscillatorIndicator;
/**
* @hidden
*/
get i(): FastStochasticOscillatorIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcFastStochasticOscillatorIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the moving average period for the current FastStochasticOscillatorIndicator object.
* The typical, and initial, value for FastStochasticOscillatorIndicator periods is 14.
*/
get period(): number;
set period(v: number);
}