UNPKG

igniteui-angular-charts

Version:

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

35 lines (34 loc) 1.05 kB
import { Type } from "igniteui-angular-core"; /** * Describes the highlighting mode to use for the series in the chart. */ export declare enum SeriesHighlightingMode { /** * Highlighting mode is determined by the component. */ Auto = 0, /** * No highlighting is defined at the chart level. Individual series may have local highlight settings. */ None = 1, /** * Series will brighten when hovered, and, if applicable brighten indiviudal shapes or markers. */ BrightenSpecific = 2, /** * Series will brighten when hovered. */ Brighten = 3, /** * Series will fade if they aren't the hovered series, and, if applicable other shapes in the hovered series will fade. */ FadeOthersSpecific = 4, /** * Series will fade if they aren't the hovered series, and, if applicable other shapes in the hovered series will fade. */ FadeOthers = 5 } /** * @hidden */ export declare let SeriesHighlightingMode_$type: Type;