| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /*!
- * 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<number | string | Date>;
- color: string;
- constantLines: Array<any | {
- color?: string;
- dashStyle?: string;
- displayBehindSeries?: boolean;
- extendAxis?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- visible?: boolean;
- };
- value?: Date | number | string;
- width?: number;
- }>;
- 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<any | {
- color?: string;
- endValue?: Date | number | string;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- };
- startValue?: Date | number | string;
- }>;
- 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<DxiConstantLineComponent>;
- stripsChildren: QueryList<DxiStripComponent>;
- constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
- }
- export declare class DxoValueAxisModule {
- }
|