igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
27 lines (26 loc) • 575 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Describes mode for displaying content of axis annotation
*/
export declare enum UserAnnotationTarget {
/**
* Specifies slice annotation at specific axis value
*/
Slice = 0,
/**
* Specifies strip annotation from a start to end of an axis
*/
Strip = 1,
/**
* Specifies an annotation of data point on a series
*/
Point = 2,
/**
* Specifies an annotation of axis label
*/
Axis = 3
}
/**
* @hidden
*/
export declare let UserAnnotationTarget_$type: Type;