UNPKG

igniteui-angular-charts

Version:

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

31 lines (30 loc) 812 B
import { Type } from "igniteui-angular-core"; /** * An enum representing the available display modes of crosshairs lines in the chart. */ export declare enum CrosshairsDisplayMode { /** * Display crosshair lines depending on chart type, e.g. no vertical crosshair lines for column and waterfall charts. */ Auto = 0, /** * Display no crosshair lines in the chart. */ None = 1, /** * Display horizontal line of crosshairs in the chart. */ Horizontal = 2, /** * Display vertical line of crosshairs in the chart. */ Vertical = 3, /** * Display both horizontal and vertical lines of crosshairs in the chart. */ Both = 4 } /** * @hidden */ export declare let CrosshairsDisplayMode_$type: Type;