UNPKG

igniteui-webcomponents-charts

Version:

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

51 lines (50 loc) 1.95 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { BollingerBandWidthIndicator } from "./BollingerBandWidthIndicator"; /** * Represents a IgxDataChartComponent Bollinger Bandwidth indicator series. * Represents the normalized width of the Bollinger bands for each provided value. * For more info see: * BollingerBandsOverlay * Default required members: High, Low, Close * * You can use the `BollingerBandWidthIndicator` to represents a IgxDataChartComponent Bollinger Bandwidth indicator series. */ export declare class IgcBollingerBandWidthIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): BollingerBandWidthIndicator; /** * @hidden */ get i(): BollingerBandWidthIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcBollingerBandWidthIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the Bollinger Band Width Indicator. * The typical, and initial, value for CCI periods is 20. * * You can use the `Period` to set the moving average. * * ```ts * this.series.period = 14; * ``` */ get period(): number; set period(v: number); /** * Gets or sets the multiplier for the Bollinger Band width. * The typical, and initial, value for Bollinger Band width multiplier is 2. * * Use the `Multiplier` property for the Bollinger Band width. The typical, and initial, value for Bollinger Band width multiplier is 2. * * ```ts * this.series.multiplier = 14; * ``` */ get multiplier(): number; set multiplier(v: number); }