UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

31 lines (30 loc) 802 B
import { Type } from "igniteui-react-core"; /** * Describes available options for constraining the tooltip to different bounds. */ export declare enum DataTooltipConstraintMode { /** * A constraint for the tooltip is selected automatically. */ Auto = 0, /** * The tooltip is constrained within the bounds of the application window. */ Application = 1, /** * The tooltip is constrained within the bounds of the chart. */ Chart = 2, /** * The tooltip is constrained within the bounds of the chart plot area. */ PlotArea = 3, /** * The tooltip is constrained within the bounds of the screen. */ None = 4 } /** * @hidden */ export declare let DataTooltipConstraintMode_$type: Type;