igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
27 lines (26 loc) • 590 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* An enum representing the available series types to display in the volume pane.
*/
export declare enum FinancialChartVolumeType {
/**
* Do not display the volume pane.
*/
None = 0,
/**
* Display column series in the volume pane.
*/
Column = 1,
/**
* Display line series in the volume pane.
*/
Line = 2,
/**
* Display area series in the volume pane.
*/
Area = 3
}
/**
* @hidden
*/
export declare let FinancialChartVolumeType_$type: Type;