UNPKG

devextreme-angular

Version:

Angular UI and visualization components based on DevExtreme widgets

1,696 lines (1,529 loc) • 63.8 kB
/*! * devextreme-angular * Version: 20.2.5 * Build date: Fri Jan 15 2021 * * Copyright (c) 2012 - 2021 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 { TransferState } from '@angular/platform-browser'; import { ElementRef, NgZone, OnDestroy, EventEmitter, OnChanges, DoCheck, SimpleChanges, QueryList } from '@angular/core'; import DevExpress from 'devextreme/bundles/dx.all'; import { format } from 'devextreme/ui/widget/ui.widget'; import { dxChartCommonAnnotationConfig } from 'devextreme/viz/chart'; import { Font } from 'devextreme/viz/core/base_widget'; import DxChart from 'devextreme/viz/chart'; import { DxComponent, DxTemplateHost, NestedOptionHost, IterableDifferHelper, WatcherHelper } from 'devextreme-angular/core'; import { DxiAnnotationComponent } from 'devextreme-angular/ui/nested'; import { DxiPaneComponent } from 'devextreme-angular/ui/nested'; import { DxiSeriesComponent } from 'devextreme-angular/ui/nested'; import { DxiValueAxisComponent } from 'devextreme-angular/ui/nested'; /** * The Chart is a UI component that visualizes data from a local or remote storage using a great variety of series types along with different interactive elements, such as tooltips, crosshair pointer, legend, etc. */ export declare class DxChartComponent extends DxComponent implements OnDestroy, OnChanges, DoCheck { private _watcherHelper; private _idh; instance: DxChart; /** * Specifies adaptive layout properties. */ adaptiveLayout: { height?: number; keepLabels?: boolean; width?: number; }; /** * Specifies whether to adjust the value axis's visualRange when the argument axis is being zoomed or panned. */ adjustOnZoom: boolean; /** * Specifies animation properties. */ animation: boolean | { duration?: number; easing?: string; enabled?: boolean; maxPointCountSupported?: number; }; /** * Specifies the annotation collection. */ annotations: Array<DevExpress.viz.dxChartAnnotationConfig | any>; /** * Configures the argument axis. */ argumentAxis: { aggregateByCategory?: boolean; aggregationGroupWidth?: number; aggregationInterval?: number | string | { days?: number; hours?: number; milliseconds?: number; minutes?: number; months?: number; quarters?: number; seconds?: number; weeks?: number; years?: number; }; allowDecimals?: boolean; argumentType?: string; axisDivisionFactor?: number; breaks?: Array<DevExpress.viz.ScaleBreak>; breakStyle?: { color?: string; line?: string; width?: number; }; categories?: Array<number | string | Date>; color?: string; constantLines?: Array<any | { color?: string; dashStyle?: string; displayBehindSeries?: boolean; extendAxis?: boolean; label?: { font?: Font; horizontalAlignment?: string; position?: string; text?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; value?: Date | number | string; width?: number; }>; constantLineStyle?: { color?: string; dashStyle?: string; label?: { font?: Font; horizontalAlignment?: string; position?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; width?: number; }; customPosition?: Date | number | string; customPositionAxis?: string; discreteAxisDivisionMode?: string; endOnTick?: boolean; grid?: { color?: string; opacity?: number; visible?: boolean; width?: number; }; holidays?: Array<Date | string | number>; hoverMode?: string; inverted?: boolean; label?: { alignment?: string; customizeHint?: Function; customizeText?: Function; displayMode?: string; font?: Font; format?: format | string; indentFromAxis?: number; overlappingBehavior?: string; position?: string; rotationAngle?: number; staggeringSpacing?: number; template?: any; textOverflow?: string; visible?: boolean; wordWrap?: string; }; linearThreshold?: number; logarithmBase?: number; maxValueMargin?: number; 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; }; offset?: number; opacity?: number; placeholderSize?: number; position?: string; singleWorkdays?: Array<Date | string | number>; strips?: Array<any | { color?: string; endValue?: Date | number | string; label?: { font?: Font; horizontalAlignment?: string; text?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; startValue?: Date | number | string; }>; stripStyle?: { label?: { font?: Font; horizontalAlignment?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: 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?: Font; margin?: number; text?: string; textOverflow?: string; wordWrap?: string; }; type?: string; valueMarginsEnabled?: boolean; visible?: boolean; visualRange?: DevExpress.viz.VizRange | Array<number | string | Date>; visualRangeUpdateMode?: string; wholeRange?: DevExpress.viz.VizRange | Array<number | string | Date>; width?: number; workdaysOnly?: boolean; workWeek?: Array<number>; }; /** * Specifies whether to hide series point markers automatically to reduce visual clutter. */ autoHidePointMarkers: boolean; /** * Controls the padding and consequently the width of a group of bars with the same argument using relative units. Ignored if the barGroupWidth property is set. */ barGroupPadding: number; /** * Specifies a fixed width for groups of bars with the same argument, measured in pixels. Takes precedence over the barGroupPadding property. */ barGroupWidth: number; /** * Specifies settings common for all annotations in the chart. */ commonAnnotationSettings: dxChartCommonAnnotationConfig; /** * Defines common settings for both the argument and value axis in a chart. */ commonAxisSettings: { allowDecimals?: boolean; breakStyle?: { color?: string; line?: string; width?: number; }; color?: string; constantLineStyle?: { color?: string; dashStyle?: string; label?: { font?: Font; position?: 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; displayMode?: string; font?: Font; indentFromAxis?: number; overlappingBehavior?: string; position?: string; rotationAngle?: number; staggeringSpacing?: number; template?: any; textOverflow?: string; visible?: boolean; wordWrap?: string; }; maxValueMargin?: number; minorGrid?: { color?: string; opacity?: number; visible?: boolean; width?: number; }; minorTick?: { color?: string; length?: number; opacity?: number; shift?: number; visible?: boolean; width?: number; }; minValueMargin?: number; opacity?: number; placeholderSize?: number; stripStyle?: { label?: { font?: Font; horizontalAlignment?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; }; tick?: { color?: string; length?: number; opacity?: number; shift?: number; visible?: boolean; width?: number; }; title?: { alignment?: string; font?: Font; margin?: number; textOverflow?: string; wordWrap?: string; }; valueMarginsEnabled?: boolean; visible?: boolean; width?: number; }; /** * Defines common settings for all panes in a chart. */ commonPaneSettings: { backgroundColor?: string; border?: { bottom?: boolean; color?: string; dashStyle?: string; left?: boolean; opacity?: number; right?: boolean; top?: boolean; visible?: boolean; width?: number; }; }; /** * Specifies settings common for all series in the chart. */ commonSeriesSettings: any; /** * Colors the background of the chart container. */ containerBackgroundColor: string; /** * Configures the crosshair feature. */ crosshair: { color?: string; dashStyle?: string; enabled?: boolean; horizontalLine?: boolean | { color?: string; dashStyle?: string; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; visible?: boolean; width?: number; }; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; verticalLine?: boolean | { color?: string; dashStyle?: string; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; visible?: boolean; width?: number; }; width?: number; }; /** * Customizes an individual annotation. */ customizeAnnotation: Function; /** * Customizes the appearance of an individual point label. */ customizeLabel: Function; /** * Customizes the appearance of an individual series point. */ customizePoint: Function; /** * Processes data before visualizing it. */ dataPrepareSettings: { checkTypeForAllData?: boolean; convertToAxisDataType?: boolean; sortingMethod?: boolean | Function; }; /** * Binds the UI component to data. */ dataSource: DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string | Array<any>; /** * Specifies which pane should be used by default. */ defaultPane: string; /** * Specifies whether the UI component responds to user interaction. */ disabled: boolean; /** * Specifies the global attributes to be attached to the UI component's container element. */ elementAttr: any; /** * Configures the exporting and printing features. */ export: { backgroundColor?: string; enabled?: boolean; fileName?: string; formats?: Array<string>; margin?: number; printingEnabled?: boolean; proxyUrl?: string; svgToCanvas?: Function; }; /** * Specifies the properties of a chart's legend. */ legend: { backgroundColor?: string; border?: { color?: string; cornerRadius?: number; dashStyle?: string; opacity?: number; visible?: boolean; width?: number; }; columnCount?: number; columnItemSpacing?: number; customizeHint?: Function; customizeItems?: Function; customizeText?: Function; font?: Font; horizontalAlignment?: string; hoverMode?: string; itemsAlignment?: string; itemTextPosition?: string; margin?: number | { bottom?: number; left?: number; right?: number; top?: number; }; markerSize?: number; markerTemplate?: any; orientation?: string; paddingLeftRight?: number; paddingTopBottom?: number; position?: string; rowCount?: number; rowItemSpacing?: number; title?: string | { font?: DevExpress.viz.Font; horizontalAlignment?: string; margin?: { bottom?: number; left?: number; right?: number; top?: number; }; placeholderSize?: number; subtitle?: string | { font?: DevExpress.viz.Font; offset?: number; text?: string; }; text?: string; verticalAlignment?: string; }; verticalAlignment?: string; visible?: boolean; }; /** * Configures the loading indicator. */ loadingIndicator: { backgroundColor?: string; enabled?: boolean; font?: Font; show?: boolean; text?: string; }; /** * Generates space around the UI component. */ margin: { bottom?: number; left?: number; right?: number; top?: number; }; /** * Specifies a coefficient determining the diameter of the largest bubble. */ maxBubbleSize: number; /** * Specifies the diameter of the smallest bubble measured in pixels. */ minBubbleSize: number; /** * Forces the UI component to treat negative values as zeroes. Applies to stacked-like series only. */ negativesAsZeroes: boolean; /** * Sets the palette to be used for colorizing series and their elements. */ palette: string | Array<string>; /** * Specifies what to do with colors in the palette when their number is less than the number of series (in the Chart UI component) or points in a series (in the PieChart UI component). */ paletteExtensionMode: string; /** * Declares a collection of panes. */ panes: Array<any | { backgroundColor?: string; border?: { bottom?: boolean; color?: string; dashStyle?: string; left?: boolean; opacity?: number; right?: boolean; top?: boolean; visible?: boolean; width?: number; }; height?: number | string; name?: string; }>; /** * Notifies the UI component that it is embedded into an HTML page that uses a tag modifying the path. */ pathModified: boolean; /** * Specifies whether a single point or multiple points can be selected in the chart. */ pointSelectionMode: string; /** * Specifies whether to redraw the UI component when the size of the parent browser window changes or a mobile device rotates. */ redrawOnResize: boolean; /** * Specifies whether panes can be resized if other chart elements require more space after zooming or panning. */ resizePanesOnZoom: boolean; /** * Specifies how the chart must behave when series point labels overlap. */ resolveLabelOverlapping: string; /** * Swaps the axes around making the value axis horizontal and the argument axis vertical. */ rotated: boolean; /** * Switches the UI component to a right-to-left representation. */ rtlEnabled: boolean; /** * Specifies the settings of the scroll bar. */ scrollBar: { color?: string; offset?: number; opacity?: number; position?: string; visible?: boolean; width?: number; }; /** * Specifies properties for Chart UI component series. */ series: any | Array<any>; /** * Specifies whether a single series or multiple series can be selected in the chart. */ seriesSelectionMode: string; /** * Defines properties for the series template. */ seriesTemplate: { customizeSeries?: Function; nameField?: string; }; /** * Specifies the UI component's size in pixels. */ size: { height?: number; width?: number; }; /** * Specifies whether a point should remain in the hover state when the mouse pointer moves away. */ stickyHovering: boolean; /** * Indicates whether or not to synchronize value axes when they are displayed on a single pane. */ synchronizeMultiAxes: boolean; /** * Sets the name of the theme the UI component uses. */ theme: string; /** * Configures the UI component's title. */ title: string | { font?: Font; horizontalAlignment?: string; margin?: number | { bottom?: number; left?: number; right?: number; top?: number; }; placeholderSize?: number; subtitle?: string | { font?: DevExpress.viz.Font; offset?: number; text?: string; textOverflow?: string; wordWrap?: string; }; text?: string; textOverflow?: string; verticalAlignment?: string; wordWrap?: string; }; /** * Configures tooltips. */ tooltip: { argumentFormat?: format | string; arrowLength?: number; border?: { color?: string; dashStyle?: string; opacity?: number; visible?: boolean; width?: number; }; color?: string; container?: Element | JQuery | string; contentTemplate?: any; cornerRadius?: number; customizeTooltip?: Function; enabled?: boolean; font?: Font; format?: format | string; interactive?: boolean; location?: string; opacity?: number; paddingLeftRight?: number; paddingTopBottom?: number; shadow?: { blur?: number; color?: string; offsetX?: number; offsetY?: number; opacity?: number; }; shared?: boolean; zIndex?: number; }; /** * Configures the value axis. */ valueAxis: Array<any | { allowDecimals?: boolean; autoBreaksEnabled?: boolean; axisDivisionFactor?: number; breaks?: Array<DevExpress.viz.ScaleBreak>; breakStyle?: { color?: string; line?: string; width?: number; }; categories?: Array<number | string | Date>; color?: string; constantLines?: Array<any | { color?: string; dashStyle?: string; displayBehindSeries?: boolean; extendAxis?: boolean; label?: { font?: Font; horizontalAlignment?: string; position?: string; text?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; value?: Date | number | string; width?: number; }>; constantLineStyle?: { color?: string; dashStyle?: string; label?: { font?: Font; horizontalAlignment?: string; position?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; width?: number; }; customPosition?: Date | number | string; 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?: Font; format?: format | string; indentFromAxis?: number; overlappingBehavior?: string; position?: string; rotationAngle?: number; staggeringSpacing?: number; template?: any; textOverflow?: string; visible?: boolean; wordWrap?: string; }; linearThreshold?: number; logarithmBase?: number; maxAutoBreakCount?: number; maxValueMargin?: number; 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; offset?: number; opacity?: number; pane?: string; placeholderSize?: number; position?: string; showZero?: boolean; strips?: Array<any | { color?: string; endValue?: Date | number | string; label?: { font?: Font; horizontalAlignment?: string; text?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; startValue?: Date | number | string; }>; stripStyle?: { label?: { font?: 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?: Font; margin?: number; text?: string; textOverflow?: string; wordWrap?: string; }; type?: string; valueMarginsEnabled?: boolean; valueType?: string; visible?: boolean; visualRange?: DevExpress.viz.VizRange | Array<number | string | Date>; visualRangeUpdateMode?: string; wholeRange?: DevExpress.viz.VizRange | Array<number | string | Date>; width?: number; }>; /** * Configures zooming and panning. */ zoomAndPan: { allowMouseWheel?: boolean; allowTouchGestures?: boolean; argumentAxis?: string; dragBoxStyle?: { color?: string; opacity?: number; }; dragToZoom?: boolean; panKey?: string; valueAxis?: string; }; /** * A function that is executed when a label on the argument axis is clicked or tapped. */ onArgumentAxisClick: EventEmitter<any>; /** * A function that is executed before the UI component is disposed of. */ onDisposing: EventEmitter<any>; /** * A function that is executed when all series are ready. */ onDone: EventEmitter<any>; /** * A function that is executed when the UI component's rendering has finished. */ onDrawn: EventEmitter<any>; /** * A function that is executed after the UI component is exported. */ onExported: EventEmitter<any>; /** * A function that is executed before the UI component is exported. */ onExporting: EventEmitter<any>; /** * A function that is executed before a file with exported UI component is saved to the user's local storage. */ onFileSaving: EventEmitter<any>; /** * A function that is executed when an error or warning occurs. */ onIncidentOccurred: EventEmitter<any>; /** * A function used in JavaScript frameworks to save the UI component instance. */ onInitialized: EventEmitter<any>; /** * A function that is executed when a legend item is clicked or tapped. */ onLegendClick: EventEmitter<any>; /** * A function that is executed after a UI component property is changed. */ onOptionChanged: EventEmitter<any>; /** * A function that is executed when a series point is clicked or tapped. */ onPointClick: EventEmitter<any>; /** * A function that is executed after the pointer enters or leaves a series point. */ onPointHoverChanged: EventEmitter<any>; /** * A function that is executed when a series point is selected or selection is canceled. */ onPointSelectionChanged: EventEmitter<any>; /** * A function that is executed when a series is clicked or tapped. */ onSeriesClick: EventEmitter<any>; /** * A function that is executed after the pointer enters or leaves a series. */ onSeriesHoverChanged: EventEmitter<any>; /** * A function that is executed when a series is selected or selection is canceled. */ onSeriesSelectionChanged: EventEmitter<any>; /** * A function that is executed when a tooltip becomes hidden. */ onTooltipHidden: EventEmitter<any>; /** * A function that is executed when a tooltip appears. */ onTooltipShown: EventEmitter<any>; /** * A function that is executed when zooming or panning ends. */ onZoomEnd: EventEmitter<any>; /** * A function that is executed when zooming or panning begins. */ onZoomStart: EventEmitter<any>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ adaptiveLayoutChange: EventEmitter<{ height?: number; keepLabels?: boolean; width?: number; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ adjustOnZoomChange: EventEmitter<boolean>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ animationChange: EventEmitter<boolean | { duration?: number; easing?: string; enabled?: boolean; maxPointCountSupported?: number; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ annotationsChange: EventEmitter<Array<DevExpress.viz.dxChartAnnotationConfig | any>>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ argumentAxisChange: EventEmitter<{ aggregateByCategory?: boolean; aggregationGroupWidth?: number; aggregationInterval?: number | string | { days?: number; hours?: number; milliseconds?: number; minutes?: number; months?: number; quarters?: number; seconds?: number; weeks?: number; years?: number; }; allowDecimals?: boolean; argumentType?: string; axisDivisionFactor?: number; breaks?: Array<DevExpress.viz.ScaleBreak>; breakStyle?: { color?: string; line?: string; width?: number; }; categories?: Array<number | string | Date>; color?: string; constantLines?: Array<any | { color?: string; dashStyle?: string; displayBehindSeries?: boolean; extendAxis?: boolean; label?: { font?: Font; horizontalAlignment?: string; position?: string; text?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; value?: Date | number | string; width?: number; }>; constantLineStyle?: { color?: string; dashStyle?: string; label?: { font?: Font; horizontalAlignment?: string; position?: string; verticalAlignment?: string; visible?: boolean; }; paddingLeftRight?: number; paddingTopBottom?: number; width?: number; }; customPosition?: Date | number | string; customPositionAxis?: string; discreteAxisDivisionMode?: string; endOnTick?: boolean; grid?: { color?: string; opacity?: number; visible?: boolean; width?: number; }; holidays?: Array<Date | string | number>; hoverMode?: string; inverted?: boolean; label?: { alignment?: string; customizeHint?: Function; customizeText?: Function; displayMode?: string; font?: Font; format?: format | string; indentFromAxis?: number; overlappingBehavior?: string; position?: string; rotationAngle?: number; staggeringSpacing?: number; template?: any; textOverflow?: string; visible?: boolean; wordWrap?: string; }; linearThreshold?: number; logarithmBase?: number; maxValueMargin?: number; 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; }; offset?: number; opacity?: number; placeholderSize?: number; position?: string; singleWorkdays?: Array<Date | string | number>; strips?: Array<any | { color?: string; endValue?: Date | number | string; label?: { font?: Font; horizontalAlignment?: string; text?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; startValue?: Date | number | string; }>; stripStyle?: { label?: { font?: Font; horizontalAlignment?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: 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?: Font; margin?: number; text?: string; textOverflow?: string; wordWrap?: string; }; type?: string; valueMarginsEnabled?: boolean; visible?: boolean; visualRange?: DevExpress.viz.VizRange | Array<number | string | Date>; visualRangeUpdateMode?: string; wholeRange?: DevExpress.viz.VizRange | Array<number | string | Date>; width?: number; workdaysOnly?: boolean; workWeek?: Array<number>; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ autoHidePointMarkersChange: EventEmitter<boolean>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ barGroupPaddingChange: EventEmitter<number>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ barGroupWidthChange: EventEmitter<number>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ commonAnnotationSettingsChange: EventEmitter<dxChartCommonAnnotationConfig>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ commonAxisSettingsChange: EventEmitter<{ allowDecimals?: boolean; breakStyle?: { color?: string; line?: string; width?: number; }; color?: string; constantLineStyle?: { color?: string; dashStyle?: string; label?: { font?: Font; position?: 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; displayMode?: string; font?: Font; indentFromAxis?: number; overlappingBehavior?: string; position?: string; rotationAngle?: number; staggeringSpacing?: number; template?: any; textOverflow?: string; visible?: boolean; wordWrap?: string; }; maxValueMargin?: number; minorGrid?: { color?: string; opacity?: number; visible?: boolean; width?: number; }; minorTick?: { color?: string; length?: number; opacity?: number; shift?: number; visible?: boolean; width?: number; }; minValueMargin?: number; opacity?: number; placeholderSize?: number; stripStyle?: { label?: { font?: Font; horizontalAlignment?: string; verticalAlignment?: string; }; paddingLeftRight?: number; paddingTopBottom?: number; }; tick?: { color?: string; length?: number; opacity?: number; shift?: number; visible?: boolean; width?: number; }; title?: { alignment?: string; font?: Font; margin?: number; textOverflow?: string; wordWrap?: string; }; valueMarginsEnabled?: boolean; visible?: boolean; width?: number; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ commonPaneSettingsChange: EventEmitter<{ backgroundColor?: string; border?: { bottom?: boolean; color?: string; dashStyle?: string; left?: boolean; opacity?: number; right?: boolean; top?: boolean; visible?: boolean; width?: number; }; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ commonSeriesSettingsChange: EventEmitter<any>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ containerBackgroundColorChange: EventEmitter<string>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ crosshairChange: EventEmitter<{ color?: string; dashStyle?: string; enabled?: boolean; horizontalLine?: boolean | { color?: string; dashStyle?: string; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; visible?: boolean; width?: number; }; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; verticalLine?: boolean | { color?: string; dashStyle?: string; label?: { backgroundColor?: string; customizeText?: Function; font?: DevExpress.viz.Font; format?: DevExpress.ui.format | string; visible?: boolean; }; opacity?: number; visible?: boolean; width?: number; }; width?: number; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ customizeAnnotationChange: EventEmitter<Function>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ customizeLabelChange: EventEmitter<Function>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ customizePointChange: EventEmitter<Function>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dataPrepareSettingsChange: EventEmitter<{ checkTypeForAllData?: boolean; convertToAxisDataType?: boolean; sortingMethod?: boolean | Function; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ dataSourceChange: EventEmitter<DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string | Array<any>>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ defaultPaneChange: EventEmitter<string>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ disabledChange: EventEmitter<boolean>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ elementAttrChange: EventEmitter<any>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ exportChange: EventEmitter<{ backgroundColor?: string; enabled?: boolean; fileName?: string; formats?: Array<string>; margin?: number; printingEnabled?: boolean; proxyUrl?: string; svgToCanvas?: Function; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ legendChange: EventEmitter<{ backgroundColor?: string; border?: { color?: string; cornerRadius?: number; dashStyle?: string; opacity?: number; visible?: boolean; width?: number; }; columnCount?: number; columnItemSpacing?: number; customizeHint?: Function; customizeItems?: Function; customizeText?: Function; font?: Font; horizontalAlignment?: string; hoverMode?: string; itemsAlignment?: string; itemTextPosition?: string; margin?: number | { bottom?: number; left?: number; right?: number; top?: number; }; markerSize?: number; markerTemplate?: any; orientation?: string; paddingLeftRight?: number; paddingTopBottom?: number; position?: string; rowCount?: number; rowItemSpacing?: number; title?: string | { font?: DevExpress.viz.Font; horizontalAlignment?: string; margin?: { bottom?: number; left?: number; right?: number; top?: number; }; placeholderSize?: number; subtitle?: string | { font?: DevExpress.viz.Font; offset?: number; text?: string; }; text?: string; verticalAlignment?: string; }; verticalAlignment?: string; visible?: boolean; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ loadingIndicatorChange: EventEmitter<{ backgroundColor?: string; enabled?: boolean; font?: Font; show?: boolean; text?: string; }>; /** * This member supports the internal infrastructure and is not intended to be used directly from your code. */ marginChange: Even