UNPKG

igniteui-angular-charts

Version:

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

23 lines (22 loc) 578 B
import { Type } from "igniteui-angular-core"; /** * Describes available modes of interpolation on a color scale. */ export declare enum ColorScaleInterpolationMode { /** * Select one of the colors in the palette. */ Select = 0, /** * Interpolate between colors in the palette using RGB interpolation. */ InterpolateRGB = 1, /** * Interpolate between colors in the palette using HSV interpolation. */ InterpolateHSV = 2 } /** * @hidden */ export declare let ColorScaleInterpolationMode_$type: Type;