/*! * 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 { EventEmitter, QueryList } from '@angular/core'; import DevExpress from 'devextreme/bundles/dx.all'; import { NestedOptionHost } from '../../core/nested-option'; import { CollectionNestedOption } from '../../core/nested-option'; import { DxiBreakComponent } from './break-dxi'; import { DxiConstantLineComponent } from './constant-line-dxi'; import { DxiStripComponent } from './strip-dxi'; export declare class DxiValueAxisComponent extends CollectionNestedOption { allowDecimals: boolean; autoBreaksEnabled: boolean; axisDivisionFactor: number; breaks: Array; breakStyle: { color?: string; line?: string; width?: number; }; categories: Array; color: string; constantLines: Array; constantLineStyle: { color?: string; dashStyle?: string; label?: { font?: DevExpress.viz.Font; horizontalAlignment?: string; position?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; width?: number; }; discreteAxisDivisionMode: string; endOnTick: boolean; grid: { color?: string; opacity?: number; visible?: boolean; width?: number; }; inverted: boolean; label: { alignment?: string; customizeHint?: Function; customizeText?: Function; displayMode?: string; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; indentFromAxis?: number; overlappingBehavior?: string; rotationAngle?: number; staggeringSpacing?: number; textOverflow?: string; visible?: boolean; wordWrap?: string; }; logarithmBase: number; max: Date | number | string; maxAutoBreakCount: number; maxValueMargin: number; min: Date | number | string; minorGrid: { color?: string; opacity?: number; visible?: boolean; width?: number; }; minorTick: { color?: string; length?: number; opacity?: number; shift?: 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; minVisualRangeLength: number | string | { days?: number; hours?: number; milliseconds?: number; minutes?: number; months?: number; quarters?: number; seconds?: number; weeks?: number; years?: number; }; multipleAxesSpacing: number; name: string; opacity: number; pane: string; placeholderSize: number; position: string; showZero: boolean; strips: Array; stripStyle: { label?: { font?: DevExpress.viz.Font; horizontalAlignment?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; }; synchronizedValue: number; tick: { color?: string; length?: number; opacity?: number; shift?: 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; }; title: string | { alignment?: string; font?: DevExpress.viz.Font; margin?: number; text?: string; textOverflow?: string; wordWrap?: string; }; type: string; valueMarginsEnabled: boolean; valueType: string; visible: boolean; visualRange: DevExpress.viz.VizRange | Array; visualRangeUpdateMode: string; wholeRange: DevExpress.viz.VizRange | Array; width: number; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ visualRangeChange: EventEmitter>; protected readonly _optionPath: string; breaksChildren: QueryList; constantLinesChildren: QueryList; stripsChildren: QueryList; constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost); } export declare class DxiValueAxisModule { }