/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the marker type. * * > Note that `"rect"` is an alias for `"square"`. * * The possible values are: * - `"square"`—Creates a square marker. * - `"circle"`—Creates a circle marker. * - `"triangle"`—Creates a triangle marker. * - `"cross"`—Creates a cross marker. * - `"rect"`—Creates a rectangle marker. * - `"roundedRect"`—Creates a rounded rectangle marker. * * @example * ```ts * import { Component } from '@angular/core'; * import { MarkerType } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * * * * * * * ` * }) * class AppComponent { * public markerType: MarkerType = "cross"; * } * * ``` */ export type MarkerType = 'square' | 'circle' | 'triangle' | 'cross' | 'rect' | 'roundedRect';