/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { AxisDefaults } from '../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartAxisDefaults component ([see example]({% slug axes_chart_charts %}#toc-default-axis-configuration)). */ export interface ChartAxisDefaultsProps extends AxisDefaults { } /** * @hidden */ declare const ChartAxisDefaults: import('vue').DefineComponent; default: any; }; color: { type: PropType; default: any; }; line: { type: PropType; default: () => any; }; majorGridLines: { type: PropType; default: () => any; }; majorTicks: { type: PropType; default: () => any; }; minorGridLines: { type: PropType; default: () => any; }; minorTicks: { type: PropType; default: () => any; }; narrowRange: { type: PropType; default: any; }; pane: { type: PropType; default: any; }; plotBands: { type: PropType; default: () => any; }; reverse: { type: PropType; default: any; }; startAngle: { type: PropType; default: any; }; visible: { type: PropType; default: any; }; crosshair: { type: PropType; default: () => any; }; labels: { type: PropType; default: () => any; }; title: { type: PropType; default: () => any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; default: any; }; color: { type: PropType; default: any; }; line: { type: PropType; default: () => any; }; majorGridLines: { type: PropType; default: () => any; }; majorTicks: { type: PropType; default: () => any; }; minorGridLines: { type: PropType; default: () => any; }; minorTicks: { type: PropType; default: () => any; }; narrowRange: { type: PropType; default: any; }; pane: { type: PropType; default: any; }; plotBands: { type: PropType; default: () => any; }; reverse: { type: PropType; default: any; }; startAngle: { type: PropType; default: any; }; visible: { type: PropType; default: any; }; crosshair: { type: PropType; default: () => any; }; labels: { type: PropType; default: () => any; }; title: { type: PropType; default: () => any; }; }>> & Readonly<{}>, { line: import('../field-types/axis-line.interface').AxisLine; color: string; background: string; visible: boolean; reverse: boolean; title: import('../common/property-types').AxisDefaultsTitle; crosshair: import('../common/property-types').AxisDefaultsCrosshair; labels: import('../common/property-types').AxisDefaultsLabels; majorGridLines: import('../field-types/grid-lines.interface').GridLines; majorTicks: import('../field-types/axis-ticks.interface').AxisTicks; minorGridLines: import('../field-types/grid-lines.interface').GridLines; minorTicks: import('../field-types/axis-ticks.interface').AxisTicks; narrowRange: boolean; pane: string; plotBands: import('../field-types/plot-band.interface').PlotBand[]; startAngle: number; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartAxisDefaults };