/*! * devextreme-angular * Version: 19.1.16 * Build date: Tue Oct 18 2022 * * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-angular */ import { QueryList } from '@angular/core'; import DevExpress from 'devextreme/bundles/dx.all'; import { NestedOptionHost } from '../../core/nested-option'; import { NestedOption } from '../../core/nested-option'; import { DxiConstantLineComponent } from './constant-line-dxi'; import { DxiStripComponent } from './strip-dxi'; export declare class DxoValueAxisComponent extends NestedOption { allowDecimals: boolean; axisDivisionFactor: number; categories: Array; color: string; constantLines: Array; constantLineStyle: { color?: string; dashStyle?: string; label?: { font?: DevExpress.viz.Font; visible?: boolean; }; width?: number; }; discreteAxisDivisionMode: string; endOnTick: boolean; grid: { color?: string; opacity?: number; visible?: boolean; width?: number; }; inverted: boolean; label: { customizeHint?: Function; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; indentFromAxis?: number; overlappingBehavior?: string; visible?: boolean; }; logarithmBase: number; maxValueMargin: number; minorGrid: { color?: string; opacity?: number; visible?: boolean; width?: number; }; minorTick: { color?: string; length?: number; opacity?: number; visible?: boolean; width?: number; }; minorTickCount: number; minorTickInterval: number | string | { days?: number; hours?: number; milliseconds?: number; minutes?: number; months?: number; quarters?: number; seconds?: number; weeks?: number; years?: number; }; minValueMargin: number; opacity: number; showZero: boolean; strips: Array; stripStyle: { label?: { font?: DevExpress.viz.Font; }; }; tick: { color?: string; length?: number; opacity?: number; visible?: boolean; width?: number; }; tickInterval: number | string | { days?: number; hours?: number; milliseconds?: number; minutes?: number; months?: number; quarters?: number; seconds?: number; weeks?: number; years?: number; }; type: string; valueMarginsEnabled: boolean; valueType: string; visible: boolean; width: number; max: number; min: number; protected readonly _optionPath: string; constantLinesChildren: QueryList; stripsChildren: QueryList; constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost); } export declare class DxoValueAxisModule { }