@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.
33 lines (32 loc) • 1.24 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 { DashType } from './dash-type';
/**
* Specifies the appearance settings for the axis lines.
* Affects the major and minor axis ticks, but not the grid lines
* ([see example](slug:axes_chart_charts#toc-default-axis-configuration)).
*/
export interface AxisLine {
/**
* Specifies the color of the lines.
* Accepts a valid CSS color string, including hex and rgb.
* The `color` option affects the major and minor axis ticks, but not the grid lines.
*/
color?: string;
/**
* Specifies the dash type of the line.
*/
dashType?: DashType;
/**
* Determines whether to display the axis lines.
* By default, the axis lines are visible.
*/
visible?: boolean;
/**
* Specifies the width of the line in pixels.
* Affects the major and minor axis ticks, but not the grid lines.
*/
width?: number;
}