import { EventEmitter } from '@angular/core';
import { IgPoint } from "igniteui-angular-core";
import { IgxSeriesComponent } from "./igx-series-component";
import { IgxCalloutPlacementPositionsCollection } from "./igx-callout-placement-positions-collection";
import { HighlightedValueLabelMode } from "igniteui-angular-core";
import { AutoCalloutVisibilityMode } from "./AutoCalloutVisibilityMode";
import { CalloutCollisionMode } from "igniteui-angular-core";
import { IgxCalloutStyleUpdatingEventArgs } from "./igx-callout-style-updating-event-args";
import { IgxCalloutRenderStyleUpdatingEventArgs } from "./igx-callout-render-style-updating-event-args";
import { IgxCalloutContentUpdatingEventArgs } from "./igx-callout-content-updating-event-args";
import { IgxCalloutLabelUpdatingEventArgs } from "./igx-callout-label-updating-event-args";
import { IgxCalloutSeriesSelectingEventArgs } from "./igx-callout-series-selecting-event-args";
import { IgxAnnotationLayerComponent } from "./igx-annotation-layer-component";
import { CalloutLayer } from "./CalloutLayer";
import * as i0 from "@angular/core";
/**
 * Represents an annotation layer that displays crosshair lines that cross through the closest value of the target series under the cursor.
*/
export declare class IgxCalloutLayerComponent extends IgxAnnotationLayerComponent {
    protected createImplementation(): CalloutLayer;
    /**
                                 * @hidden
                                 */
    get i(): CalloutLayer;
    constructor();
    /**
     * Gets whether the series is an callout annotation layer.
    */
    get isAnnotationCalloutLayer(): boolean;
    static ngAcceptInputType_isAnnotationCalloutLayer: boolean | string;
    /**
     * Gets or sets whether or not callouts expand axis buffer for extra space for their render around data points.
    */
    get calloutExpandsAxisBufferEnabled(): boolean;
    set calloutExpandsAxisBufferEnabled(v: boolean);
    static ngAcceptInputType_calloutExpandsAxisBufferEnabled: boolean | string;
    /**
     * Gets or sets whether or not callouts expand axis buffer only when callouts are visible in the chart.
     * This property is not used when the CalloutExpandsAxisBufferEnabled property is false or AutoCalloutVisibilityMode is not Dedicated.
    */
    get calloutExpandsAxisBufferOnlyWhenVisible(): boolean;
    set calloutExpandsAxisBufferOnlyWhenVisible(v: boolean);
    static ngAcceptInputType_calloutExpandsAxisBufferOnlyWhenVisible: boolean | string;
    /**
     * Gets or sets whether or not recalculate callouts expand axis buffer on rendering frame.
     * This property is not used when the CalloutExpandsAxisBufferEnabled property is false or AutoCalloutVisibilityMode is not Dedicated.
    */
    get calloutExpandsAxisBufferOnInitialVisibility(): boolean;
    set calloutExpandsAxisBufferOnInitialVisibility(v: boolean);
    static ngAcceptInputType_calloutExpandsAxisBufferOnInitialVisibility: boolean | string;
    /**
     * Gets or sets whether or not suspend refresh of callouts while they shift from hidden to visible
    */
    get calloutSuspendedWhenShiftingToVisible(): boolean;
    set calloutSuspendedWhenShiftingToVisible(v: boolean);
    static ngAcceptInputType_calloutSuspendedWhenShiftingToVisible: boolean | string;
    /**
     * Gets or sets the minimum vertical axis buffer for positioning callouts.
     * This property does not take precedence over the CalloutExpandsAxisBufferMaxHeight property.
    */
    get calloutExpandsAxisBufferMinHeight(): number;
    set calloutExpandsAxisBufferMinHeight(v: number);
    static ngAcceptInputType_calloutExpandsAxisBufferMinHeight: number | string;
    /**
     * Gets or sets the maximum vertical axis buffer for positioning callouts.
     * This property takes precedence over the CalloutExpandsAxisBufferMinHeight property.
    */
    get calloutExpandsAxisBufferMaxHeight(): number;
    set calloutExpandsAxisBufferMaxHeight(v: number);
    static ngAcceptInputType_calloutExpandsAxisBufferMaxHeight: number | string;
    /**
     * Gets or sets the minimum horizontal axis buffer for positioning callouts.
     * This property does not take precedence over the CalloutExpandsAxisBufferMaxWidth property.
    */
    get calloutExpandsAxisBufferMinWidth(): number;
    set calloutExpandsAxisBufferMinWidth(v: number);
    static ngAcceptInputType_calloutExpandsAxisBufferMinWidth: number | string;
    /**
     * Gets or sets the maximum horizontal axis buffer for positioning callouts.
     * This property takes precedence over the CalloutExpandsAxisBufferMinWidth property.
    */
    get calloutExpandsAxisBufferMaxWidth(): number;
    set calloutExpandsAxisBufferMaxWidth(v: number);
    static ngAcceptInputType_calloutExpandsAxisBufferMaxWidth: number | string;
    /**
     * Gets or sets the label mapping property for the callouts.
    */
    get labelMemberPath(): string;
    set labelMemberPath(v: string);
    /**
     * Gets or sets the label mapping property for the callouts.
    */
    get xMemberPath(): string;
    set xMemberPath(v: string);
    /**
     * Gets or sets the label mapping property for the callouts.
    */
    get yMemberPath(): string;
    set yMemberPath(v: string);
    /**
     * Gets or sets the key mapping property for the callouts.
    */
    get keyMemberPath(): string;
    set keyMemberPath(v: string);
    /**
     * Gets or sets whether to allow the callouts to be variable distances from the target points, for supporting collision modes.
    */
    get isCalloutOffsettingEnabled(): boolean;
    set isCalloutOffsettingEnabled(v: boolean);
    static ngAcceptInputType_isCalloutOffsettingEnabled: boolean | string;
    /**
     * Gets or sets the label format string to use for the label.
    */
    get labelFormat(): string;
    set labelFormat(v: string);
    /**
     * Gets or sets the format specifiers to use with the LabelFormat string.
    */
    get labelFormatSpecifiers(): any[];
    set labelFormatSpecifiers(v: any[]);
    static ngAcceptInputType_labelFormatSpecifiers: any[] | string;
    /**
     * Gets or sets the content mapping property for the callouts.
    */
    get contentMemberPath(): string;
    set contentMemberPath(v: string);
    /**
     * Gets or sets the name of the series series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    get targetSeriesName(): string;
    set targetSeriesName(v: string);
    /**
     * Gets or sets the series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    get targetSeries(): IgxSeriesComponent;
    set targetSeries(v: IgxSeriesComponent);
    /**
     * Gets or sets a channel name to identify other callout layers within the chart to share collision information with.
    */
    get collisionChannel(): string;
    set collisionChannel(v: string);
    private _allowedPositions;
    /**
     * Gets or sets the allowed positions that the callout layer is allowed to use.
    */
    get allowedPositions(): IgxCalloutPlacementPositionsCollection;
    set allowedPositions(v: IgxCalloutPlacementPositionsCollection);
    static ngAcceptInputType_allowedPositions: IgxCalloutPlacementPositionsCollection | string;
    /**
     * Gets or sets how to select the final value to annotate.
    */
    get isAutoCalloutBehaviorEnabled(): boolean;
    set isAutoCalloutBehaviorEnabled(v: boolean);
    static ngAcceptInputType_isAutoCalloutBehaviorEnabled: boolean | string;
    /**
     * Gets or sets whether to use values, rather than labels for auto callout labels.
    */
    get useInterpolatedValueForAutoCalloutLabels(): boolean;
    set useInterpolatedValueForAutoCalloutLabels(v: boolean);
    static ngAcceptInputType_useInterpolatedValueForAutoCalloutLabels: boolean | string;
    /**
     * Gets or sets whether to the series color as the outline of the callout.
    */
    get useSeriesColorForOutline(): boolean;
    set useSeriesColorForOutline(v: boolean);
    static ngAcceptInputType_useSeriesColorForOutline: boolean | string;
    /**
     * Gets or sets whether to the label color is automatically decided between a light and dark option for contrast.
    */
    get useAutoContrastingLabelColors(): boolean;
    set useAutoContrastingLabelColors(v: boolean);
    static ngAcceptInputType_useAutoContrastingLabelColors: boolean | string;
    /**
     * Gets or sets whether to the series color as the outline of the callout.
    */
    get useItemColorForFill(): boolean;
    set useItemColorForFill(v: boolean);
    static ngAcceptInputType_useItemColorForFill: boolean | string;
    /**
     * Gets or sets whether to the series item color as the outline of the callout.
    */
    get useItemColorForOutline(): boolean;
    set useItemColorForOutline(v: boolean);
    static ngAcceptInputType_useItemColorForOutline: boolean | string;
    /**
     * Gets or sets whether to use values, rather than labels for auto callout labels.
    */
    get useValueForAutoCalloutLabels(): boolean;
    set useValueForAutoCalloutLabels(v: boolean);
    static ngAcceptInputType_useValueForAutoCalloutLabels: boolean | string;
    /**
     * Gets or sets whether to use values, rather than labels for auto callout labels.
    */
    get highlightedValueLabelMode(): HighlightedValueLabelMode;
    set highlightedValueLabelMode(v: HighlightedValueLabelMode);
    static ngAcceptInputType_highlightedValueLabelMode: HighlightedValueLabelMode | string;
    /**
     * Gets or sets the rules for when the callouts should be visible.
    */
    get autoCalloutVisibilityMode(): AutoCalloutVisibilityMode;
    set autoCalloutVisibilityMode(v: AutoCalloutVisibilityMode);
    static ngAcceptInputType_autoCalloutVisibilityMode: AutoCalloutVisibilityMode | string;
    /**
     * Gets or sets the corner radius to use for the callout borders.
    */
    get calloutCornerRadius(): number;
    set calloutCornerRadius(v: number);
    static ngAcceptInputType_calloutCornerRadius: number | string;
    /**
     * Gets or sets the badge is visible in callout annotation.
    */
    get calloutBadgeVisible(): boolean;
    set calloutBadgeVisible(v: boolean);
    static ngAcceptInputType_calloutBadgeVisible: boolean | string;
    /**
     * Gets or sets the the badge width in callout annotation.
    */
    get calloutBadgeWidth(): number;
    set calloutBadgeWidth(v: number);
    static ngAcceptInputType_calloutBadgeWidth: number | string;
    /**
     * Gets or sets the the badge height in callout annotation.
    */
    get calloutBadgeHeight(): number;
    set calloutBadgeHeight(v: number);
    static ngAcceptInputType_calloutBadgeHeight: number | string;
    /**
     * Gets or sets the the badge thickness in callout annotation.
    */
    get calloutBadgeThickness(): number;
    set calloutBadgeThickness(v: number);
    static ngAcceptInputType_calloutBadgeThickness: number | string;
    /**
     * Gets or sets the badge outline in callout annotation.
    */
    get calloutBadgeOutline(): string;
    set calloutBadgeOutline(v: string);
    /**
     * Gets or sets the badge background in callout annotation.
    */
    get calloutBadgeBackground(): string;
    set calloutBadgeBackground(v: string);
    /**
     * Gets or sets whether or not the callout badge matches appearance of target series.
    */
    get calloutBadgeMatchSeries(): boolean;
    set calloutBadgeMatchSeries(v: boolean);
    static ngAcceptInputType_calloutBadgeMatchSeries: boolean | string;
    /**
     * Gets or sets the gap between badge and text in callout annotation
    */
    get calloutBadgeGap(): number;
    set calloutBadgeGap(v: number);
    static ngAcceptInputType_calloutBadgeGap: number | string;
    /**
     * Gets or sets the corner radius of badge in callout annotation
    */
    get calloutBadgeCorner(): number;
    set calloutBadgeCorner(v: number);
    static ngAcceptInputType_calloutBadgeCorner: number | string;
    /**
     * Gets or sets the mapping property for an image displayed in the badge of callout annotation
     * Examples #1: "DataColumnName" that contains full URL to an image: https://dl.infragistics.com/x/img/flags/USA.png
     * Examples #2: "https://dl.infragistics.com/x/img/flags/{ISO3}.png" where "ISO3" is name of data column that contains image name: USA
    */
    get calloutBadgeImageMemberPath(): string;
    set calloutBadgeImageMemberPath(v: string);
    /**
     * Gets or sets whether to allow for custom callout styles.
    */
    get isCustomCalloutStyleEnabled(): boolean;
    set isCustomCalloutStyleEnabled(v: boolean);
    static ngAcceptInputType_isCustomCalloutStyleEnabled: boolean | string;
    /**
     * Gets or sets whether to allow for custom callout styles.
    */
    get isCustomCalloutRenderStyleEnabled(): boolean;
    set isCustomCalloutRenderStyleEnabled(v: boolean);
    static ngAcceptInputType_isCustomCalloutRenderStyleEnabled: boolean | string;
    /**
     * Gets or sets the precision to use when values are used for the auto callout labels.
    */
    get autoCalloutLabelPrecision(): number;
    set autoCalloutLabelPrecision(v: number);
    static ngAcceptInputType_autoCalloutLabelPrecision: number | string;
    /**
     * Gets or sets the color to use for the callout text. Leave unset for an automatic value.
    */
    get calloutTextColor(): string;
    set calloutTextColor(v: string);
    /**
     * Gets or sets the light color to use for the callout text. Leave unset for an automatic value.
    */
    get calloutLightTextColor(): string;
    set calloutLightTextColor(v: string);
    /**
     * Gets or sets the dark color to use for the callout text. Leave unset for an automatic value.
    */
    get calloutDarkTextColor(): string;
    set calloutDarkTextColor(v: string);
    /**
     * Gets or sets the brush that specifies how the backgrounds for the callouts of the layer are painted. Leave unset for an automatic value.
    */
    get calloutBackground(): string;
    set calloutBackground(v: string);
    /**
     * Gets or sets whether the callouts that collide with the boundary should be truncated.
    */
    get shouldTruncateOnBoundaryCollisions(): boolean;
    set shouldTruncateOnBoundaryCollisions(v: boolean);
    static ngAcceptInputType_shouldTruncateOnBoundaryCollisions: boolean | string;
    /**
     * Gets or sets the precision to use displaying values for interpolated crosshair positions.
    */
    get calloutInterpolatedValuePrecision(): number;
    set calloutInterpolatedValuePrecision(v: number);
    static ngAcceptInputType_calloutInterpolatedValuePrecision: number | string;
    /**
     * Gets or sets the brush that specifies how the outlines for the callouts of the layer are painted.
    */
    get calloutOutline(): string;
    set calloutOutline(v: string);
    /**
     * Gets or sets the brush that specifies how the leader lines for the callouts of the layer are painted.
    */
    get calloutLeaderBrush(): string;
    set calloutLeaderBrush(v: string);
    /**
     * Gets or sets the left padding to use withing the callout. Leaving this NaN will use an automatic value related to the axis label margins.
    */
    get calloutPaddingLeft(): number;
    set calloutPaddingLeft(v: number);
    static ngAcceptInputType_calloutPaddingLeft: number | string;
    /**
     * Gets or sets the top padding to use within the callout. Leaving this NaN will use an automatic value related to the axis label margins.
    */
    get calloutPaddingTop(): number;
    set calloutPaddingTop(v: number);
    static ngAcceptInputType_calloutPaddingTop: number | string;
    /**
     * Gets or sets the right padding to use within the callout. Leaving this NaN will use an automatic value related to the axis label margins.
    */
    get calloutPaddingRight(): number;
    set calloutPaddingRight(v: number);
    static ngAcceptInputType_calloutPaddingRight: number | string;
    /**
     * Gets or sets the bottom padding to use within the callout. Leaving this NaN will use an automatic value related to the axis label margins.
    */
    get calloutPaddingBottom(): number;
    set calloutPaddingBottom(v: number);
    static ngAcceptInputType_calloutPaddingBottom: number | string;
    /**
     * Gets or sets the strategy to use for avoiding collisions between the callouts in this layer. Leave unset for an automatic value.
    */
    get calloutCollisionMode(): CalloutCollisionMode;
    set calloutCollisionMode(v: CalloutCollisionMode);
    static ngAcceptInputType_calloutCollisionMode: CalloutCollisionMode | string;
    /**
     * Gets or sets the padding to add to the callout positioning. Leave unset for an automatic value.
    */
    get calloutPositionPadding(): number;
    set calloutPositionPadding(v: number);
    static ngAcceptInputType_calloutPositionPadding: number | string;
    /**
     * Gets or sets the stroke thickness for the callout backing. Leave unset for an automatic value.
    */
    get calloutStrokeThickness(): number;
    set calloutStrokeThickness(v: number);
    static ngAcceptInputType_calloutStrokeThickness: number | string;
    /**
     * Gets or sets the stroke thickness for the axis annotation backing. Leave unset for an automatic value.
    */
    get textStyle(): string;
    set textStyle(v: string);
    findByName(name: string): any;
    protected _styling(container: any, component: any, parent?: any): void;
    getItemValue(item: any, memberPathName: string): any;
    /**
     * Gets the value of a requested member path from the series.
    
    * @param memberPathName  * The property name of a valid member path for the series
    */
    getMemberPathValue(memberPathName: string): string;
    /**
     * Invalidates content of callout layer
    
    */
    invalidateCalloutContent(): void;
    /**
     * Resets actual visiable range margin
    
    */
    recalculateAxisRangeBuffer(): void;
    /**
     * Refresh axis buffer and callouts rendering
    
    */
    refreshAxisBufferAndCalloutPositions(): void;
    /**
     * Force the callout labels to reevaluate their positions.
    
    */
    refreshLabelPositions(): void;
    getSeriesValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint;
    getItem(world: IgPoint): any;
    private _calloutStyleUpdating;
    /**
     * Event raised when updating style of callout layer
    */
    get calloutStyleUpdating(): EventEmitter<{
        sender: any;
        args: IgxCalloutStyleUpdatingEventArgs;
    }>;
    private _calloutRenderStyleUpdating;
    /**
     * Event raised when updating style of callout layer
    */
    get calloutRenderStyleUpdating(): EventEmitter<{
        sender: any;
        args: IgxCalloutRenderStyleUpdatingEventArgs;
    }>;
    private _calloutContentUpdating;
    /**
     * Raised to allow you to decide on the content for an automatically created callout.
    */
    get calloutContentUpdating(): EventEmitter<{
        sender: any;
        args: IgxCalloutContentUpdatingEventArgs;
    }>;
    private _calloutLabelUpdating;
    /**
     * Raised to allow you to decide on the label for an automatically created callout.
    */
    get calloutLabelUpdating(): EventEmitter<{
        sender: any;
        args: IgxCalloutLabelUpdatingEventArgs;
    }>;
    private _calloutSeriesSelecting;
    /**
     * Raised to allow you to select a target series for a data bound callout.
    */
    get calloutSeriesSelecting(): EventEmitter<{
        sender: any;
        args: IgxCalloutSeriesSelectingEventArgs;
    }>;
    static ɵfac: i0.ɵɵFactoryDeclaration<IgxCalloutLayerComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<IgxCalloutLayerComponent, "igx-callout-layer", never, { "calloutExpandsAxisBufferEnabled": { "alias": "calloutExpandsAxisBufferEnabled"; "required": false; }; "calloutExpandsAxisBufferOnlyWhenVisible": { "alias": "calloutExpandsAxisBufferOnlyWhenVisible"; "required": false; }; "calloutExpandsAxisBufferOnInitialVisibility": { "alias": "calloutExpandsAxisBufferOnInitialVisibility"; "required": false; }; "calloutSuspendedWhenShiftingToVisible": { "alias": "calloutSuspendedWhenShiftingToVisible"; "required": false; }; "calloutExpandsAxisBufferMinHeight": { "alias": "calloutExpandsAxisBufferMinHeight"; "required": false; }; "calloutExpandsAxisBufferMaxHeight": { "alias": "calloutExpandsAxisBufferMaxHeight"; "required": false; }; "calloutExpandsAxisBufferMinWidth": { "alias": "calloutExpandsAxisBufferMinWidth"; "required": false; }; "calloutExpandsAxisBufferMaxWidth": { "alias": "calloutExpandsAxisBufferMaxWidth"; "required": false; }; "labelMemberPath": { "alias": "labelMemberPath"; "required": false; }; "xMemberPath": { "alias": "xMemberPath"; "required": false; }; "yMemberPath": { "alias": "yMemberPath"; "required": false; }; "keyMemberPath": { "alias": "keyMemberPath"; "required": false; }; "isCalloutOffsettingEnabled": { "alias": "isCalloutOffsettingEnabled"; "required": false; }; "labelFormat": { "alias": "labelFormat"; "required": false; }; "labelFormatSpecifiers": { "alias": "labelFormatSpecifiers"; "required": false; }; "contentMemberPath": { "alias": "contentMemberPath"; "required": false; }; "targetSeriesName": { "alias": "targetSeriesName"; "required": false; }; "targetSeries": { "alias": "targetSeries"; "required": false; }; "collisionChannel": { "alias": "collisionChannel"; "required": false; }; "allowedPositions": { "alias": "allowedPositions"; "required": false; }; "isAutoCalloutBehaviorEnabled": { "alias": "isAutoCalloutBehaviorEnabled"; "required": false; }; "useInterpolatedValueForAutoCalloutLabels": { "alias": "useInterpolatedValueForAutoCalloutLabels"; "required": false; }; "useSeriesColorForOutline": { "alias": "useSeriesColorForOutline"; "required": false; }; "useAutoContrastingLabelColors": { "alias": "useAutoContrastingLabelColors"; "required": false; }; "useItemColorForFill": { "alias": "useItemColorForFill"; "required": false; }; "useItemColorForOutline": { "alias": "useItemColorForOutline"; "required": false; }; "useValueForAutoCalloutLabels": { "alias": "useValueForAutoCalloutLabels"; "required": false; }; "highlightedValueLabelMode": { "alias": "highlightedValueLabelMode"; "required": false; }; "autoCalloutVisibilityMode": { "alias": "autoCalloutVisibilityMode"; "required": false; }; "calloutCornerRadius": { "alias": "calloutCornerRadius"; "required": false; }; "calloutBadgeVisible": { "alias": "calloutBadgeVisible"; "required": false; }; "calloutBadgeWidth": { "alias": "calloutBadgeWidth"; "required": false; }; "calloutBadgeHeight": { "alias": "calloutBadgeHeight"; "required": false; }; "calloutBadgeThickness": { "alias": "calloutBadgeThickness"; "required": false; }; "calloutBadgeOutline": { "alias": "calloutBadgeOutline"; "required": false; }; "calloutBadgeBackground": { "alias": "calloutBadgeBackground"; "required": false; }; "calloutBadgeMatchSeries": { "alias": "calloutBadgeMatchSeries"; "required": false; }; "calloutBadgeGap": { "alias": "calloutBadgeGap"; "required": false; }; "calloutBadgeCorner": { "alias": "calloutBadgeCorner"; "required": false; }; "calloutBadgeImageMemberPath": { "alias": "calloutBadgeImageMemberPath"; "required": false; }; "isCustomCalloutStyleEnabled": { "alias": "isCustomCalloutStyleEnabled"; "required": false; }; "isCustomCalloutRenderStyleEnabled": { "alias": "isCustomCalloutRenderStyleEnabled"; "required": false; }; "autoCalloutLabelPrecision": { "alias": "autoCalloutLabelPrecision"; "required": false; }; "calloutTextColor": { "alias": "calloutTextColor"; "required": false; }; "calloutLightTextColor": { "alias": "calloutLightTextColor"; "required": false; }; "calloutDarkTextColor": { "alias": "calloutDarkTextColor"; "required": false; }; "calloutBackground": { "alias": "calloutBackground"; "required": false; }; "shouldTruncateOnBoundaryCollisions": { "alias": "shouldTruncateOnBoundaryCollisions"; "required": false; }; "calloutInterpolatedValuePrecision": { "alias": "calloutInterpolatedValuePrecision"; "required": false; }; "calloutOutline": { "alias": "calloutOutline"; "required": false; }; "calloutLeaderBrush": { "alias": "calloutLeaderBrush"; "required": false; }; "calloutPaddingLeft": { "alias": "calloutPaddingLeft"; "required": false; }; "calloutPaddingTop": { "alias": "calloutPaddingTop"; "required": false; }; "calloutPaddingRight": { "alias": "calloutPaddingRight"; "required": false; }; "calloutPaddingBottom": { "alias": "calloutPaddingBottom"; "required": false; }; "calloutCollisionMode": { "alias": "calloutCollisionMode"; "required": false; }; "calloutPositionPadding": { "alias": "calloutPositionPadding"; "required": false; }; "calloutStrokeThickness": { "alias": "calloutStrokeThickness"; "required": false; }; "textStyle": { "alias": "textStyle"; "required": false; }; }, { "calloutStyleUpdating": "calloutStyleUpdating"; "calloutRenderStyleUpdating": "calloutRenderStyleUpdating"; "calloutContentUpdating": "calloutContentUpdating"; "calloutLabelUpdating": "calloutLabelUpdating"; "calloutSeriesSelecting": "calloutSeriesSelecting"; }, never, never, true, never>;
}
