/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ConfigurationService } from '../common/configuration.service';
import { drawing } from '@progress/kendo-drawing';
import { SettingsComponent } from '../common/settings.component';
import { Border, FocusHighlight, Overlay, SeriesHighlight, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
import { SeriesDefaultsLabels, SeriesDefaultsNotes, SeriesDefaultsTooltip, SeriesDefaults } from '../common/property-types';
import * as i0 from "@angular/core";
/**
* Represents the default options for all Chart series
* ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/series#default-series-configuration)).
*
* @example
* ```html
*
*
*
*
*
*
*
* ```
*
* @remarks
* Supported children components are: {@link SeriesDefaultsLabelsComponent}, {@link SeriesDefaultsNotesComponent}, and {@link SeriesDefaultsTooltipComponent}.
*/
export declare class SeriesDefaultsComponent extends SettingsComponent implements SeriesDefaults {
configurationService: ConfigurationService;
/**
* Specifies the border configuration of the series.
*/
border: Border;
/**
* Specifies the distance between category clusters.
* @default 1.5
*/
gap: number;
/**
* Specifies the highlight configuration of the series.
*/
highlight: SeriesHighlight;
/**
* Specifies the overlay configuration of the series.
*/
overlay: Overlay;
/**
* Specifies the space between the Chart series as a proportion of the series width.
* Use this option when [`series.type`](https://www.telerik.com/kendo-angular-ui/components/charts/api/series#type) is set to `"bar"`, `"column"`, `"candlestick"`, `"ohlc"`,
* and `"waterfall"`.
* @default 0.4
*/
spacing: number;
/**
* Determines whether the series has to be stacked.
* Use this option when [`series.type`](https://www.telerik.com/kendo-angular-ui/components/charts/api/series#type) is set to `"bar"`, `"column"`, `"line"`, `"area"`,
* `"verticalLine"`, `"verticalArea"`, `"radarLine"`, `"radarArea"`, and `"radarColumn"`.
* @default false
*/
stack: boolean | string | SeriesStack;
/**
* Specifies the type of the series.
*/
type: SeriesType;
/**
* Specifies a function that returns a visual element for the series.
*/
visual: (e: SeriesVisualArgs) => drawing.Element;
/**
* Specifies the labels configuration of the series.
*/
labels: SeriesDefaultsLabels;
/**
* Specifies the notes configuration of the series.
*/
notes: SeriesDefaultsNotes;
/**
* Specifies the tooltip configuration of the series.
*/
tooltip: SeriesDefaultsTooltip;
/**
* Specifies the focus highlight configuration of the series.
*/
focusHighlight?: FocusHighlight;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}