@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.
44 lines (43 loc) • 1.84 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 { QueryList } from '@angular/core';
import { CollectionComponent } from '../common/collection.component';
import { CollectionService, Item } from '../common/collection.service';
import { ConfigurationService } from '../common/configuration.service';
import * as i0 from "@angular/core";
/**
* A collection of one or more category axis items.
*
* @example
* ```ts
* import { Component } from '@angular/core';
*
* _@Component({
* selector: 'my-app',
* template: `
* <kendo-chart>
* <kendo-chart-category-axis>
* <kendo-chart-category-axis-item [categories]="[2015, 2016]" color="#f00">
* </kendo-chart-category-axis-item>
* </kendo-chart-category-axis>
* <kendo-chart-series>
* <kendo-chart-series-item type="line" [data]="[1, 2, 3]">
* </kendo-chart-series-item>
* </kendo-chart-series>
* </kendo-chart>
* `
* })
* class AppComponent {
* }
* ```
*/
export declare class CategoryAxisComponent extends CollectionComponent {
protected configurationService: ConfigurationService;
protected collectionService: CollectionService;
children: QueryList<Item>;
constructor(configurationService: ConfigurationService, collectionService: CollectionService);
static ɵfac: i0.ɵɵFactoryDeclaration<CategoryAxisComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CategoryAxisComponent, "kendo-chart-category-axis", never, {}, {}, ["children"], never, true, never>;
}