igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
31 lines (30 loc) • 785 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Describes available behaviors for how annotations are distinguished from series.
*/
export declare enum AnnotationAppearanceMode {
/**
* Let the annotation layer decide what appearance to use.
*/
Auto = 0,
/**
* Take the target series color and shift the brightness.
*/
BrightnessShift = 1,
/**
* Take the target series color and shift the saturation.
*/
SaturationShift = 2,
/**
* Take the target series color and apply a dash pattern.
*/
DashPattern = 3,
/**
* Take the target series color and shift the opacity.
*/
OpacityShift = 4
}
/**
* @hidden
*/
export declare let AnnotationAppearanceMode_$type: Type;