UNPKG

igniteui-webcomponents-charts

Version:

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

76 lines (74 loc) 2.85 kB
import { IgcAxisComponent } from "./igc-axis-component"; import { CategoryTooltipLayerPosition } from "./CategoryTooltipLayerPosition"; import { IgcAnnotationLayerComponent } from "./igc-annotation-layer-component"; import { CategoryToolTipLayer } from "./CategoryToolTipLayer"; /** * Represents an annotation layer that displays grouped tooltips for series that use a category axis. */ export declare class IgcCategoryToolTipLayerComponent extends IgcAnnotationLayerComponent { protected createImplementation(): CategoryToolTipLayer; /** * @hidden */ get i(): CategoryToolTipLayer; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcCategoryToolTipLayerComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; get isToolTipLayer(): boolean; /** * Gets whether the series is an annotation layer displayed only when hovering over the chart. */ get isAnnotationHoverLayer(): boolean; /** * Gets whether the default tooltip behaviors for the chart are disabled if this layer is present. */ get isDefaultTooltipBehaviorDisabled(): boolean; /** * Gets or sets the Axis to target this annotation to. If null, this annotation layer will not render content. */ get targetAxis(): IgcAxisComponent; set targetAxis(v: IgcAxisComponent); private _targetAxisName; /** * Gets or sets the name to use to resolve targetAxis from markup. */ get targetAxisName(): string; set targetAxisName(v: string); /** * Gets or sets whether to use value interpolation when drawing the tooltips. */ get useInterpolation(): boolean; set useInterpolation(v: boolean); /** * Gets or sets the Position to apply to the tooltip containers. */ get toolTipPosition(): CategoryTooltipLayerPosition; set toolTipPosition(v: CategoryTooltipLayerPosition); /** * Gets or sets the background of the tooltip containers. */ get toolTipBackground(): string; set toolTipBackground(v: string); /** * Gets or sets the border color of the tooltip containers. */ get toolTipBorderBrush(): string; set toolTipBorderBrush(v: string); /** * Gets or sets the border thickness of the tooltip containers. */ get toolTipBorderThickness(): number; set toolTipBorderThickness(v: number); bindAxes(axes: IgcAxisComponent[]): void; findByName(name: string): any; protected _styling(container: any, component: any, parent?: any): void; /** * Hides any tooltips presented by the layer, if any. */ hideToolTips(): void; }