/*! * devextreme-vue * Version: 25.2.8 * Build date: Mon Jun 08 2026 * * Copyright (c) 2012 - 2026 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 */ import { PropType } from "vue"; import Chart, { Properties } from "devextreme/viz/chart"; import DataSource from "devextreme/data/data_source"; import { dxChartAnnotationConfig, dxChartCommonAnnotationConfig, ArgumentAxisClickEvent, DisposingEvent, DoneEvent, DrawnEvent, ExportedEvent, ExportingEvent, FileSavingEvent, IncidentOccurredEvent, InitializedEvent, LegendClickEvent, OptionChangedEvent, PointClickEvent, PointHoverChangedEvent, PointSelectionChangedEvent, SeriesClickEvent, SeriesHoverChangedEvent, SeriesSelectionChangedEvent, TooltipHiddenEvent, TooltipShownEvent, ZoomEndEvent, ZoomStartEvent, chartPointAggregationInfoObject, chartSeriesObject, ChartSeriesAggregationMethod, AggregatedPointsPosition, ChartLabelDisplayMode, chartPointObject, FinancialChartReductionLevel, dxChartPointInfo, ChartTooltipLocation, ChartZoomAndPanMode, EventKeyModifier } from "devextreme/viz/chart"; import { SeriesLabel, SeriesPoint, Palette, PaletteExtensionMode, ChartsLabelOverlap, Theme, AnimationEaseMode, Font, TextOverflow, AnnotationType, WordWrap, DashStyle, TimeInterval, ChartsDataType, ScaleBreak, DiscreteAxisDivisionMode, ArgumentAxisHoverMode, AxisScaleType, VisualRangeUpdateMode, RelativePosition, ChartsAxisLabelOverlap, ScaleBreakLineStyle, ChartsColor, SeriesHoverMode, SeriesSelectionMode, SeriesType, HatchDirection, LegendItem, LegendHoverMode, PointInteractionMode, PointSymbol, ValueAxisVisualRangeUpdateMode, ValueErrorBarDisplayMode, ValueErrorBarType } from "devextreme/common/charts"; import { DataSourceOptions } from "devextreme/common/data"; import { Store } from "devextreme/data/store"; import { SingleOrMultiple, Position, HorizontalAlignment, VerticalAlignment, VerticalEdge, ExportFormat, Orientation } from "devextreme/common"; import { ChartSeries } from "devextreme/viz/common"; import * as CommonChartTypes from "devextreme/common/charts"; type AccessibleOptions = Pick; interface DxChart extends AccessibleOptions { readonly instance?: Chart; } declare const DxChart: import("vue").DefineComponent<{ adaptiveLayout: PropType>; adjustOnZoom: BooleanConstructor; animation: PropType>; annotations: PropType; argumentAxis: PropType>; autoHidePointMarkers: BooleanConstructor; barGroupPadding: NumberConstructor; barGroupWidth: NumberConstructor; commonAnnotationSettings: PropType | dxChartCommonAnnotationConfig>; commonAxisSettings: PropType>; commonPaneSettings: PropType>; commonSeriesSettings: PropType>; containerBackgroundColor: StringConstructor; crosshair: PropType>; customizeAnnotation: PropType<(annotation: dxChartAnnotationConfig | any) => dxChartAnnotationConfig>; customizeLabel: PropType<(pointInfo: any) => SeriesLabel>; customizePoint: PropType<(pointInfo: any) => SeriesPoint>; dataPrepareSettings: PropType>; dataSource: PropType | DataSource | DataSourceOptions | Store | null>; defaultPane: StringConstructor; disabled: BooleanConstructor; elementAttr: PropType>; export: PropType>; legend: PropType>; loadingIndicator: PropType>; margin: PropType>; maxBubbleSize: NumberConstructor; minBubbleSize: NumberConstructor; negativesAsZeroes: BooleanConstructor; onArgumentAxisClick: PropType<(e: ArgumentAxisClickEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onDone: PropType<(e: DoneEvent) => void>; onDrawn: PropType<(e: DrawnEvent) => void>; onExported: PropType<(e: ExportedEvent) => void>; onExporting: PropType<(e: ExportingEvent) => void>; onFileSaving: PropType<(e: FileSavingEvent) => void>; onIncidentOccurred: PropType<(e: IncidentOccurredEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onLegendClick: PropType<(e: LegendClickEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onPointClick: PropType<(e: PointClickEvent) => void>; onPointHoverChanged: PropType<(e: PointHoverChangedEvent) => void>; onPointSelectionChanged: PropType<(e: PointSelectionChangedEvent) => void>; onSeriesClick: PropType<(e: SeriesClickEvent) => void>; onSeriesHoverChanged: PropType<(e: SeriesHoverChangedEvent) => void>; onSeriesSelectionChanged: PropType<(e: SeriesSelectionChangedEvent) => void>; onTooltipHidden: PropType<(e: TooltipHiddenEvent) => void>; onTooltipShown: PropType<(e: TooltipShownEvent) => void>; onZoomEnd: PropType<(e: ZoomEndEvent) => void>; onZoomStart: PropType<(e: ZoomStartEvent) => void>; palette: PropType; paletteExtensionMode: PropType; panes: PropType | Record[]>; pathModified: BooleanConstructor; pointSelectionMode: PropType; redrawOnResize: BooleanConstructor; resizePanesOnZoom: BooleanConstructor; resolveLabelOverlapping: PropType; rotated: BooleanConstructor; rtlEnabled: BooleanConstructor; scrollBar: PropType>; series: PropType | ChartSeries | ChartSeries[]>; seriesSelectionMode: PropType; seriesTemplate: PropType>; size: PropType>; stickyHovering: BooleanConstructor; synchronizeMultiAxes: BooleanConstructor; theme: PropType; title: PropType>; tooltip: PropType>; valueAxis: PropType | Record[]>; zoomAndPan: PropType>; }, unknown, unknown, { instance(): Chart; }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:adaptiveLayout": null; "update:adjustOnZoom": null; "update:animation": null; "update:annotations": null; "update:argumentAxis": null; "update:autoHidePointMarkers": null; "update:barGroupPadding": null; "update:barGroupWidth": null; "update:commonAnnotationSettings": null; "update:commonAxisSettings": null; "update:commonPaneSettings": null; "update:commonSeriesSettings": null; "update:containerBackgroundColor": null; "update:crosshair": null; "update:customizeAnnotation": null; "update:customizeLabel": null; "update:customizePoint": null; "update:dataPrepareSettings": null; "update:dataSource": null; "update:defaultPane": null; "update:disabled": null; "update:elementAttr": null; "update:export": null; "update:legend": null; "update:loadingIndicator": null; "update:margin": null; "update:maxBubbleSize": null; "update:minBubbleSize": null; "update:negativesAsZeroes": null; "update:onArgumentAxisClick": null; "update:onDisposing": null; "update:onDone": null; "update:onDrawn": null; "update:onExported": null; "update:onExporting": null; "update:onFileSaving": null; "update:onIncidentOccurred": null; "update:onInitialized": null; "update:onLegendClick": null; "update:onOptionChanged": null; "update:onPointClick": null; "update:onPointHoverChanged": null; "update:onPointSelectionChanged": null; "update:onSeriesClick": null; "update:onSeriesHoverChanged": null; "update:onSeriesSelectionChanged": null; "update:onTooltipHidden": null; "update:onTooltipShown": null; "update:onZoomEnd": null; "update:onZoomStart": null; "update:palette": null; "update:paletteExtensionMode": null; "update:panes": null; "update:pathModified": null; "update:pointSelectionMode": null; "update:redrawOnResize": null; "update:resizePanesOnZoom": null; "update:resolveLabelOverlapping": null; "update:rotated": null; "update:rtlEnabled": null; "update:scrollBar": null; "update:series": null; "update:seriesSelectionMode": null; "update:seriesTemplate": null; "update:size": null; "update:stickyHovering": null; "update:synchronizeMultiAxes": null; "update:theme": null; "update:title": null; "update:tooltip": null; "update:valueAxis": null; "update:zoomAndPan": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; adjustOnZoom: BooleanConstructor; animation: PropType>; annotations: PropType; argumentAxis: PropType>; autoHidePointMarkers: BooleanConstructor; barGroupPadding: NumberConstructor; barGroupWidth: NumberConstructor; commonAnnotationSettings: PropType | dxChartCommonAnnotationConfig>; commonAxisSettings: PropType>; commonPaneSettings: PropType>; commonSeriesSettings: PropType>; containerBackgroundColor: StringConstructor; crosshair: PropType>; customizeAnnotation: PropType<(annotation: dxChartAnnotationConfig | any) => dxChartAnnotationConfig>; customizeLabel: PropType<(pointInfo: any) => SeriesLabel>; customizePoint: PropType<(pointInfo: any) => SeriesPoint>; dataPrepareSettings: PropType>; dataSource: PropType | DataSource | DataSourceOptions | Store | null>; defaultPane: StringConstructor; disabled: BooleanConstructor; elementAttr: PropType>; export: PropType>; legend: PropType>; loadingIndicator: PropType>; margin: PropType>; maxBubbleSize: NumberConstructor; minBubbleSize: NumberConstructor; negativesAsZeroes: BooleanConstructor; onArgumentAxisClick: PropType<(e: ArgumentAxisClickEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onDone: PropType<(e: DoneEvent) => void>; onDrawn: PropType<(e: DrawnEvent) => void>; onExported: PropType<(e: ExportedEvent) => void>; onExporting: PropType<(e: ExportingEvent) => void>; onFileSaving: PropType<(e: FileSavingEvent) => void>; onIncidentOccurred: PropType<(e: IncidentOccurredEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onLegendClick: PropType<(e: LegendClickEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onPointClick: PropType<(e: PointClickEvent) => void>; onPointHoverChanged: PropType<(e: PointHoverChangedEvent) => void>; onPointSelectionChanged: PropType<(e: PointSelectionChangedEvent) => void>; onSeriesClick: PropType<(e: SeriesClickEvent) => void>; onSeriesHoverChanged: PropType<(e: SeriesHoverChangedEvent) => void>; onSeriesSelectionChanged: PropType<(e: SeriesSelectionChangedEvent) => void>; onTooltipHidden: PropType<(e: TooltipHiddenEvent) => void>; onTooltipShown: PropType<(e: TooltipShownEvent) => void>; onZoomEnd: PropType<(e: ZoomEndEvent) => void>; onZoomStart: PropType<(e: ZoomStartEvent) => void>; palette: PropType; paletteExtensionMode: PropType; panes: PropType | Record[]>; pathModified: BooleanConstructor; pointSelectionMode: PropType; redrawOnResize: BooleanConstructor; resizePanesOnZoom: BooleanConstructor; resolveLabelOverlapping: PropType; rotated: BooleanConstructor; rtlEnabled: BooleanConstructor; scrollBar: PropType>; series: PropType | ChartSeries | ChartSeries[]>; seriesSelectionMode: PropType; seriesTemplate: PropType>; size: PropType>; stickyHovering: BooleanConstructor; synchronizeMultiAxes: BooleanConstructor; theme: PropType; title: PropType>; tooltip: PropType>; valueAxis: PropType | Record[]>; zoomAndPan: PropType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:annotations"?: ((...args: any[]) => any) | undefined; "onUpdate:commonAnnotationSettings"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeAnnotation"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:export"?: ((...args: any[]) => any) | undefined; "onUpdate:loadingIndicator"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onDrawn"?: ((...args: any[]) => any) | undefined; "onUpdate:onExported"?: ((...args: any[]) => any) | undefined; "onUpdate:onExporting"?: ((...args: any[]) => any) | undefined; "onUpdate:onFileSaving"?: ((...args: any[]) => any) | undefined; "onUpdate:onIncidentOccurred"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onTooltipHidden"?: ((...args: any[]) => any) | undefined; "onUpdate:onTooltipShown"?: ((...args: any[]) => any) | undefined; "onUpdate:pathModified"?: ((...args: any[]) => any) | undefined; "onUpdate:redrawOnResize"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:theme"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltip"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:dataSource"?: ((...args: any[]) => any) | undefined; "onUpdate:palette"?: ((...args: any[]) => any) | undefined; "onUpdate:paletteExtensionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:animation"?: ((...args: any[]) => any) | undefined; "onUpdate:adaptiveLayout"?: ((...args: any[]) => any) | undefined; "onUpdate:containerBackgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:barGroupPadding"?: ((...args: any[]) => any) | undefined; "onUpdate:barGroupWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:commonSeriesSettings"?: ((...args: any[]) => any) | undefined; "onUpdate:dataPrepareSettings"?: ((...args: any[]) => any) | undefined; "onUpdate:maxBubbleSize"?: ((...args: any[]) => any) | undefined; "onUpdate:minBubbleSize"?: ((...args: any[]) => any) | undefined; "onUpdate:negativesAsZeroes"?: ((...args: any[]) => any) | undefined; "onUpdate:series"?: ((...args: any[]) => any) | undefined; "onUpdate:seriesTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:valueAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:commonAxisSettings"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeLabel"?: ((...args: any[]) => any) | undefined; "onUpdate:customizePoint"?: ((...args: any[]) => any) | undefined; "onUpdate:legend"?: ((...args: any[]) => any) | undefined; "onUpdate:onArgumentAxisClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onDone"?: ((...args: any[]) => any) | undefined; "onUpdate:onLegendClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onPointClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onPointHoverChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onPointSelectionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onSeriesClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onSeriesHoverChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onSeriesSelectionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onZoomEnd"?: ((...args: any[]) => any) | undefined; "onUpdate:onZoomStart"?: ((...args: any[]) => any) | undefined; "onUpdate:pointSelectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:resolveLabelOverlapping"?: ((...args: any[]) => any) | undefined; "onUpdate:seriesSelectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:adjustOnZoom"?: ((...args: any[]) => any) | undefined; "onUpdate:autoHidePointMarkers"?: ((...args: any[]) => any) | undefined; "onUpdate:commonPaneSettings"?: ((...args: any[]) => any) | undefined; "onUpdate:crosshair"?: ((...args: any[]) => any) | undefined; "onUpdate:defaultPane"?: ((...args: any[]) => any) | undefined; "onUpdate:panes"?: ((...args: any[]) => any) | undefined; "onUpdate:resizePanesOnZoom"?: ((...args: any[]) => any) | undefined; "onUpdate:rotated"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollBar"?: ((...args: any[]) => any) | undefined; "onUpdate:stickyHovering"?: ((...args: any[]) => any) | undefined; "onUpdate:synchronizeMultiAxes"?: ((...args: any[]) => any) | undefined; "onUpdate:zoomAndPan"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; pathModified: boolean; redrawOnResize: boolean; rtlEnabled: boolean; negativesAsZeroes: boolean; adjustOnZoom: boolean; autoHidePointMarkers: boolean; resizePanesOnZoom: boolean; rotated: boolean; stickyHovering: boolean; synchronizeMultiAxes: boolean; }>; declare const DxAdaptiveLayout: import("vue").DefineComponent<{ height: NumberConstructor; keepLabels: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:keepLabels": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:keepLabels"?: ((...args: any[]) => any) | undefined; }, { keepLabels: boolean; }>; declare const DxAggregation: import("vue").DefineComponent<{ calculate: PropType<(aggregationInfo: chartPointAggregationInfoObject, series: chartSeriesObject) => Record | Array>>; enabled: BooleanConstructor; method: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:calculate": null; "update:enabled": null; "update:method": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly Record | Array>>; enabled: BooleanConstructor; method: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:calculate"?: ((...args: any[]) => any) | undefined; "onUpdate:method"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; }>; declare const DxAggregationInterval: import("vue").DefineComponent<{ days: NumberConstructor; hours: NumberConstructor; milliseconds: NumberConstructor; minutes: NumberConstructor; months: NumberConstructor; quarters: NumberConstructor; seconds: NumberConstructor; weeks: NumberConstructor; years: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:days": null; "update:hours": null; "update:milliseconds": null; "update:minutes": null; "update:months": null; "update:quarters": null; "update:seconds": null; "update:weeks": null; "update:years": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:days"?: ((...args: any[]) => any) | undefined; "onUpdate:hours"?: ((...args: any[]) => any) | undefined; "onUpdate:milliseconds"?: ((...args: any[]) => any) | undefined; "onUpdate:minutes"?: ((...args: any[]) => any) | undefined; "onUpdate:months"?: ((...args: any[]) => any) | undefined; "onUpdate:quarters"?: ((...args: any[]) => any) | undefined; "onUpdate:seconds"?: ((...args: any[]) => any) | undefined; "onUpdate:weeks"?: ((...args: any[]) => any) | undefined; "onUpdate:years"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxAnimation: import("vue").DefineComponent<{ duration: NumberConstructor; easing: PropType; enabled: BooleanConstructor; maxPointCountSupported: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:duration": null; "update:easing": null; "update:enabled": null; "update:maxPointCountSupported": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; enabled: BooleanConstructor; maxPointCountSupported: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:duration"?: ((...args: any[]) => any) | undefined; "onUpdate:easing"?: ((...args: any[]) => any) | undefined; "onUpdate:maxPointCountSupported"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; }>; declare const DxAnnotation: import("vue").DefineComponent<{ allowDragging: BooleanConstructor; argument: (DateConstructor | NumberConstructor | StringConstructor)[]; arrowLength: NumberConstructor; arrowWidth: NumberConstructor; axis: StringConstructor; border: PropType>; color: StringConstructor; customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record>; data: {}; description: StringConstructor; font: PropType | Font>; height: NumberConstructor; image: PropType>; name: StringConstructor; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; series: StringConstructor; shadow: PropType>; template: {}; text: StringConstructor; textOverflow: PropType; tooltipEnabled: BooleanConstructor; tooltipTemplate: {}; type: PropType; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; wordWrap: PropType; x: NumberConstructor; y: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowDragging": null; "update:argument": null; "update:arrowLength": null; "update:arrowWidth": null; "update:axis": null; "update:border": null; "update:color": null; "update:customizeTooltip": null; "update:data": null; "update:description": null; "update:font": null; "update:height": null; "update:image": null; "update:name": null; "update:offsetX": null; "update:offsetY": null; "update:opacity": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:series": null; "update:shadow": null; "update:template": null; "update:text": null; "update:textOverflow": null; "update:tooltipEnabled": null; "update:tooltipTemplate": null; "update:type": null; "update:value": null; "update:width": null; "update:wordWrap": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: StringConstructor; customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record>; data: {}; description: StringConstructor; font: PropType | Font>; height: NumberConstructor; image: PropType>; name: StringConstructor; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; series: StringConstructor; shadow: PropType>; template: {}; text: StringConstructor; textOverflow: PropType; tooltipEnabled: BooleanConstructor; tooltipTemplate: {}; type: PropType; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; wordWrap: PropType; x: NumberConstructor; y: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:arrowLength"?: ((...args: any[]) => any) | undefined; "onUpdate:arrowWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeTooltip"?: ((...args: any[]) => any) | undefined; "onUpdate:data"?: ((...args: any[]) => any) | undefined; "onUpdate:description"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:image"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetX"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetY"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:shadow"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltipEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltipTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:series"?: ((...args: any[]) => any) | undefined; "onUpdate:axis"?: ((...args: any[]) => any) | undefined; "onUpdate:argument"?: ((...args: any[]) => any) | undefined; }, { allowDragging: boolean; tooltipEnabled: boolean; }>; declare const DxAnnotationBorder: import("vue").DefineComponent<{ color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxAnnotationImage: import("vue").DefineComponent<{ height: NumberConstructor; url: StringConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:url": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:url"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxArgumentAxis: import("vue").DefineComponent<{ aggregatedPointsPosition: PropType; aggregationGroupWidth: NumberConstructor; aggregationInterval: PropType | TimeInterval>; allowDecimals: BooleanConstructor; argumentType: PropType; axisDivisionFactor: NumberConstructor; breaks: PropType; breakStyle: PropType>; categories: PropType<(string | number | Date)[]>; color: StringConstructor; constantLines: PropType[]>; constantLineStyle: PropType>; customPosition: (DateConstructor | NumberConstructor | StringConstructor)[]; customPositionAxis: StringConstructor; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; holidays: PropType; hoverMode: PropType; inverted: BooleanConstructor; label: PropType>; linearThreshold: NumberConstructor; logarithmBase: NumberConstructor; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minorTickCount: NumberConstructor; minorTickInterval: PropType | TimeInterval>; minValueMargin: NumberConstructor; minVisualRangeLength: PropType | TimeInterval>; offset: NumberConstructor; opacity: NumberConstructor; placeholderSize: NumberConstructor; position: PropType; singleWorkdays: PropType; strips: PropType[]>; stripStyle: PropType>; tick: PropType>; tickInterval: PropType | TimeInterval>; title: PropType>; type: PropType; valueMarginsEnabled: BooleanConstructor; visible: BooleanConstructor; visualRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; visualRangeUpdateMode: PropType; wholeRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; width: NumberConstructor; workdaysOnly: BooleanConstructor; workWeek: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aggregatedPointsPosition": null; "update:aggregationGroupWidth": null; "update:aggregationInterval": null; "update:allowDecimals": null; "update:argumentType": null; "update:axisDivisionFactor": null; "update:breaks": null; "update:breakStyle": null; "update:categories": null; "update:color": null; "update:constantLines": null; "update:constantLineStyle": null; "update:customPosition": null; "update:customPositionAxis": null; "update:discreteAxisDivisionMode": null; "update:endOnTick": null; "update:grid": null; "update:holidays": null; "update:hoverMode": null; "update:inverted": null; "update:label": null; "update:linearThreshold": null; "update:logarithmBase": null; "update:maxValueMargin": null; "update:minorGrid": null; "update:minorTick": null; "update:minorTickCount": null; "update:minorTickInterval": null; "update:minValueMargin": null; "update:minVisualRangeLength": null; "update:offset": null; "update:opacity": null; "update:placeholderSize": null; "update:position": null; "update:singleWorkdays": null; "update:strips": null; "update:stripStyle": null; "update:tick": null; "update:tickInterval": null; "update:title": null; "update:type": null; "update:valueMarginsEnabled": null; "update:visible": null; "update:visualRange": null; "update:visualRangeUpdateMode": null; "update:wholeRange": null; "update:width": null; "update:workdaysOnly": null; "update:workWeek": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; aggregationGroupWidth: NumberConstructor; aggregationInterval: PropType | TimeInterval>; allowDecimals: BooleanConstructor; argumentType: PropType; axisDivisionFactor: NumberConstructor; breaks: PropType; breakStyle: PropType>; categories: PropType<(string | number | Date)[]>; color: StringConstructor; constantLines: PropType[]>; constantLineStyle: PropType>; customPosition: (DateConstructor | NumberConstructor | StringConstructor)[]; customPositionAxis: StringConstructor; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; holidays: PropType; hoverMode: PropType; inverted: BooleanConstructor; label: PropType>; linearThreshold: NumberConstructor; logarithmBase: NumberConstructor; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minorTickCount: NumberConstructor; minorTickInterval: PropType | TimeInterval>; minValueMargin: NumberConstructor; minVisualRangeLength: PropType | TimeInterval>; offset: NumberConstructor; opacity: NumberConstructor; placeholderSize: NumberConstructor; position: PropType; singleWorkdays: PropType; strips: PropType[]>; stripStyle: PropType>; tick: PropType>; tickInterval: PropType | TimeInterval>; title: PropType>; type: PropType; valueMarginsEnabled: BooleanConstructor; visible: BooleanConstructor; visualRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; visualRangeUpdateMode: PropType; wholeRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; width: NumberConstructor; workdaysOnly: BooleanConstructor; workWeek: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregationGroupWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregationInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDecimals"?: ((...args: any[]) => any) | undefined; "onUpdate:breaks"?: ((...args: any[]) => any) | undefined; "onUpdate:breakStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:categories"?: ((...args: any[]) => any) | undefined; "onUpdate:discreteAxisDivisionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:endOnTick"?: ((...args: any[]) => any) | undefined; "onUpdate:holidays"?: ((...args: any[]) => any) | undefined; "onUpdate:linearThreshold"?: ((...args: any[]) => any) | undefined; "onUpdate:logarithmBase"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTick"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTickCount"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTickInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:singleWorkdays"?: ((...args: any[]) => any) | undefined; "onUpdate:tick"?: ((...args: any[]) => any) | undefined; "onUpdate:tickInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:workdaysOnly"?: ((...args: any[]) => any) | undefined; "onUpdate:workWeek"?: ((...args: any[]) => any) | undefined; "onUpdate:inverted"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentType"?: ((...args: any[]) => any) | undefined; "onUpdate:axisDivisionFactor"?: ((...args: any[]) => any) | undefined; "onUpdate:constantLines"?: ((...args: any[]) => any) | undefined; "onUpdate:constantLineStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:grid"?: ((...args: any[]) => any) | undefined; "onUpdate:minorGrid"?: ((...args: any[]) => any) | undefined; "onUpdate:strips"?: ((...args: any[]) => any) | undefined; "onUpdate:stripStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:maxValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:minValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:minVisualRangeLength"?: ((...args: any[]) => any) | undefined; "onUpdate:valueMarginsEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:visualRange"?: ((...args: any[]) => any) | undefined; "onUpdate:visualRangeUpdateMode"?: ((...args: any[]) => any) | undefined; "onUpdate:wholeRange"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregatedPointsPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:customPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:customPositionAxis"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; allowDecimals: boolean; endOnTick: boolean; workdaysOnly: boolean; inverted: boolean; valueMarginsEnabled: boolean; }>; declare const DxArgumentFormat: import("vue").DefineComponent<{ currency: StringConstructor; formatter: PropType<(value: number | Date) => string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:currency": null; "update:formatter": null; "update:parser": null; "update:precision": null; "update:type": null; "update:useCurrencyAccountingStyle": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:currency"?: ((...args: any[]) => any) | undefined; "onUpdate:formatter"?: ((...args: any[]) => any) | undefined; "onUpdate:parser"?: ((...args: any[]) => any) | undefined; "onUpdate:precision"?: ((...args: any[]) => any) | undefined; "onUpdate:useCurrencyAccountingStyle"?: ((...args: any[]) => any) | undefined; }, { useCurrencyAccountingStyle: boolean; }>; declare const DxAxisConstantLineStyle: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxAxisConstantLineStyleLabel: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; position: PropType; verticalAlignment: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:position": null; "update:verticalAlignment": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; position: PropType; verticalAlignment: PropType; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxAxisLabel: import("vue").DefineComponent<{ alignment: PropType; customizeHint: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; customizeText: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; displayMode: PropType; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; staggeringSpacing: NumberConstructor; template: {}; textOverflow: PropType; visible: BooleanConstructor; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:customizeHint": null; "update:customizeText": null; "update:displayMode": null; "update:font": null; "update:format": null; "update:indentFromAxis": null; "update:overlappingBehavior": null; "update:position": null; "update:rotationAngle": null; "update:staggeringSpacing": null; "update:template": null; "update:textOverflow": null; "update:visible": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; customizeHint: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; customizeText: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; displayMode: PropType; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; staggeringSpacing: NumberConstructor; template: {}; textOverflow: PropType; visible: BooleanConstructor; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeHint"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:displayMode"?: ((...args: any[]) => any) | undefined; "onUpdate:overlappingBehavior"?: ((...args: any[]) => any) | undefined; "onUpdate:rotationAngle"?: ((...args: any[]) => any) | undefined; "onUpdate:indentFromAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:staggeringSpacing"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxAxisTitle: import("vue").DefineComponent<{ alignment: PropType; font: PropType | Font>; margin: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:font": null; "update:margin": null; "update:text": null; "update:textOverflow": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; font: PropType | Font>; margin: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxBackgroundColor: import("vue").DefineComponent<{ base: StringConstructor; fillId: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:base": null; "update:fillId": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:base"?: ((...args: any[]) => any) | undefined; "onUpdate:fillId"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxBorder: import("vue").DefineComponent<{ bottom: BooleanConstructor; color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType; left: BooleanConstructor; opacity: NumberConstructor; right: BooleanConstructor; top: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:bottom": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:left": null; "update:opacity": null; "update:right": null; "update:top": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; left: BooleanConstructor; opacity: NumberConstructor; right: BooleanConstructor; top: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:bottom"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:right"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; left: boolean; right: boolean; bottom: boolean; top: boolean; }>; declare const DxBreak: import("vue").DefineComponent<{ endValue: (DateConstructor | NumberConstructor | StringConstructor)[]; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:endValue": null; "update:startValue": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:endValue"?: ((...args: any[]) => any) | undefined; "onUpdate:startValue"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxBreakStyle: import("vue").DefineComponent<{ color: StringConstructor; line: PropType; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:line": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:line"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxChartTitle: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:margin": null; "update:placeholderSize": null; "update:subtitle": null; "update:text": null; "update:textOverflow": null; "update:verticalAlignment": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:subtitle"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxChartTitleSubtitle: import("vue").DefineComponent<{ font: PropType | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:offset": null; "update:text": null; "update:textOverflow": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxColor: import("vue").DefineComponent<{ base: StringConstructor; fillId: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:base": null; "update:fillId": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:base"?: ((...args: any[]) => any) | undefined; "onUpdate:fillId"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCommonAnnotationSettings: import("vue").DefineComponent<{ allowDragging: BooleanConstructor; argument: (DateConstructor | NumberConstructor | StringConstructor)[]; arrowLength: NumberConstructor; arrowWidth: NumberConstructor; axis: StringConstructor; border: PropType>; color: StringConstructor; customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record>; data: {}; description: StringConstructor; font: PropType | Font>; height: NumberConstructor; image: PropType>; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; series: StringConstructor; shadow: PropType>; template: {}; text: StringConstructor; textOverflow: PropType; tooltipEnabled: BooleanConstructor; tooltipTemplate: {}; type: PropType; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; wordWrap: PropType; x: NumberConstructor; y: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowDragging": null; "update:argument": null; "update:arrowLength": null; "update:arrowWidth": null; "update:axis": null; "update:border": null; "update:color": null; "update:customizeTooltip": null; "update:data": null; "update:description": null; "update:font": null; "update:height": null; "update:image": null; "update:offsetX": null; "update:offsetY": null; "update:opacity": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:series": null; "update:shadow": null; "update:template": null; "update:text": null; "update:textOverflow": null; "update:tooltipEnabled": null; "update:tooltipTemplate": null; "update:type": null; "update:value": null; "update:width": null; "update:wordWrap": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: StringConstructor; customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record>; data: {}; description: StringConstructor; font: PropType | Font>; height: NumberConstructor; image: PropType>; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; series: StringConstructor; shadow: PropType>; template: {}; text: StringConstructor; textOverflow: PropType; tooltipEnabled: BooleanConstructor; tooltipTemplate: {}; type: PropType; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; wordWrap: PropType; x: NumberConstructor; y: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:arrowLength"?: ((...args: any[]) => any) | undefined; "onUpdate:arrowWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeTooltip"?: ((...args: any[]) => any) | undefined; "onUpdate:data"?: ((...args: any[]) => any) | undefined; "onUpdate:description"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:image"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetX"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetY"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:shadow"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltipEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltipTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:series"?: ((...args: any[]) => any) | undefined; "onUpdate:axis"?: ((...args: any[]) => any) | undefined; "onUpdate:argument"?: ((...args: any[]) => any) | undefined; }, { allowDragging: boolean; tooltipEnabled: boolean; }>; declare const DxCommonAxisSettings: import("vue").DefineComponent<{ aggregatedPointsPosition: PropType; allowDecimals: BooleanConstructor; breakStyle: PropType>; color: StringConstructor; constantLineStyle: PropType>; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; inverted: BooleanConstructor; label: PropType>; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minValueMargin: NumberConstructor; opacity: NumberConstructor; placeholderSize: NumberConstructor; stripStyle: PropType>; tick: PropType>; title: PropType>; valueMarginsEnabled: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aggregatedPointsPosition": null; "update:allowDecimals": null; "update:breakStyle": null; "update:color": null; "update:constantLineStyle": null; "update:discreteAxisDivisionMode": null; "update:endOnTick": null; "update:grid": null; "update:inverted": null; "update:label": null; "update:maxValueMargin": null; "update:minorGrid": null; "update:minorTick": null; "update:minValueMargin": null; "update:opacity": null; "update:placeholderSize": null; "update:stripStyle": null; "update:tick": null; "update:title": null; "update:valueMarginsEnabled": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; allowDecimals: BooleanConstructor; breakStyle: PropType>; color: StringConstructor; constantLineStyle: PropType>; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; inverted: BooleanConstructor; label: PropType>; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minValueMargin: NumberConstructor; opacity: NumberConstructor; placeholderSize: NumberConstructor; stripStyle: PropType>; tick: PropType>; title: PropType>; valueMarginsEnabled: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDecimals"?: ((...args: any[]) => any) | undefined; "onUpdate:breakStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:discreteAxisDivisionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:endOnTick"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTick"?: ((...args: any[]) => any) | undefined; "onUpdate:tick"?: ((...args: any[]) => any) | undefined; "onUpdate:inverted"?: ((...args: any[]) => any) | undefined; "onUpdate:constantLineStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:grid"?: ((...args: any[]) => any) | undefined; "onUpdate:minorGrid"?: ((...args: any[]) => any) | undefined; "onUpdate:stripStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:maxValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:minValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:valueMarginsEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregatedPointsPosition"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; allowDecimals: boolean; endOnTick: boolean; inverted: boolean; valueMarginsEnabled: boolean; }>; declare const DxCommonAxisSettingsConstantLineStyle: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCommonAxisSettingsConstantLineStyleLabel: import("vue").DefineComponent<{ font: PropType | Font>; position: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:position": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; position: PropType; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxCommonAxisSettingsLabel: import("vue").DefineComponent<{ alignment: PropType; displayMode: PropType; font: PropType | Font>; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; staggeringSpacing: NumberConstructor; template: {}; textOverflow: PropType; visible: BooleanConstructor; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:displayMode": null; "update:font": null; "update:indentFromAxis": null; "update:overlappingBehavior": null; "update:position": null; "update:rotationAngle": null; "update:staggeringSpacing": null; "update:template": null; "update:textOverflow": null; "update:visible": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; displayMode: PropType; font: PropType | Font>; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; staggeringSpacing: NumberConstructor; template: {}; textOverflow: PropType; visible: BooleanConstructor; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:displayMode"?: ((...args: any[]) => any) | undefined; "onUpdate:overlappingBehavior"?: ((...args: any[]) => any) | undefined; "onUpdate:rotationAngle"?: ((...args: any[]) => any) | undefined; "onUpdate:indentFromAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:staggeringSpacing"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxCommonAxisSettingsTitle: import("vue").DefineComponent<{ alignment: PropType; font: PropType | Font>; margin: NumberConstructor; textOverflow: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:font": null; "update:margin": null; "update:textOverflow": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; font: PropType | Font>; margin: NumberConstructor; textOverflow: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCommonPaneSettings: import("vue").DefineComponent<{ backgroundColor: PropType | ChartsColor>; border: PropType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:border": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | ChartsColor>; border: PropType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCommonSeriesSettings: import("vue").DefineComponent<{ aggregation: PropType>; area: {}; argumentField: StringConstructor; axis: StringConstructor; bar: {}; barOverlapGroup: StringConstructor; barPadding: NumberConstructor; barWidth: NumberConstructor; border: PropType>; bubble: {}; candlestick: {}; closeValueField: StringConstructor; color: PropType | ChartsColor>; cornerRadius: NumberConstructor; dashStyle: PropType; fullstackedarea: {}; fullstackedbar: {}; fullstackedline: {}; fullstackedspline: {}; fullstackedsplinearea: {}; highValueField: StringConstructor; hoverMode: PropType; hoverStyle: PropType>; ignoreEmptyPoints: BooleanConstructor; innerColor: StringConstructor; label: PropType>; line: {}; lowValueField: StringConstructor; maxLabelCount: NumberConstructor; minBarSize: NumberConstructor; opacity: NumberConstructor; openValueField: StringConstructor; pane: StringConstructor; point: PropType>; rangearea: {}; rangebar: {}; rangeValue1Field: StringConstructor; rangeValue2Field: StringConstructor; reduction: PropType>; scatter: {}; selectionMode: PropType; selectionStyle: PropType>; showInLegend: BooleanConstructor; sizeField: StringConstructor; spline: {}; splinearea: {}; stack: StringConstructor; stackedarea: {}; stackedbar: {}; stackedline: {}; stackedspline: {}; stackedsplinearea: {}; steparea: {}; stepline: {}; stock: {}; tagField: StringConstructor; type: PropType; valueErrorBar: PropType>; valueField: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aggregation": null; "update:area": null; "update:argumentField": null; "update:axis": null; "update:bar": null; "update:barOverlapGroup": null; "update:barPadding": null; "update:barWidth": null; "update:border": null; "update:bubble": null; "update:candlestick": null; "update:closeValueField": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:fullstackedarea": null; "update:fullstackedbar": null; "update:fullstackedline": null; "update:fullstackedspline": null; "update:fullstackedsplinearea": null; "update:highValueField": null; "update:hoverMode": null; "update:hoverStyle": null; "update:ignoreEmptyPoints": null; "update:innerColor": null; "update:label": null; "update:line": null; "update:lowValueField": null; "update:maxLabelCount": null; "update:minBarSize": null; "update:opacity": null; "update:openValueField": null; "update:pane": null; "update:point": null; "update:rangearea": null; "update:rangebar": null; "update:rangeValue1Field": null; "update:rangeValue2Field": null; "update:reduction": null; "update:scatter": null; "update:selectionMode": null; "update:selectionStyle": null; "update:showInLegend": null; "update:sizeField": null; "update:spline": null; "update:splinearea": null; "update:stack": null; "update:stackedarea": null; "update:stackedbar": null; "update:stackedline": null; "update:stackedspline": null; "update:stackedsplinearea": null; "update:steparea": null; "update:stepline": null; "update:stock": null; "update:tagField": null; "update:type": null; "update:valueErrorBar": null; "update:valueField": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; area: {}; argumentField: StringConstructor; axis: StringConstructor; bar: {}; barOverlapGroup: StringConstructor; barPadding: NumberConstructor; barWidth: NumberConstructor; border: PropType>; bubble: {}; candlestick: {}; closeValueField: StringConstructor; color: PropType | ChartsColor>; cornerRadius: NumberConstructor; dashStyle: PropType; fullstackedarea: {}; fullstackedbar: {}; fullstackedline: {}; fullstackedspline: {}; fullstackedsplinearea: {}; highValueField: StringConstructor; hoverMode: PropType; hoverStyle: PropType>; ignoreEmptyPoints: BooleanConstructor; innerColor: StringConstructor; label: PropType>; line: {}; lowValueField: StringConstructor; maxLabelCount: NumberConstructor; minBarSize: NumberConstructor; opacity: NumberConstructor; openValueField: StringConstructor; pane: StringConstructor; point: PropType>; rangearea: {}; rangebar: {}; rangeValue1Field: StringConstructor; rangeValue2Field: StringConstructor; reduction: PropType>; scatter: {}; selectionMode: PropType; selectionStyle: PropType>; showInLegend: BooleanConstructor; sizeField: StringConstructor; spline: {}; splinearea: {}; stack: StringConstructor; stackedarea: {}; stackedbar: {}; stackedline: {}; stackedspline: {}; stackedsplinearea: {}; steparea: {}; stepline: {}; stock: {}; tagField: StringConstructor; type: PropType; valueErrorBar: PropType>; valueField: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:valueField"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentField"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyPoints"?: ((...args: any[]) => any) | undefined; "onUpdate:area"?: ((...args: any[]) => any) | undefined; "onUpdate:line"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregation"?: ((...args: any[]) => any) | undefined; "onUpdate:axis"?: ((...args: any[]) => any) | undefined; "onUpdate:bar"?: ((...args: any[]) => any) | undefined; "onUpdate:barOverlapGroup"?: ((...args: any[]) => any) | undefined; "onUpdate:barPadding"?: ((...args: any[]) => any) | undefined; "onUpdate:barWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:bubble"?: ((...args: any[]) => any) | undefined; "onUpdate:candlestick"?: ((...args: any[]) => any) | undefined; "onUpdate:closeValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:fullstackedarea"?: ((...args: any[]) => any) | undefined; "onUpdate:fullstackedbar"?: ((...args: any[]) => any) | undefined; "onUpdate:fullstackedline"?: ((...args: any[]) => any) | undefined; "onUpdate:fullstackedspline"?: ((...args: any[]) => any) | undefined; "onUpdate:fullstackedsplinearea"?: ((...args: any[]) => any) | undefined; "onUpdate:highValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined; "onUpdate:innerColor"?: ((...args: any[]) => any) | undefined; "onUpdate:lowValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:maxLabelCount"?: ((...args: any[]) => any) | undefined; "onUpdate:minBarSize"?: ((...args: any[]) => any) | undefined; "onUpdate:openValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:pane"?: ((...args: any[]) => any) | undefined; "onUpdate:point"?: ((...args: any[]) => any) | undefined; "onUpdate:rangearea"?: ((...args: any[]) => any) | undefined; "onUpdate:rangebar"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeValue1Field"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeValue2Field"?: ((...args: any[]) => any) | undefined; "onUpdate:reduction"?: ((...args: any[]) => any) | undefined; "onUpdate:scatter"?: ((...args: any[]) => any) | undefined; "onUpdate:showInLegend"?: ((...args: any[]) => any) | undefined; "onUpdate:sizeField"?: ((...args: any[]) => any) | undefined; "onUpdate:spline"?: ((...args: any[]) => any) | undefined; "onUpdate:splinearea"?: ((...args: any[]) => any) | undefined; "onUpdate:stack"?: ((...args: any[]) => any) | undefined; "onUpdate:stackedarea"?: ((...args: any[]) => any) | undefined; "onUpdate:stackedbar"?: ((...args: any[]) => any) | undefined; "onUpdate:stackedline"?: ((...args: any[]) => any) | undefined; "onUpdate:stackedspline"?: ((...args: any[]) => any) | undefined; "onUpdate:stackedsplinearea"?: ((...args: any[]) => any) | undefined; "onUpdate:steparea"?: ((...args: any[]) => any) | undefined; "onUpdate:stepline"?: ((...args: any[]) => any) | undefined; "onUpdate:stock"?: ((...args: any[]) => any) | undefined; "onUpdate:tagField"?: ((...args: any[]) => any) | undefined; "onUpdate:valueErrorBar"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; ignoreEmptyPoints: boolean; showInLegend: boolean; }>; declare const DxCommonSeriesSettingsHoverStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:dashStyle": null; "update:hatching": null; "update:highlight": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; "onUpdate:highlight"?: ((...args: any[]) => any) | undefined; }, { highlight: boolean; }>; declare const DxCommonSeriesSettingsLabel: import("vue").DefineComponent<{ alignment: PropType; argumentFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; backgroundColor: StringConstructor; border: PropType>; connector: PropType>; customizeText: PropType<(pointInfo: any) => string>; displayFormat: StringConstructor; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalOffset: NumberConstructor; position: PropType; rotationAngle: NumberConstructor; showForZeroValues: BooleanConstructor; verticalOffset: NumberConstructor; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:argumentFormat": null; "update:backgroundColor": null; "update:border": null; "update:connector": null; "update:customizeText": null; "update:displayFormat": null; "update:font": null; "update:format": null; "update:horizontalOffset": null; "update:position": null; "update:rotationAngle": null; "update:showForZeroValues": null; "update:verticalOffset": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; argumentFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; backgroundColor: StringConstructor; border: PropType>; connector: PropType>; customizeText: PropType<(pointInfo: any) => string>; displayFormat: StringConstructor; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalOffset: NumberConstructor; position: PropType; rotationAngle: NumberConstructor; showForZeroValues: BooleanConstructor; verticalOffset: NumberConstructor; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:connector"?: ((...args: any[]) => any) | undefined; "onUpdate:displayFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:rotationAngle"?: ((...args: any[]) => any) | undefined; "onUpdate:showForZeroValues"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; showForZeroValues: boolean; }>; declare const DxCommonSeriesSettingsSelectionStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:dashStyle": null; "update:hatching": null; "update:highlight": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; "onUpdate:highlight"?: ((...args: any[]) => any) | undefined; }, { highlight: boolean; }>; declare const DxConnector: import("vue").DefineComponent<{ color: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxConstantLine: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; displayBehindSeries: BooleanConstructor; extendAxis: BooleanConstructor; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:displayBehindSeries": null; "update:extendAxis": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:value": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; displayBehindSeries: BooleanConstructor; extendAxis: BooleanConstructor; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; value: (DateConstructor | NumberConstructor | StringConstructor)[]; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:displayBehindSeries"?: ((...args: any[]) => any) | undefined; "onUpdate:extendAxis"?: ((...args: any[]) => any) | undefined; }, { displayBehindSeries: boolean; extendAxis: boolean; }>; declare const DxConstantLineLabel: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; position: PropType; text: StringConstructor; verticalAlignment: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:position": null; "update:text": null; "update:verticalAlignment": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; position: PropType; text: StringConstructor; verticalAlignment: PropType; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxConstantLineStyle: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCrosshair: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; enabled: BooleanConstructor; horizontalLine: PropType>; label: PropType>; opacity: NumberConstructor; verticalLine: PropType>; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:enabled": null; "update:horizontalLine": null; "update:label": null; "update:opacity": null; "update:verticalLine": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; enabled: BooleanConstructor; horizontalLine: PropType>; label: PropType>; opacity: NumberConstructor; verticalLine: PropType>; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalLine"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalLine"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; }>; declare const DxDataPrepareSettings: import("vue").DefineComponent<{ checkTypeForAllData: BooleanConstructor; convertToAxisDataType: BooleanConstructor; sortingMethod: PropType number)>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:checkTypeForAllData": null; "update:convertToAxisDataType": null; "update:sortingMethod": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly number)>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:sortingMethod"?: ((...args: any[]) => any) | undefined; "onUpdate:checkTypeForAllData"?: ((...args: any[]) => any) | undefined; "onUpdate:convertToAxisDataType"?: ((...args: any[]) => any) | undefined; }, { checkTypeForAllData: boolean; convertToAxisDataType: boolean; }>; declare const DxDragBoxStyle: import("vue").DefineComponent<{ color: StringConstructor; opacity: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:opacity": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxExport: import("vue").DefineComponent<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; fileName: StringConstructor; formats: PropType; margin: NumberConstructor; printingEnabled: BooleanConstructor; svgToCanvas: PropType<(svg: any, canvas: any) => any>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:enabled": null; "update:fileName": null; "update:formats": null; "update:margin": null; "update:printingEnabled": null; "update:svgToCanvas": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; margin: NumberConstructor; printingEnabled: BooleanConstructor; svgToCanvas: PropType<(svg: any, canvas: any) => any>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:fileName"?: ((...args: any[]) => any) | undefined; "onUpdate:formats"?: ((...args: any[]) => any) | undefined; "onUpdate:printingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:svgToCanvas"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; printingEnabled: boolean; }>; declare const DxFont: import("vue").DefineComponent<{ color: StringConstructor; family: StringConstructor; opacity: NumberConstructor; size: (NumberConstructor | StringConstructor)[]; weight: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:family": null; "update:opacity": null; "update:size": null; "update:weight": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:family"?: ((...args: any[]) => any) | undefined; "onUpdate:weight"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxFormat: import("vue").DefineComponent<{ currency: StringConstructor; formatter: PropType<(value: number | Date) => string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:currency": null; "update:formatter": null; "update:parser": null; "update:precision": null; "update:type": null; "update:useCurrencyAccountingStyle": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:currency"?: ((...args: any[]) => any) | undefined; "onUpdate:formatter"?: ((...args: any[]) => any) | undefined; "onUpdate:parser"?: ((...args: any[]) => any) | undefined; "onUpdate:precision"?: ((...args: any[]) => any) | undefined; "onUpdate:useCurrencyAccountingStyle"?: ((...args: any[]) => any) | undefined; }, { useCurrencyAccountingStyle: boolean; }>; declare const DxGrid: import("vue").DefineComponent<{ color: StringConstructor; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxHatching: import("vue").DefineComponent<{ direction: PropType; opacity: NumberConstructor; step: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:direction": null; "update:opacity": null; "update:step": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; opacity: NumberConstructor; step: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:direction"?: ((...args: any[]) => any) | undefined; "onUpdate:step"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxHeight: import("vue").DefineComponent<{ rangeMaxPoint: NumberConstructor; rangeMinPoint: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:rangeMaxPoint": null; "update:rangeMinPoint": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMaxPoint"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMinPoint"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxHorizontalLine: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; label: PropType>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:label": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; label: PropType>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxHorizontalLineLabel: import("vue").DefineComponent<{ backgroundColor: StringConstructor; customizeText: PropType<(info: { point: chartPointObject; value: Date | number | string; valueText: string; }) => string>; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:customizeText": null; "update:font": null; "update:format": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly string>; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxHoverStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; size: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:dashStyle": null; "update:hatching": null; "update:highlight": null; "update:size": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; size: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; "onUpdate:highlight"?: ((...args: any[]) => any) | undefined; }, { highlight: boolean; }>; declare const DxImage: import("vue").DefineComponent<{ height: PropType>; url: PropType>; width: PropType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:url": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; url: PropType>; width: PropType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:url"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLabel: import("vue").DefineComponent<{ alignment: PropType; argumentFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; backgroundColor: StringConstructor; border: PropType>; connector: PropType>; customizeHint: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; customizeText: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; displayFormat: StringConstructor; displayMode: PropType; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalAlignment: PropType; horizontalOffset: NumberConstructor; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; showForZeroValues: BooleanConstructor; staggeringSpacing: NumberConstructor; template: {}; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; verticalOffset: NumberConstructor; visible: BooleanConstructor; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:argumentFormat": null; "update:backgroundColor": null; "update:border": null; "update:connector": null; "update:customizeHint": null; "update:customizeText": null; "update:displayFormat": null; "update:displayMode": null; "update:font": null; "update:format": null; "update:horizontalAlignment": null; "update:horizontalOffset": null; "update:indentFromAxis": null; "update:overlappingBehavior": null; "update:position": null; "update:rotationAngle": null; "update:showForZeroValues": null; "update:staggeringSpacing": null; "update:template": null; "update:text": null; "update:textOverflow": null; "update:verticalAlignment": null; "update:verticalOffset": null; "update:visible": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; argumentFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; backgroundColor: StringConstructor; border: PropType>; connector: PropType>; customizeHint: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; customizeText: PropType<(argument: { value: Date | number | string; valueText: string; }) => string>; displayFormat: StringConstructor; displayMode: PropType; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalAlignment: PropType; horizontalOffset: NumberConstructor; indentFromAxis: NumberConstructor; overlappingBehavior: PropType; position: PropType; rotationAngle: NumberConstructor; showForZeroValues: BooleanConstructor; staggeringSpacing: NumberConstructor; template: {}; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; verticalOffset: NumberConstructor; visible: BooleanConstructor; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeHint"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:displayMode"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:overlappingBehavior"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:connector"?: ((...args: any[]) => any) | undefined; "onUpdate:displayFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:rotationAngle"?: ((...args: any[]) => any) | undefined; "onUpdate:showForZeroValues"?: ((...args: any[]) => any) | undefined; "onUpdate:indentFromAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:staggeringSpacing"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; showForZeroValues: boolean; }>; declare const DxLegend: import("vue").DefineComponent<{ backgroundColor: StringConstructor; border: PropType>; columnCount: NumberConstructor; columnItemSpacing: NumberConstructor; customizeHint: PropType<(seriesInfo: { seriesColor: string; seriesIndex: number; seriesName: any; }) => string>; customizeItems: PropType<(items: Array) => Array>; customizeText: PropType<(seriesInfo: { seriesColor: string; seriesIndex: number; seriesName: any; }) => string>; font: PropType | Font>; horizontalAlignment: PropType; hoverMode: PropType; itemsAlignment: PropType; itemTextPosition: PropType; margin: PropType>; markerSize: NumberConstructor; markerTemplate: {}; orientation: PropType; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; position: PropType; rowCount: NumberConstructor; rowItemSpacing: NumberConstructor; title: PropType>; verticalAlignment: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:border": null; "update:columnCount": null; "update:columnItemSpacing": null; "update:customizeHint": null; "update:customizeItems": null; "update:customizeText": null; "update:font": null; "update:horizontalAlignment": null; "update:hoverMode": null; "update:itemsAlignment": null; "update:itemTextPosition": null; "update:margin": null; "update:markerSize": null; "update:markerTemplate": null; "update:orientation": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:position": null; "update:rowCount": null; "update:rowItemSpacing": null; "update:title": null; "update:verticalAlignment": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; columnCount: NumberConstructor; columnItemSpacing: NumberConstructor; customizeHint: PropType<(seriesInfo: { seriesColor: string; seriesIndex: number; seriesName: any; }) => string>; customizeItems: PropType<(items: Array) => Array>; customizeText: PropType<(seriesInfo: { seriesColor: string; seriesIndex: number; seriesName: any; }) => string>; font: PropType | Font>; horizontalAlignment: PropType; hoverMode: PropType; itemsAlignment: PropType; itemTextPosition: PropType; margin: PropType>; markerSize: NumberConstructor; markerTemplate: {}; orientation: PropType; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; position: PropType; rowCount: NumberConstructor; rowItemSpacing: NumberConstructor; title: PropType>; verticalAlignment: PropType; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:columnCount"?: ((...args: any[]) => any) | undefined; "onUpdate:columnItemSpacing"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeHint"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeItems"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:itemsAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:itemTextPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:markerSize"?: ((...args: any[]) => any) | undefined; "onUpdate:markerTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:orientation"?: ((...args: any[]) => any) | undefined; "onUpdate:rowCount"?: ((...args: any[]) => any) | undefined; "onUpdate:rowItemSpacing"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxLegendTitle: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; verticalAlignment: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:margin": null; "update:placeholderSize": null; "update:subtitle": null; "update:text": null; "update:verticalAlignment": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; verticalAlignment: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:subtitle"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLegendTitleSubtitle: import("vue").DefineComponent<{ font: PropType | Font>; offset: NumberConstructor; text: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:offset": null; "update:text": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; offset: NumberConstructor; text: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLength: import("vue").DefineComponent<{ days: NumberConstructor; hours: NumberConstructor; milliseconds: NumberConstructor; minutes: NumberConstructor; months: NumberConstructor; quarters: NumberConstructor; seconds: NumberConstructor; weeks: NumberConstructor; years: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:days": null; "update:hours": null; "update:milliseconds": null; "update:minutes": null; "update:months": null; "update:quarters": null; "update:seconds": null; "update:weeks": null; "update:years": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:days"?: ((...args: any[]) => any) | undefined; "onUpdate:hours"?: ((...args: any[]) => any) | undefined; "onUpdate:milliseconds"?: ((...args: any[]) => any) | undefined; "onUpdate:minutes"?: ((...args: any[]) => any) | undefined; "onUpdate:months"?: ((...args: any[]) => any) | undefined; "onUpdate:quarters"?: ((...args: any[]) => any) | undefined; "onUpdate:seconds"?: ((...args: any[]) => any) | undefined; "onUpdate:weeks"?: ((...args: any[]) => any) | undefined; "onUpdate:years"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLoadingIndicator: import("vue").DefineComponent<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; font: PropType | Font>; show: BooleanConstructor; text: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:enabled": null; "update:font": null; "update:show": null; "update:text": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; show: BooleanConstructor; text: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:show"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; show: boolean; }>; declare const DxMargin: import("vue").DefineComponent<{ bottom: NumberConstructor; left: NumberConstructor; right: NumberConstructor; top: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:bottom": null; "update:left": null; "update:right": null; "update:top": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:bottom"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:right"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxMinorGrid: import("vue").DefineComponent<{ color: StringConstructor; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxMinorTick: import("vue").DefineComponent<{ color: StringConstructor; length: NumberConstructor; opacity: NumberConstructor; shift: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:length": null; "update:opacity": null; "update:shift": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:length"?: ((...args: any[]) => any) | undefined; "onUpdate:shift"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxMinorTickInterval: import("vue").DefineComponent<{ days: NumberConstructor; hours: NumberConstructor; milliseconds: NumberConstructor; minutes: NumberConstructor; months: NumberConstructor; quarters: NumberConstructor; seconds: NumberConstructor; weeks: NumberConstructor; years: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:days": null; "update:hours": null; "update:milliseconds": null; "update:minutes": null; "update:months": null; "update:quarters": null; "update:seconds": null; "update:weeks": null; "update:years": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:days"?: ((...args: any[]) => any) | undefined; "onUpdate:hours"?: ((...args: any[]) => any) | undefined; "onUpdate:milliseconds"?: ((...args: any[]) => any) | undefined; "onUpdate:minutes"?: ((...args: any[]) => any) | undefined; "onUpdate:months"?: ((...args: any[]) => any) | undefined; "onUpdate:quarters"?: ((...args: any[]) => any) | undefined; "onUpdate:seconds"?: ((...args: any[]) => any) | undefined; "onUpdate:weeks"?: ((...args: any[]) => any) | undefined; "onUpdate:years"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxMinVisualRangeLength: import("vue").DefineComponent<{ days: NumberConstructor; hours: NumberConstructor; milliseconds: NumberConstructor; minutes: NumberConstructor; months: NumberConstructor; quarters: NumberConstructor; seconds: NumberConstructor; weeks: NumberConstructor; years: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:days": null; "update:hours": null; "update:milliseconds": null; "update:minutes": null; "update:months": null; "update:quarters": null; "update:seconds": null; "update:weeks": null; "update:years": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:days"?: ((...args: any[]) => any) | undefined; "onUpdate:hours"?: ((...args: any[]) => any) | undefined; "onUpdate:milliseconds"?: ((...args: any[]) => any) | undefined; "onUpdate:minutes"?: ((...args: any[]) => any) | undefined; "onUpdate:months"?: ((...args: any[]) => any) | undefined; "onUpdate:quarters"?: ((...args: any[]) => any) | undefined; "onUpdate:seconds"?: ((...args: any[]) => any) | undefined; "onUpdate:weeks"?: ((...args: any[]) => any) | undefined; "onUpdate:years"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxPane: import("vue").DefineComponent<{ backgroundColor: PropType | ChartsColor>; border: PropType>; height: (NumberConstructor | StringConstructor)[]; name: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:border": null; "update:height": null; "update:name": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | ChartsColor>; border: PropType>; height: (NumberConstructor | StringConstructor)[]; name: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxPaneBorder: import("vue").DefineComponent<{ bottom: BooleanConstructor; color: StringConstructor; dashStyle: PropType; left: BooleanConstructor; opacity: NumberConstructor; right: BooleanConstructor; top: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:bottom": null; "update:color": null; "update:dashStyle": null; "update:left": null; "update:opacity": null; "update:right": null; "update:top": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; left: BooleanConstructor; opacity: NumberConstructor; right: BooleanConstructor; top: BooleanConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:bottom"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:right"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; left: boolean; right: boolean; bottom: boolean; top: boolean; }>; declare const DxPoint: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; hoverMode: PropType; hoverStyle: PropType>; image: PropType>; selectionMode: PropType; selectionStyle: PropType>; size: NumberConstructor; symbol: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:hoverMode": null; "update:hoverStyle": null; "update:image": null; "update:selectionMode": null; "update:selectionStyle": null; "update:size": null; "update:symbol": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; hoverMode: PropType; hoverStyle: PropType>; image: PropType>; selectionMode: PropType; selectionStyle: PropType>; size: NumberConstructor; symbol: PropType; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:image"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined; "onUpdate:symbol"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxPointBorder: import("vue").DefineComponent<{ color: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxPointHoverStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; size: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:size": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; size: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxPointImage: import("vue").DefineComponent<{ height: PropType>; url: PropType>; width: PropType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:url": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; url: PropType>; width: PropType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:url"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxPointSelectionStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; size: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:size": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; size: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxReduction: import("vue").DefineComponent<{ color: StringConstructor; level: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:level": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:level"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxScrollBar: import("vue").DefineComponent<{ color: StringConstructor; offset: NumberConstructor; opacity: NumberConstructor; position: PropType; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:offset": null; "update:opacity": null; "update:position": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxSelectionStyle: import("vue").DefineComponent<{ border: PropType>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; size: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:color": null; "update:dashStyle": null; "update:hatching": null; "update:highlight": null; "update:size": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; color: PropType | ChartsColor>; dashStyle: PropType; hatching: PropType>; highlight: BooleanConstructor; size: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; "onUpdate:highlight"?: ((...args: any[]) => any) | undefined; }, { highlight: boolean; }>; declare const DxSeries: import("vue").DefineComponent<{ aggregation: PropType>; argumentField: StringConstructor; axis: StringConstructor; barOverlapGroup: StringConstructor; barPadding: NumberConstructor; barWidth: NumberConstructor; border: PropType>; closeValueField: StringConstructor; color: PropType | ChartsColor>; cornerRadius: NumberConstructor; dashStyle: PropType; highValueField: StringConstructor; hoverMode: PropType; hoverStyle: PropType>; ignoreEmptyPoints: BooleanConstructor; innerColor: StringConstructor; label: PropType>; lowValueField: StringConstructor; maxLabelCount: NumberConstructor; minBarSize: NumberConstructor; name: StringConstructor; opacity: NumberConstructor; openValueField: StringConstructor; pane: StringConstructor; point: PropType>; rangeValue1Field: StringConstructor; rangeValue2Field: StringConstructor; reduction: PropType>; selectionMode: PropType; selectionStyle: PropType>; showInLegend: BooleanConstructor; sizeField: StringConstructor; stack: StringConstructor; tag: {}; tagField: StringConstructor; type: PropType; valueErrorBar: PropType>; valueField: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aggregation": null; "update:argumentField": null; "update:axis": null; "update:barOverlapGroup": null; "update:barPadding": null; "update:barWidth": null; "update:border": null; "update:closeValueField": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:highValueField": null; "update:hoverMode": null; "update:hoverStyle": null; "update:ignoreEmptyPoints": null; "update:innerColor": null; "update:label": null; "update:lowValueField": null; "update:maxLabelCount": null; "update:minBarSize": null; "update:name": null; "update:opacity": null; "update:openValueField": null; "update:pane": null; "update:point": null; "update:rangeValue1Field": null; "update:rangeValue2Field": null; "update:reduction": null; "update:selectionMode": null; "update:selectionStyle": null; "update:showInLegend": null; "update:sizeField": null; "update:stack": null; "update:tag": null; "update:tagField": null; "update:type": null; "update:valueErrorBar": null; "update:valueField": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; argumentField: StringConstructor; axis: StringConstructor; barOverlapGroup: StringConstructor; barPadding: NumberConstructor; barWidth: NumberConstructor; border: PropType>; closeValueField: StringConstructor; color: PropType | ChartsColor>; cornerRadius: NumberConstructor; dashStyle: PropType; highValueField: StringConstructor; hoverMode: PropType; hoverStyle: PropType>; ignoreEmptyPoints: BooleanConstructor; innerColor: StringConstructor; label: PropType>; lowValueField: StringConstructor; maxLabelCount: NumberConstructor; minBarSize: NumberConstructor; name: StringConstructor; opacity: NumberConstructor; openValueField: StringConstructor; pane: StringConstructor; point: PropType>; rangeValue1Field: StringConstructor; rangeValue2Field: StringConstructor; reduction: PropType>; selectionMode: PropType; selectionStyle: PropType>; showInLegend: BooleanConstructor; sizeField: StringConstructor; stack: StringConstructor; tag: {}; tagField: StringConstructor; type: PropType; valueErrorBar: PropType>; valueField: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:valueField"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentField"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyPoints"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregation"?: ((...args: any[]) => any) | undefined; "onUpdate:axis"?: ((...args: any[]) => any) | undefined; "onUpdate:barOverlapGroup"?: ((...args: any[]) => any) | undefined; "onUpdate:barPadding"?: ((...args: any[]) => any) | undefined; "onUpdate:barWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:closeValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:highValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined; "onUpdate:innerColor"?: ((...args: any[]) => any) | undefined; "onUpdate:lowValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:maxLabelCount"?: ((...args: any[]) => any) | undefined; "onUpdate:minBarSize"?: ((...args: any[]) => any) | undefined; "onUpdate:openValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:pane"?: ((...args: any[]) => any) | undefined; "onUpdate:point"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeValue1Field"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeValue2Field"?: ((...args: any[]) => any) | undefined; "onUpdate:reduction"?: ((...args: any[]) => any) | undefined; "onUpdate:showInLegend"?: ((...args: any[]) => any) | undefined; "onUpdate:sizeField"?: ((...args: any[]) => any) | undefined; "onUpdate:stack"?: ((...args: any[]) => any) | undefined; "onUpdate:tagField"?: ((...args: any[]) => any) | undefined; "onUpdate:valueErrorBar"?: ((...args: any[]) => any) | undefined; "onUpdate:tag"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; ignoreEmptyPoints: boolean; showInLegend: boolean; }>; declare const DxSeriesBorder: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxSeriesTemplate: import("vue").DefineComponent<{ customizeSeries: PropType<(seriesName: any) => ChartSeries>; nameField: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:customizeSeries": null; "update:nameField": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly ChartSeries>; nameField: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeSeries"?: ((...args: any[]) => any) | undefined; "onUpdate:nameField"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxShadow: import("vue").DefineComponent<{ blur: NumberConstructor; color: StringConstructor; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:blur": null; "update:color": null; "update:offsetX": null; "update:offsetY": null; "update:opacity": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetX"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetY"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:blur"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSize: import("vue").DefineComponent<{ height: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxStrip: import("vue").DefineComponent<{ color: StringConstructor; endValue: (DateConstructor | NumberConstructor | StringConstructor)[]; label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:endValue": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:startValue": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:endValue"?: ((...args: any[]) => any) | undefined; "onUpdate:startValue"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxStripLabel: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; text: StringConstructor; verticalAlignment: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:text": null; "update:verticalAlignment": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; text: StringConstructor; verticalAlignment: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxStripStyle: import("vue").DefineComponent<{ label: PropType>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:label": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxStripStyleLabel: import("vue").DefineComponent<{ font: PropType | Font>; horizontalAlignment: PropType; verticalAlignment: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:verticalAlignment": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; horizontalAlignment: PropType; verticalAlignment: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSubtitle: import("vue").DefineComponent<{ font: PropType | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:offset": null; "update:text": null; "update:textOverflow": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxTick: import("vue").DefineComponent<{ color: StringConstructor; length: NumberConstructor; opacity: NumberConstructor; shift: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:length": null; "update:opacity": null; "update:shift": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:length"?: ((...args: any[]) => any) | undefined; "onUpdate:shift"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxTickInterval: import("vue").DefineComponent<{ days: NumberConstructor; hours: NumberConstructor; milliseconds: NumberConstructor; minutes: NumberConstructor; months: NumberConstructor; quarters: NumberConstructor; seconds: NumberConstructor; weeks: NumberConstructor; years: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:days": null; "update:hours": null; "update:milliseconds": null; "update:minutes": null; "update:months": null; "update:quarters": null; "update:seconds": null; "update:weeks": null; "update:years": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:days"?: ((...args: any[]) => any) | undefined; "onUpdate:hours"?: ((...args: any[]) => any) | undefined; "onUpdate:milliseconds"?: ((...args: any[]) => any) | undefined; "onUpdate:minutes"?: ((...args: any[]) => any) | undefined; "onUpdate:months"?: ((...args: any[]) => any) | undefined; "onUpdate:quarters"?: ((...args: any[]) => any) | undefined; "onUpdate:seconds"?: ((...args: any[]) => any) | undefined; "onUpdate:weeks"?: ((...args: any[]) => any) | undefined; "onUpdate:years"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxTitle: import("vue").DefineComponent<{ alignment: PropType; font: PropType | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; wordWrap: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:font": null; "update:horizontalAlignment": null; "update:margin": null; "update:placeholderSize": null; "update:subtitle": null; "update:text": null; "update:textOverflow": null; "update:verticalAlignment": null; "update:wordWrap": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; font: PropType | Font>; horizontalAlignment: PropType; margin: PropType>; placeholderSize: NumberConstructor; subtitle: PropType>; text: StringConstructor; textOverflow: PropType; verticalAlignment: PropType; wordWrap: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:subtitle"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxTooltip: import("vue").DefineComponent<{ argumentFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; arrowLength: NumberConstructor; border: PropType>; color: StringConstructor; container: {}; contentTemplate: {}; cornerRadius: NumberConstructor; customizeTooltip: PropType<(pointInfo: dxChartPointInfo) => Record>; enabled: BooleanConstructor; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; interactive: BooleanConstructor; location: PropType; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; shadow: PropType>; shared: BooleanConstructor; zIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:argumentFormat": null; "update:arrowLength": null; "update:border": null; "update:color": null; "update:container": null; "update:contentTemplate": null; "update:cornerRadius": null; "update:customizeTooltip": null; "update:enabled": null; "update:font": null; "update:format": null; "update:interactive": null; "update:location": null; "update:opacity": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:shadow": null; "update:shared": null; "update:zIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; arrowLength: NumberConstructor; border: PropType>; color: StringConstructor; container: {}; contentTemplate: {}; cornerRadius: NumberConstructor; customizeTooltip: PropType<(pointInfo: dxChartPointInfo) => Record>; enabled: BooleanConstructor; font: PropType | Font>; format: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; interactive: BooleanConstructor; location: PropType; opacity: NumberConstructor; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; shadow: PropType>; shared: BooleanConstructor; zIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:arrowLength"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeTooltip"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:shadow"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:container"?: ((...args: any[]) => any) | undefined; "onUpdate:contentTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:zIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:location"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; "onUpdate:interactive"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:shared"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; interactive: boolean; shared: boolean; }>; declare const DxTooltipBorder: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxUrl: import("vue").DefineComponent<{ rangeMaxPoint: StringConstructor; rangeMinPoint: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:rangeMaxPoint": null; "update:rangeMinPoint": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMaxPoint"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMinPoint"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxValueAxis: import("vue").DefineComponent<{ aggregatedPointsPosition: PropType; allowDecimals: BooleanConstructor; autoBreaksEnabled: BooleanConstructor; axisDivisionFactor: NumberConstructor; breaks: PropType; breakStyle: PropType>; categories: PropType<(string | number | Date)[]>; color: StringConstructor; constantLines: PropType[]>; constantLineStyle: PropType>; customPosition: (DateConstructor | NumberConstructor | StringConstructor)[]; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; inverted: BooleanConstructor; label: PropType>; linearThreshold: NumberConstructor; logarithmBase: NumberConstructor; maxAutoBreakCount: NumberConstructor; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minorTickCount: NumberConstructor; minorTickInterval: PropType | TimeInterval>; minValueMargin: NumberConstructor; minVisualRangeLength: PropType | TimeInterval>; multipleAxesSpacing: NumberConstructor; name: StringConstructor; offset: NumberConstructor; opacity: NumberConstructor; pane: StringConstructor; placeholderSize: NumberConstructor; position: PropType; showZero: BooleanConstructor; strips: PropType[]>; stripStyle: PropType>; synchronizedValue: NumberConstructor; tick: PropType>; tickInterval: PropType | TimeInterval>; title: PropType>; type: PropType; valueMarginsEnabled: BooleanConstructor; valueType: PropType; visible: BooleanConstructor; visualRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; visualRangeUpdateMode: PropType; wholeRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aggregatedPointsPosition": null; "update:allowDecimals": null; "update:autoBreaksEnabled": null; "update:axisDivisionFactor": null; "update:breaks": null; "update:breakStyle": null; "update:categories": null; "update:color": null; "update:constantLines": null; "update:constantLineStyle": null; "update:customPosition": null; "update:discreteAxisDivisionMode": null; "update:endOnTick": null; "update:grid": null; "update:inverted": null; "update:label": null; "update:linearThreshold": null; "update:logarithmBase": null; "update:maxAutoBreakCount": null; "update:maxValueMargin": null; "update:minorGrid": null; "update:minorTick": null; "update:minorTickCount": null; "update:minorTickInterval": null; "update:minValueMargin": null; "update:minVisualRangeLength": null; "update:multipleAxesSpacing": null; "update:name": null; "update:offset": null; "update:opacity": null; "update:pane": null; "update:placeholderSize": null; "update:position": null; "update:showZero": null; "update:strips": null; "update:stripStyle": null; "update:synchronizedValue": null; "update:tick": null; "update:tickInterval": null; "update:title": null; "update:type": null; "update:valueMarginsEnabled": null; "update:valueType": null; "update:visible": null; "update:visualRange": null; "update:visualRangeUpdateMode": null; "update:wholeRange": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; allowDecimals: BooleanConstructor; autoBreaksEnabled: BooleanConstructor; axisDivisionFactor: NumberConstructor; breaks: PropType; breakStyle: PropType>; categories: PropType<(string | number | Date)[]>; color: StringConstructor; constantLines: PropType[]>; constantLineStyle: PropType>; customPosition: (DateConstructor | NumberConstructor | StringConstructor)[]; discreteAxisDivisionMode: PropType; endOnTick: BooleanConstructor; grid: PropType>; inverted: BooleanConstructor; label: PropType>; linearThreshold: NumberConstructor; logarithmBase: NumberConstructor; maxAutoBreakCount: NumberConstructor; maxValueMargin: NumberConstructor; minorGrid: PropType>; minorTick: PropType>; minorTickCount: NumberConstructor; minorTickInterval: PropType | TimeInterval>; minValueMargin: NumberConstructor; minVisualRangeLength: PropType | TimeInterval>; multipleAxesSpacing: NumberConstructor; name: StringConstructor; offset: NumberConstructor; opacity: NumberConstructor; pane: StringConstructor; placeholderSize: NumberConstructor; position: PropType; showZero: BooleanConstructor; strips: PropType[]>; stripStyle: PropType>; synchronizedValue: NumberConstructor; tick: PropType>; tickInterval: PropType | TimeInterval>; title: PropType>; type: PropType; valueMarginsEnabled: BooleanConstructor; valueType: PropType; visible: BooleanConstructor; visualRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; visualRangeUpdateMode: PropType; wholeRange: PropType | (string | number | Date)[] | CommonChartTypes.VisualRange>; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:pane"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDecimals"?: ((...args: any[]) => any) | undefined; "onUpdate:breaks"?: ((...args: any[]) => any) | undefined; "onUpdate:breakStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:categories"?: ((...args: any[]) => any) | undefined; "onUpdate:discreteAxisDivisionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:endOnTick"?: ((...args: any[]) => any) | undefined; "onUpdate:linearThreshold"?: ((...args: any[]) => any) | undefined; "onUpdate:logarithmBase"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTick"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTickCount"?: ((...args: any[]) => any) | undefined; "onUpdate:minorTickInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:tick"?: ((...args: any[]) => any) | undefined; "onUpdate:tickInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:valueType"?: ((...args: any[]) => any) | undefined; "onUpdate:inverted"?: ((...args: any[]) => any) | undefined; "onUpdate:axisDivisionFactor"?: ((...args: any[]) => any) | undefined; "onUpdate:constantLines"?: ((...args: any[]) => any) | undefined; "onUpdate:constantLineStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:grid"?: ((...args: any[]) => any) | undefined; "onUpdate:minorGrid"?: ((...args: any[]) => any) | undefined; "onUpdate:strips"?: ((...args: any[]) => any) | undefined; "onUpdate:stripStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:maxValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:minValueMargin"?: ((...args: any[]) => any) | undefined; "onUpdate:minVisualRangeLength"?: ((...args: any[]) => any) | undefined; "onUpdate:showZero"?: ((...args: any[]) => any) | undefined; "onUpdate:valueMarginsEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:visualRange"?: ((...args: any[]) => any) | undefined; "onUpdate:visualRangeUpdateMode"?: ((...args: any[]) => any) | undefined; "onUpdate:wholeRange"?: ((...args: any[]) => any) | undefined; "onUpdate:aggregatedPointsPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:customPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:autoBreaksEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:maxAutoBreakCount"?: ((...args: any[]) => any) | undefined; "onUpdate:multipleAxesSpacing"?: ((...args: any[]) => any) | undefined; "onUpdate:synchronizedValue"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; allowDecimals: boolean; endOnTick: boolean; inverted: boolean; showZero: boolean; valueMarginsEnabled: boolean; autoBreaksEnabled: boolean; }>; declare const DxValueErrorBar: import("vue").DefineComponent<{ color: StringConstructor; displayMode: PropType; edgeLength: NumberConstructor; highValueField: StringConstructor; lineWidth: NumberConstructor; lowValueField: StringConstructor; opacity: NumberConstructor; type: PropType; value: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:displayMode": null; "update:edgeLength": null; "update:highValueField": null; "update:lineWidth": null; "update:lowValueField": null; "update:opacity": null; "update:type": null; "update:value": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; edgeLength: NumberConstructor; highValueField: StringConstructor; lineWidth: NumberConstructor; lowValueField: StringConstructor; opacity: NumberConstructor; type: PropType; value: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:displayMode"?: ((...args: any[]) => any) | undefined; "onUpdate:lineWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:highValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:lowValueField"?: ((...args: any[]) => any) | undefined; "onUpdate:edgeLength"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxVerticalLine: import("vue").DefineComponent<{ color: StringConstructor; dashStyle: PropType; label: PropType>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:label": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; label: PropType>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxVisualRange: import("vue").DefineComponent<{ endValue: (DateConstructor | NumberConstructor | StringConstructor)[]; length: PropType | TimeInterval>; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:endValue": null; "update:length": null; "update:startValue": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | TimeInterval>; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:endValue"?: ((...args: any[]) => any) | undefined; "onUpdate:startValue"?: ((...args: any[]) => any) | undefined; "onUpdate:length"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxWholeRange: import("vue").DefineComponent<{ endValue: (DateConstructor | NumberConstructor | StringConstructor)[]; length: PropType | TimeInterval>; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:endValue": null; "update:length": null; "update:startValue": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | TimeInterval>; startValue: (DateConstructor | NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:endValue"?: ((...args: any[]) => any) | undefined; "onUpdate:startValue"?: ((...args: any[]) => any) | undefined; "onUpdate:length"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxWidth: import("vue").DefineComponent<{ rangeMaxPoint: NumberConstructor; rangeMinPoint: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:rangeMaxPoint": null; "update:rangeMinPoint": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMaxPoint"?: ((...args: any[]) => any) | undefined; "onUpdate:rangeMinPoint"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxZoomAndPan: import("vue").DefineComponent<{ allowMouseWheel: BooleanConstructor; allowTouchGestures: BooleanConstructor; argumentAxis: PropType; dragBoxStyle: PropType>; dragToZoom: BooleanConstructor; panKey: PropType; valueAxis: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowMouseWheel": null; "update:allowTouchGestures": null; "update:argumentAxis": null; "update:dragBoxStyle": null; "update:dragToZoom": null; "update:panKey": null; "update:valueAxis": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; dragBoxStyle: PropType>; dragToZoom: BooleanConstructor; panKey: PropType; valueAxis: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:valueAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentAxis"?: ((...args: any[]) => any) | undefined; "onUpdate:allowMouseWheel"?: ((...args: any[]) => any) | undefined; "onUpdate:allowTouchGestures"?: ((...args: any[]) => any) | undefined; "onUpdate:dragBoxStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:dragToZoom"?: ((...args: any[]) => any) | undefined; "onUpdate:panKey"?: ((...args: any[]) => any) | undefined; }, { allowMouseWheel: boolean; allowTouchGestures: boolean; dragToZoom: boolean; }>; export default DxChart; export { DxChart, DxAdaptiveLayout, DxAggregation, DxAggregationInterval, DxAnimation, DxAnnotation, DxAnnotationBorder, DxAnnotationImage, DxArgumentAxis, DxArgumentFormat, DxAxisConstantLineStyle, DxAxisConstantLineStyleLabel, DxAxisLabel, DxAxisTitle, DxBackgroundColor, DxBorder, DxBreak, DxBreakStyle, DxChartTitle, DxChartTitleSubtitle, DxColor, DxCommonAnnotationSettings, DxCommonAxisSettings, DxCommonAxisSettingsConstantLineStyle, DxCommonAxisSettingsConstantLineStyleLabel, DxCommonAxisSettingsLabel, DxCommonAxisSettingsTitle, DxCommonPaneSettings, DxCommonSeriesSettings, DxCommonSeriesSettingsHoverStyle, DxCommonSeriesSettingsLabel, DxCommonSeriesSettingsSelectionStyle, DxConnector, DxConstantLine, DxConstantLineLabel, DxConstantLineStyle, DxCrosshair, DxDataPrepareSettings, DxDragBoxStyle, DxExport, DxFont, DxFormat, DxGrid, DxHatching, DxHeight, DxHorizontalLine, DxHorizontalLineLabel, DxHoverStyle, DxImage, DxLabel, DxLegend, DxLegendTitle, DxLegendTitleSubtitle, DxLength, DxLoadingIndicator, DxMargin, DxMinorGrid, DxMinorTick, DxMinorTickInterval, DxMinVisualRangeLength, DxPane, DxPaneBorder, DxPoint, DxPointBorder, DxPointHoverStyle, DxPointImage, DxPointSelectionStyle, DxReduction, DxScrollBar, DxSelectionStyle, DxSeries, DxSeriesBorder, DxSeriesTemplate, DxShadow, DxSize, DxStrip, DxStripLabel, DxStripStyle, DxStripStyleLabel, DxSubtitle, DxTick, DxTickInterval, DxTitle, DxTooltip, DxTooltipBorder, DxUrl, DxValueAxis, DxValueErrorBar, DxVerticalLine, DxVisualRange, DxWholeRange, DxWidth, DxZoomAndPan }; import type * as DxChartTypes from "devextreme/viz/chart_types"; export { DxChartTypes };