UNPKG

igniteui-angular-charts

Version:

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

95 lines (94 loc) 2.45 kB
import { Type } from "igniteui-angular-core"; /** * Describes available transition effects that can applied to initial rendering of a series */ export declare enum CategoryTransitionInMode { /** * Series transitions in an automatically chosen based on type of series and its orientation */ Auto = 0, /** * Series transitions in from the reference value of the value axis. */ FromZero = 1, /** * Series sweeps in from the left */ SweepFromLeft = 2, /** * Series sweeps in from the right */ SweepFromRight = 3, /** * Series sweeps in from the top. */ SweepFromTop = 4, /** * Series sweeps in from the bottom. */ SweepFromBottom = 5, /** * Series sweeps in from the center. */ SweepFromCenter = 6, /** * Series accordions in from the left. */ AccordionFromLeft = 7, /** * Series accordions in from the right. */ AccordionFromRight = 8, /** * Series accordions in from the top. */ AccordionFromTop = 9, /** * Series accordions in from the bottom. */ AccordionFromBottom = 10, /** * Series expands from the value midpoints. */ Expand = 11, /** * Series sweeps in from the category axis minimum. */ SweepFromCategoryAxisMinimum = 12, /** * Series sweeps in from the category axis maximum. */ SweepFromCategoryAxisMaximum = 13, /** * Series sweeps in from the value axis minimum. */ SweepFromValueAxisMinimum = 14, /** * Series sweeps in from the value axis maximum. */ SweepFromValueAxisMaximum = 15, /** * Series accordions in from the category axis minimum. */ AccordionFromCategoryAxisMinimum = 16, /** * Series accordions in from the category axis maximum. */ AccordionFromCategoryAxisMaximum = 17, /** * Series accordions in from the value axis minimum. */ AccordionFromValueAxisMinimum = 18, /** * Series accordions in from the value axis maximum. */ AccordionFromValueAxisMaximum = 19, /** * If the series is a child layer, animate from the values that the parent currently has. */ FromParent = 20 } /** * @hidden */ export declare let CategoryTransitionInMode_$type: Type;