UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

31 lines (30 loc) 651 B
import { Type } from "igniteui-angular-core"; /** * An enum representing the available types of domain charts. */ export declare enum DomainType { /** * Specifies category domain for Category Chart */ Category = 0, /** * Specifies financial domain for Financial Chart */ Financial = 1, /** * Specifies scatter domain for Scatter Charts */ Scatter = 2, /** * Specifies shape domain for Shape Charts */ Shape = 3, /** * Specifies pie domain for Pie charts */ Pie = 4 } /** * @hidden */ export declare let DomainType_$type: Type;