@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
37 lines (36 loc) • 1.24 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The appearance configuration for the major and minor axis ticks (see the [basic usage example](https://www.telerik.com/kendo-react-ui/components/charts/api/chartaxisdefaults)).
*/
export interface AxisTicks {
/**
* The color of the tick lines. Accepts a valid CSS color string, including hex and rgb.
*/
color?: string;
/**
* The length of the tick line in pixels.
*/
size?: number;
/**
* The number of ticks to skip at the beginning.
*/
skip?: number;
/**
* The tick-rendering step. Renders every n<sup>th</sup> tick, where `n` is the step.
*/
step?: number;
/**
* If set to `true,` the Chart displays the axis ticks. By default, only the major axis ticks are visible.
*/
visible?: boolean;
/**
* The width of the ticks in pixels.
*/
width?: number;
}