@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.
53 lines (52 loc) • 2.44 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* 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';
import { ConfigurationService } from '../../common/configuration.service';
import { Border, Padding } from '../../common/property-types';
import { SeriesTooltip } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
 * Represents the configuration options of the Chart series tooltip
 * ([see example]({% slug tooltips_chart_charts %})).
 */
export declare class SeriesTooltipComponent extends SettingsComponent implements SeriesTooltip {
    configurationService: ConfigurationService;
    /**
     * Specifies the background color of the tooltip.
     */
    background: string;
    /**
     * Specifies the border configuration of the tooltip.
     */
    border: Border;
    /**
     * Specifies the text color of the tooltip.
     */
    color: string;
    /**
     * Specifies the font of the tooltip.
     * @default '12px sans-serif'
     */
    font: string;
    /**
     * Specifies the format of the tooltip.
     */
    format: string;
    /**
     * Specifies the padding of the tooltip.
     */
    padding: Padding | number;
    /**
     * Determines whether the Chart displays the series tooltip.
     * @default false
     */
    visible: boolean;
    seriesTooltipTemplate: TemplateRef<any>;
    constructor(configurationService: ConfigurationService);
    get seriesTooltipTemplateRef(): TemplateRef<any>;
    static ɵfac: i0.ɵɵFactoryDeclaration<SeriesTooltipComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<SeriesTooltipComponent, "kendo-chart-series-item-tooltip", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "font": { "alias": "font"; "required": false; }; "format": { "alias": "format"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, ["seriesTooltipTemplate"], never, true, never>;
}