/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChartComponent } from '../chart.component';
import { drawing } from '@progress/kendo-drawing';
/**
 * Represents the context for the legend item `visual` function ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/legend#custom-marker-shapes)).
 */
export interface LegendItemVisualArgs {
    /**
     * Indicates if the legend item is active.
     * Depends on whether the associated point or series is visible.
     */
    active: boolean;
    /**
     * Specifies a function that gets the default visual.
     */
    createVisual: () => drawing.Element;
    /**
     * Specifies the options of the legend item.
     */
    options: any;
    /**
     * Specifies the index of the point in the series.
     * Available for the Donut, Pie, and Funnel series.
     */
    pointIndex: any;
    /**
     * Specifies the instance of the Chart component.
     */
    sender: ChartComponent;
    /**
     * Specifies the item series.
     */
    series: any;
}
