igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
34 lines (33 loc) • 1.33 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { CommodityChannelIndexIndicator } from "./CommodityChannelIndexIndicator";
/**
* Represents a IgxDataChartComponent Commodity Channel Index indicator series.
* Default required members: High, Low, Close
*
* `CommodityChannelIndexIndicator` class specify the series as Commodity Channel Index Indicator series.
*/
export declare class IgcCommodityChannelIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): CommodityChannelIndexIndicator;
/**
* @hidden
*/
get i(): CommodityChannelIndexIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcCommodityChannelIndexIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the moving average period for the current CCISeries object.
* The typical, and initial, value for CCI periods is 20.
*
* ```ts
* this.series.period = 30;
* ```
*/
get period(): number;
set period(v: number);
}