igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 724 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Describes available positions on the crossing axis at which the category tooltip can be displayed.
*/
export declare enum DataToolTipLayerPosition {
/**
* A position is selected automatically
*/
Auto = 0,
/**
* Displays at the outside start of the axis.
*/
OutsideStart = 1,
/**
* Displays at the inside start of the axis.
*/
InsideStart = 2,
/**
* Displays at the inside end of the axis.
*/
InsideEnd = 3,
/**
* Displays at the outside end of the axis.
*/
OutsideEnd = 4
}
/**
* @hidden
*/
export declare let DataToolTipLayerPosition_$type: Type;