UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

87 lines (86 loc) 2.64 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; /** * Represents the point that is passed to the tooltip template. */ export declare class TooltipTemplatePoint { /** * Specifies the point value. */ value: any; /** * Specifies the point category. Available only for the Categorical series. */ category: string | Date | number; /** * Specifies the point category index. Available only for the Categorical series. */ categoryIndex: number; /** * Specifies the point series options. */ series: any; /** * Specifies the point `dataItem`. */ dataItem: any; /** * Specifies the point value represented as a percentage value. Available only for the Donut, Pie, and 100% Stacked charts. */ percentage: number; /** * Specifies the sum of point values since the last `"runningTotal"` summary point. Available for the Waterfall series. */ runningTotal: number; /** * Specifies the sum of all previous series values. Available for the Waterfall series. */ total: number; /** * Specifies the low value of the point error bar. Available for the Categorical series with error bars. */ low: number; /** * Specifies the high value of the point error bar. Available for the Categorical series with error bars. */ high: number; /** * Specifies the x low value of the point error bar. Available for the Scatter series with error bars. */ xLow: number; /** * Specifies the x high value of the point error bar. Available for the Scatter series with error bars. */ xHigh: number; /** * Specifies the y low value of the point error bar. Available for the Scatter series with error bars. */ yLow: number; /** * Specifies the y high value of the point error bar. Available for the Scatter series with error bars. */ yHigh: number; /** * @hidden */ template: TemplateRef<any>; /** * @hidden */ point: any; /** * @hidden */ format: string; /** * @hidden */ constructor(point: any, format?: string, template?: TemplateRef<any>); /** * @hidden */ get formattedValue(): string; }