@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
39 lines (38 loc) • 2.16 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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<CategoryAxisSelectComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CategoryAxisSelectComponent, "kendo-chart-category-axis-item-select", never, { "from": { "alias": "from"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "mousewheel": { "alias": "mousewheel"; "required": false; }; "to": { "alias": "to"; "required": false; }; }, {}, never, never, true, never>;
}