@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.
70 lines (69 loc) • 2.94 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 { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { Border, MarkersVisualArgs, MarkerType } from '../../common/property-types';
import { SeriesMarkers } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the Chart series marker.
*
* @example
* ```html
* <kendo-chart ...>
* <kendo-chart-series>
* <kendo-chart-series-item type="line"...>
* <kendo-chart-series-item-markers background="blue"> </kendo-chart-series-item-markers>
* </kendo-chart-series-item>
* </kendo-chart-series>
* </kendo-chart>
* ```
*/
export declare class SeriesMarkersComponent extends SettingsComponent implements SeriesMarkers {
configurationService: ConfigurationService;
/**
* Specifies the background color of the markers.
*/
background: string;
/**
* Specifies the border configuration of the markers.
*/
border: Border;
/**
* Specifies the rotation angle of the markers.
*/
rotation: number;
/**
* Specifies the marker size in pixels.
* @default 6
*/
size: number;
/**
* Specifies the shape of the series markers.
* @default 'cirlce'
*/
type: MarkerType;
/**
* Determines whether the Chart displays the series markers.
* @default true
*/
visible: boolean;
/**
* Specifies a function that creates a custom visual for the markers.
*/
visual: (e: MarkersVisualArgs) => drawing.Element;
/**
* Specifies the `from` markers configuration.
*/
from: SeriesMarkers;
/**
* Specifies the `to` markers configuration.
*/
to: SeriesMarkers;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesMarkersComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesMarkersComponent, "kendo-chart-series-item-markers", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; }, {}, never, never, true, never>;
}