igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
31 lines (30 loc) • 704 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* An enum representing the available tooltip types to display in the chart.
*/
export declare enum ToolTipType {
/**
* Display default tooltip for each series in the chart.
*/
Default = 0,
/**
* Display individual tooltips for all series in the chart.
*/
Item = 1,
/**
* Display combined tooltip for all series in the chart.
*/
Category = 2,
/**
* Display no tooltips in the chart.
*/
None = 3,
/**
* Display the data tooltips for all series in the chart
*/
Data = 4
}
/**
* @hidden
*/
export declare let ToolTipType_$type: Type;