igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 1.87 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { PercentageVolumeOscillatorIndicator } from "./PercentageVolumeOscillatorIndicator";
/**
* Represents a IgxDataChartComponent Percentage Volume Oscillator (PVO) series.
* Default required members: Volume
*
* You can use the `PercentageVolumeOscillatorIndicator` to show the percentage difference volume.
*/
export declare class IgcPercentageVolumeOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): PercentageVolumeOscillatorIndicator;
/**
* @hidden
*/
get i(): PercentageVolumeOscillatorIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcPercentageVolumeOscillatorIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the short moving average period for the current PercentageVolumeOscillatorIndicator object.
* The typical, and initial, value for short PVO periods is 10.
*
* You can use the `ShortPeriod` to set the short moving average period.
*
* ```ts
* this.series.shortPeriod = 30;
* ```
*/
get shortPeriod(): number;
set shortPeriod(v: number);
/**
* Gets or sets the short moving average period for the current PercentageVolumeOscillatorIndicator object.
* The typical, and initial, value for long PVO periods is 30.
*
* You can use the `LongPeriod` to set the long moving average period.
*
* ```ts
* this.series.longPeriod = 30;
* ```
*/
get longPeriod(): number;
set longPeriod(v: number);
}