/**----------------------------------------------------------------------------------------- * 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 { MousewheelSelect } from '../../common/property-types'; import { CategoryAxisSelect } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Configures the selection for the category axis in the Chart. When set, axis selection is enabled and the range is index-based, starting from zero. You can specify the lower and upper boundaries, minimum and maximum values, and mousewheel configuration. If the categories are dates, specify the range with date values. */ export declare class CategoryAxisSelectComponent extends SettingsComponent implements CategoryAxisSelect { configurationService: ConfigurationService; /** * Sets the lower boundary of the selected range. */ from: any; /** * Sets the maximum value for the selection. */ max: any; /** * Sets the minimum value for the selection. */ min: any; /** * Specifies the mousewheel configuration for the selection. */ mousewheel: boolean | MousewheelSelect; /** * Specifies the upper boundary of the selected range. */ to: any; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }