igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
45 lines (44 loc) • 1.66 kB
TypeScript
import { IndicatorDisplayType } from "./IndicatorDisplayType";
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { MoneyFlowIndexIndicator } from "./MoneyFlowIndexIndicator";
/**
* Represents a IgxDataChartComponent Money Flow Index indicator series.
* Default required members: Close, Low, High, Volume
*
* Represents a Ignite UIDataChart Money Flow Index indicator series.
*
* Example:
*/
export declare class IgcMoneyFlowIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): MoneyFlowIndexIndicator;
/**
* @hidden
*/
get i(): MoneyFlowIndexIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcMoneyFlowIndexIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets default display type for the current Financial Indicator
*/
get defaultDisplayType(): IndicatorDisplayType;
/**
* Gets or sets the moving average period for the current MoneyFlowIndexIndicator object.
* The typical, and initial, value for MoneyFlowIndexIndicator periods is 14.
*
* Gets or sets the moving average period for the current MoneyFlowIndexIndicator object.
*
* Example:
*
* ```ts
* this.series.period = 14;
* ```
*/
get period(): number;
set period(v: number);
}