/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { SettingsComponent } from '../../common/settings.component';
import { AxisLabelContentArgs, AxisLabelVisualArgs, Border, DateFormats, LabelRotation } from '../../common/property-types';
import { AxisLabelsPosition } from '../../common/property-types';
import { Margin, Padding } from '../../common/property-types';
import { CategoryAxisLabels } from '../../common/property-types';
import * as i0 from "@angular/core";
/**
* Represents the labels configuration for the category axis of the Chart ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/labels)).
*/
export declare class CategoryAxisLabelsComponent extends SettingsComponent implements CategoryAxisLabels {
configurationService: ConfigurationService;
/**
* Specifies the background color of the labels.
*/
background: string;
/**
* Specifies the border configuration of the labels.
*/
border: Border;
/**
* Sets the text color of the labels.
*/
color: string;
/**
* Specifies a function that creates the content of the label.
*/
content: (e: AxisLabelContentArgs) => string;
/**
* Defines the culture info used for formatting the dates.
*/
culture: string;
/**
* Specifies the format for different date parts.
*/
dateFormats: DateFormats;
/**
* Specifies the font style of the labels.
* @default '12px sans-serif'
*/
font: string;
/**
* Specifies the format for displaying the labels. Uses the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of IntlService.
* Contains one placeholder (`"{0}"`) which represents the category value.
* @default '{0}'
*/
format: string;
/**
* Specifies the margin of the labels. A numeric value sets all margins.
* @default 0
*/
margin: Margin | number;
/**
* Determines whether the Chart mirrors the axis labels and ticks. If the labels are normally on the
* left side of the axis, the mirroring of the axis renders them to the right.
* @default false
*/
mirror: boolean;
/**
* Specifies the padding of the labels. A numeric value sets all paddings.
* @default 0
*/
padding: Padding | number;
/**
* Specifies the position of the axis labels. By default, the labels are positioned next to the axis.
*
* @default 'onAxis'
*/
position: AxisLabelsPosition;
/**
* Specifies the rotation angle of the labels. By default, the labels are not rotated.
*
* If the axis is horizontal, can be set to `"auto"`. In this case, the labels are rotated
* only if the slot size is not sufficient for the entire labels.
* @default 0
*/
rotation: LabelRotation | number | 'auto';
/**
* Specifies the number of labels to skip. By default, no labels are skipped.
* @default 0
*/
skip: number;
/**
* Specifies the rendering step of the label—renders every nth label. By default, every label is rendered.
* @default 1
*/
step: number;
/**
* Determines whether the Chart displays the category axis labels.
* By default, the category axis labels are visible.
* @default true
*/
visible: boolean;
/**
* Specifies a function that creates a visual for the label.
*/
visual: (e: AxisLabelVisualArgs) => drawing.Element;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}