devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
954 lines (953 loc) • 228 kB
TypeScript
/*!
* devextreme-vue
* Version: 25.1.5
* Build date: Wed Sep 03 2025
*
* Copyright (c) 2012 - 2025 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-vue
*/
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, 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<Properties, "adaptiveLayout" | "adjustOnZoom" | "animation" | "annotations" | "argumentAxis" | "autoHidePointMarkers" | "barGroupPadding" | "barGroupWidth" | "commonAnnotationSettings" | "commonAxisSettings" | "commonPaneSettings" | "commonSeriesSettings" | "containerBackgroundColor" | "crosshair" | "customizeAnnotation" | "customizeLabel" | "customizePoint" | "dataPrepareSettings" | "dataSource" | "defaultPane" | "disabled" | "elementAttr" | "export" | "legend" | "loadingIndicator" | "margin" | "maxBubbleSize" | "minBubbleSize" | "negativesAsZeroes" | "onArgumentAxisClick" | "onDisposing" | "onDone" | "onDrawn" | "onExported" | "onExporting" | "onFileSaving" | "onIncidentOccurred" | "onInitialized" | "onLegendClick" | "onOptionChanged" | "onPointClick" | "onPointHoverChanged" | "onPointSelectionChanged" | "onSeriesClick" | "onSeriesHoverChanged" | "onSeriesSelectionChanged" | "onTooltipHidden" | "onTooltipShown" | "onZoomEnd" | "onZoomStart" | "palette" | "paletteExtensionMode" | "panes" | "pathModified" | "pointSelectionMode" | "redrawOnResize" | "resizePanesOnZoom" | "resolveLabelOverlapping" | "rotated" | "rtlEnabled" | "scrollBar" | "series" | "seriesSelectionMode" | "seriesTemplate" | "size" | "stickyHovering" | "synchronizeMultiAxes" | "theme" | "title" | "tooltip" | "valueAxis" | "zoomAndPan">;
interface DxChart extends AccessibleOptions {
readonly instance?: Chart;
}
declare const DxChart: import("@vue/runtime-core").DefineComponent<{
adaptiveLayout: PropType<Record<string, any>>;
adjustOnZoom: BooleanConstructor;
animation: PropType<boolean | Record<string, any>>;
annotations: PropType<any[]>;
argumentAxis: PropType<Record<string, any>>;
autoHidePointMarkers: BooleanConstructor;
barGroupPadding: NumberConstructor;
barGroupWidth: NumberConstructor;
commonAnnotationSettings: PropType<Record<string, any> | dxChartCommonAnnotationConfig>;
commonAxisSettings: PropType<Record<string, any>>;
commonPaneSettings: PropType<Record<string, any>>;
commonSeriesSettings: PropType<Record<string, any>>;
containerBackgroundColor: StringConstructor;
crosshair: PropType<Record<string, any>>;
customizeAnnotation: PropType<(annotation: dxChartAnnotationConfig | any) => dxChartAnnotationConfig>;
customizeLabel: PropType<(pointInfo: any) => SeriesLabel>;
customizePoint: PropType<(pointInfo: any) => SeriesPoint>;
dataPrepareSettings: PropType<Record<string, any>>;
dataSource: PropType<string | any[] | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | null>;
defaultPane: StringConstructor;
disabled: BooleanConstructor;
elementAttr: PropType<Record<string, any>>;
export: PropType<Record<string, any>>;
legend: PropType<Record<string, any>>;
loadingIndicator: PropType<Record<string, any>>;
margin: PropType<Record<string, any>>;
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<string[] | Palette>;
paletteExtensionMode: PropType<PaletteExtensionMode>;
panes: PropType<Record<string, any> | Record<string, any>[]>;
pathModified: BooleanConstructor;
pointSelectionMode: PropType<SingleOrMultiple>;
redrawOnResize: BooleanConstructor;
resizePanesOnZoom: BooleanConstructor;
resolveLabelOverlapping: PropType<ChartsLabelOverlap>;
rotated: BooleanConstructor;
rtlEnabled: BooleanConstructor;
scrollBar: PropType<Record<string, any>>;
series: PropType<Record<string, any> | ChartSeries | ChartSeries[]>;
seriesSelectionMode: PropType<SingleOrMultiple>;
seriesTemplate: PropType<Record<string, any>>;
size: PropType<Record<string, any>>;
stickyHovering: BooleanConstructor;
synchronizeMultiAxes: BooleanConstructor;
theme: PropType<Theme>;
title: PropType<string | Record<string, any>>;
tooltip: PropType<Record<string, any>>;
valueAxis: PropType<Record<string, any> | Record<string, any>[]>;
zoomAndPan: PropType<Record<string, any>>;
}, unknown, unknown, {
instance(): Chart;
}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
adaptiveLayout: PropType<Record<string, any>>;
adjustOnZoom: BooleanConstructor;
animation: PropType<boolean | Record<string, any>>;
annotations: PropType<any[]>;
argumentAxis: PropType<Record<string, any>>;
autoHidePointMarkers: BooleanConstructor;
barGroupPadding: NumberConstructor;
barGroupWidth: NumberConstructor;
commonAnnotationSettings: PropType<Record<string, any> | dxChartCommonAnnotationConfig>;
commonAxisSettings: PropType<Record<string, any>>;
commonPaneSettings: PropType<Record<string, any>>;
commonSeriesSettings: PropType<Record<string, any>>;
containerBackgroundColor: StringConstructor;
crosshair: PropType<Record<string, any>>;
customizeAnnotation: PropType<(annotation: dxChartAnnotationConfig | any) => dxChartAnnotationConfig>;
customizeLabel: PropType<(pointInfo: any) => SeriesLabel>;
customizePoint: PropType<(pointInfo: any) => SeriesPoint>;
dataPrepareSettings: PropType<Record<string, any>>;
dataSource: PropType<string | any[] | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | null>;
defaultPane: StringConstructor;
disabled: BooleanConstructor;
elementAttr: PropType<Record<string, any>>;
export: PropType<Record<string, any>>;
legend: PropType<Record<string, any>>;
loadingIndicator: PropType<Record<string, any>>;
margin: PropType<Record<string, any>>;
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<string[] | Palette>;
paletteExtensionMode: PropType<PaletteExtensionMode>;
panes: PropType<Record<string, any> | Record<string, any>[]>;
pathModified: BooleanConstructor;
pointSelectionMode: PropType<SingleOrMultiple>;
redrawOnResize: BooleanConstructor;
resizePanesOnZoom: BooleanConstructor;
resolveLabelOverlapping: PropType<ChartsLabelOverlap>;
rotated: BooleanConstructor;
rtlEnabled: BooleanConstructor;
scrollBar: PropType<Record<string, any>>;
series: PropType<Record<string, any> | ChartSeries | ChartSeries[]>;
seriesSelectionMode: PropType<SingleOrMultiple>;
seriesTemplate: PropType<Record<string, any>>;
size: PropType<Record<string, any>>;
stickyHovering: BooleanConstructor;
synchronizeMultiAxes: BooleanConstructor;
theme: PropType<Theme>;
title: PropType<string | Record<string, any>>;
tooltip: PropType<Record<string, any>>;
valueAxis: PropType<Record<string, any> | Record<string, any>[]>;
zoomAndPan: PropType<Record<string, any>>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:dataSource"?: ((...args: any[]) => any) | undefined;
"onUpdate:disabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined;
"onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined;
"onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined;
"onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined;
"onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:title"?: ((...args: any[]) => any) | undefined;
"onUpdate:animation"?: ((...args: any[]) => any) | undefined;
"onUpdate:export"?: ((...args: any[]) => any) | undefined;
"onUpdate:legend"?: ((...args: any[]) => any) | undefined;
"onUpdate:loadingIndicator"?: ((...args: any[]) => any) | undefined;
"onUpdate:margin"?: ((...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:onTooltipHidden"?: ((...args: any[]) => any) | undefined;
"onUpdate:onTooltipShown"?: ((...args: any[]) => any) | undefined;
"onUpdate:palette"?: ((...args: any[]) => any) | undefined;
"onUpdate:paletteExtensionMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:pathModified"?: ((...args: any[]) => any) | undefined;
"onUpdate:redrawOnResize"?: ((...args: any[]) => any) | undefined;
"onUpdate:resolveLabelOverlapping"?: ((...args: any[]) => any) | undefined;
"onUpdate:size"?: ((...args: any[]) => any) | undefined;
"onUpdate:theme"?: ((...args: any[]) => any) | undefined;
"onUpdate:tooltip"?: ((...args: any[]) => any) | undefined;
"onUpdate:adaptiveLayout"?: ((...args: any[]) => any) | undefined;
"onUpdate:adjustOnZoom"?: ((...args: any[]) => any) | undefined;
"onUpdate:annotations"?: ((...args: any[]) => any) | undefined;
"onUpdate:argumentAxis"?: ((...args: any[]) => any) | undefined;
"onUpdate:autoHidePointMarkers"?: ((...args: any[]) => any) | undefined;
"onUpdate:barGroupPadding"?: ((...args: any[]) => any) | undefined;
"onUpdate:barGroupWidth"?: ((...args: any[]) => any) | undefined;
"onUpdate:commonAnnotationSettings"?: ((...args: any[]) => any) | undefined;
"onUpdate:commonAxisSettings"?: ((...args: any[]) => any) | undefined;
"onUpdate:commonPaneSettings"?: ((...args: any[]) => any) | undefined;
"onUpdate:commonSeriesSettings"?: ((...args: any[]) => any) | undefined;
"onUpdate:containerBackgroundColor"?: ((...args: any[]) => any) | undefined;
"onUpdate:crosshair"?: ((...args: any[]) => any) | undefined;
"onUpdate:customizeAnnotation"?: ((...args: any[]) => any) | undefined;
"onUpdate:customizeLabel"?: ((...args: any[]) => any) | undefined;
"onUpdate:customizePoint"?: ((...args: any[]) => any) | undefined;
"onUpdate:dataPrepareSettings"?: ((...args: any[]) => any) | undefined;
"onUpdate:defaultPane"?: ((...args: any[]) => any) | undefined;
"onUpdate:maxBubbleSize"?: ((...args: any[]) => any) | undefined;
"onUpdate:minBubbleSize"?: ((...args: any[]) => any) | undefined;
"onUpdate:negativesAsZeroes"?: ((...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:panes"?: ((...args: any[]) => any) | undefined;
"onUpdate:pointSelectionMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:resizePanesOnZoom"?: ((...args: any[]) => any) | undefined;
"onUpdate:rotated"?: ((...args: any[]) => any) | undefined;
"onUpdate:scrollBar"?: ((...args: any[]) => any) | undefined;
"onUpdate:series"?: ((...args: any[]) => any) | undefined;
"onUpdate:seriesSelectionMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:seriesTemplate"?: ((...args: any[]) => any) | undefined;
"onUpdate:stickyHovering"?: ((...args: any[]) => any) | undefined;
"onUpdate:synchronizeMultiAxes"?: ((...args: any[]) => any) | undefined;
"onUpdate:valueAxis"?: ((...args: any[]) => any) | undefined;
"onUpdate:zoomAndPan"?: ((...args: any[]) => any) | undefined;
}, {
disabled: boolean;
rtlEnabled: boolean;
pathModified: boolean;
redrawOnResize: boolean;
adjustOnZoom: boolean;
autoHidePointMarkers: boolean;
negativesAsZeroes: boolean;
resizePanesOnZoom: boolean;
rotated: boolean;
stickyHovering: boolean;
synchronizeMultiAxes: boolean;
}>;
declare const DxAdaptiveLayout: import("@vue/runtime-core").DefineComponent<{
height: NumberConstructor;
keepLabels: BooleanConstructor;
width: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:height": null;
"update:keepLabels": null;
"update:width": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
height: NumberConstructor;
keepLabels: BooleanConstructor;
width: NumberConstructor;
}>> & {
"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/runtime-core").DefineComponent<{
calculate: PropType<(aggregationInfo: chartPointAggregationInfoObject, series: chartSeriesObject) => Record<string, any> | Array<Record<string, any>>>;
enabled: BooleanConstructor;
method: PropType<ChartSeriesAggregationMethod>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:calculate": null;
"update:enabled": null;
"update:method": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
calculate: PropType<(aggregationInfo: chartPointAggregationInfoObject, series: chartSeriesObject) => Record<string, any> | Array<Record<string, any>>>;
enabled: BooleanConstructor;
method: PropType<ChartSeriesAggregationMethod>;
}>> & {
"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/runtime-core").DefineComponent<{
days: NumberConstructor;
hours: NumberConstructor;
milliseconds: NumberConstructor;
minutes: NumberConstructor;
months: NumberConstructor;
quarters: NumberConstructor;
seconds: NumberConstructor;
weeks: NumberConstructor;
years: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
days: NumberConstructor;
hours: NumberConstructor;
milliseconds: NumberConstructor;
minutes: NumberConstructor;
months: NumberConstructor;
quarters: NumberConstructor;
seconds: NumberConstructor;
weeks: NumberConstructor;
years: NumberConstructor;
}>> & {
"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/runtime-core").DefineComponent<{
duration: NumberConstructor;
easing: PropType<AnimationEaseMode>;
enabled: BooleanConstructor;
maxPointCountSupported: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:duration": null;
"update:easing": null;
"update:enabled": null;
"update:maxPointCountSupported": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
duration: NumberConstructor;
easing: PropType<AnimationEaseMode>;
enabled: BooleanConstructor;
maxPointCountSupported: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:duration"?: ((...args: any[]) => any) | undefined;
"onUpdate:easing"?: ((...args: any[]) => any) | undefined;
"onUpdate:enabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:maxPointCountSupported"?: ((...args: any[]) => any) | undefined;
}, {
enabled: boolean;
}>;
declare const DxAnnotation: import("@vue/runtime-core").DefineComponent<{
allowDragging: BooleanConstructor;
argument: (DateConstructor | NumberConstructor | StringConstructor)[];
arrowLength: NumberConstructor;
arrowWidth: NumberConstructor;
axis: StringConstructor;
border: PropType<Record<string, any>>;
color: StringConstructor;
customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record<string, any>>;
data: {};
description: StringConstructor;
font: PropType<Record<string, any> | Font>;
height: NumberConstructor;
image: PropType<string | Record<string, any>>;
name: StringConstructor;
offsetX: NumberConstructor;
offsetY: NumberConstructor;
opacity: NumberConstructor;
paddingLeftRight: NumberConstructor;
paddingTopBottom: NumberConstructor;
series: StringConstructor;
shadow: PropType<Record<string, any>>;
template: {};
text: StringConstructor;
textOverflow: PropType<TextOverflow>;
tooltipEnabled: BooleanConstructor;
tooltipTemplate: {};
type: PropType<AnnotationType>;
value: (DateConstructor | NumberConstructor | StringConstructor)[];
width: NumberConstructor;
wordWrap: PropType<WordWrap>;
x: NumberConstructor;
y: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
allowDragging: BooleanConstructor;
argument: (DateConstructor | NumberConstructor | StringConstructor)[];
arrowLength: NumberConstructor;
arrowWidth: NumberConstructor;
axis: StringConstructor;
border: PropType<Record<string, any>>;
color: StringConstructor;
customizeTooltip: PropType<(annotation: dxChartAnnotationConfig | any) => Record<string, any>>;
data: {};
description: StringConstructor;
font: PropType<Record<string, any> | Font>;
height: NumberConstructor;
image: PropType<string | Record<string, any>>;
name: StringConstructor;
offsetX: NumberConstructor;
offsetY: NumberConstructor;
opacity: NumberConstructor;
paddingLeftRight: NumberConstructor;
paddingTopBottom: NumberConstructor;
series: StringConstructor;
shadow: PropType<Record<string, any>>;
template: {};
text: StringConstructor;
textOverflow: PropType<TextOverflow>;
tooltipEnabled: BooleanConstructor;
tooltipTemplate: {};
type: PropType<AnnotationType>;
value: (DateConstructor | NumberConstructor | StringConstructor)[];
width: NumberConstructor;
wordWrap: PropType<WordWrap>;
x: NumberConstructor;
y: NumberConstructor;
}>> & {
"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:template"?: ((...args: any[]) => any) | undefined;
"onUpdate:text"?: ((...args: any[]) => any) | undefined;
"onUpdate:type"?: ((...args: any[]) => any) | undefined;
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
"onUpdate:name"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
"onUpdate:opacity"?: ((...args: any[]) => any) | undefined;
"onUpdate:font"?: ((...args: any[]) => any) | undefined;
"onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined;
"onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined;
"onUpdate:color"?: ((...args: any[]) => any) | undefined;
"onUpdate:border"?: ((...args: any[]) => any) | undefined;
"onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined;
"onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined;
"onUpdate:offsetX"?: ((...args: any[]) => any) | undefined;
"onUpdate:offsetY"?: ((...args: any[]) => any) | undefined;
"onUpdate:arrowLength"?: ((...args: any[]) => any) | undefined;
"onUpdate:customizeTooltip"?: ((...args: any[]) => any) | undefined;
"onUpdate:shadow"?: ((...args: any[]) => any) | undefined;
"onUpdate:data"?: ((...args: any[]) => any) | undefined;
"onUpdate:series"?: ((...args: any[]) => any) | undefined;
"onUpdate:allowDragging"?: ((...args: any[]) => any) | undefined;
"onUpdate:argument"?: ((...args: any[]) => any) | undefined;
"onUpdate:arrowWidth"?: ((...args: any[]) => any) | undefined;
"onUpdate:axis"?: ((...args: any[]) => any) | undefined;
"onUpdate:description"?: ((...args: any[]) => any) | undefined;
"onUpdate:image"?: ((...args: any[]) => any) | undefined;
"onUpdate:tooltipEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:tooltipTemplate"?: ((...args: any[]) => any) | undefined;
}, {
allowDragging: boolean;
tooltipEnabled: boolean;
}>;
declare const DxAnnotationBorder: import("@vue/runtime-core").DefineComponent<{
color: StringConstructor;
cornerRadius: NumberConstructor;
dashStyle: PropType<DashStyle>;
opacity: NumberConstructor;
visible: BooleanConstructor;
width: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
color: StringConstructor;
cornerRadius: NumberConstructor;
dashStyle: PropType<DashStyle>;
opacity: NumberConstructor;
visible: BooleanConstructor;
width: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
"onUpdate:width"?: ((...args: any[]) => any) | undefined;
"onUpdate:opacity"?: ((...args: any[]) => any) | undefined;
"onUpdate:color"?: ((...args: any[]) => any) | undefined;
"onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined;
"onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined;
}, {
visible: boolean;
}>;
declare const DxAnnotationImage: import("@vue/runtime-core").DefineComponent<{
height: NumberConstructor;
url: StringConstructor;
width: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:height": null;
"update:url": null;
"update:width": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
height: NumberConstructor;
url: StringConstructor;
width: NumberConstructor;
}>> & {
"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/runtime-core").DefineComponent<{
aggregatedPointsPosition: PropType<AggregatedPointsPosition>;
aggregationGroupWidth: NumberConstructor;
aggregationInterval: PropType<number | Record<string, any> | TimeInterval>;
allowDecimals: BooleanConstructor;
argumentType: PropType<ChartsDataType>;
axisDivisionFactor: NumberConstructor;
breaks: PropType<ScaleBreak[]>;
breakStyle: PropType<Record<string, any>>;
categories: PropType<(string | number | Date)[]>;
color: StringConstructor;
constantLines: PropType<Record<string, any>[]>;
constantLineStyle: PropType<Record<string, any>>;
customPosition: (DateConstructor | NumberConstructor | StringConstructor)[];
customPositionAxis: StringConstructor;
discreteAxisDivisionMode: PropType<DiscreteAxisDivisionMode>;
endOnTick: BooleanConstructor;
grid: PropType<Record<string, any>>;
holidays: PropType<number[] | (string | Date)[]>;
hoverMode: PropType<ArgumentAxisHoverMode>;
inverted: BooleanConstructor;
label: PropType<Record<string, any>>;
linearThreshold: NumberConstructor;
logarithmBase: NumberConstructor;
maxValueMargin: NumberConstructor;
minorGrid: PropType<Record<string, any>>;
minorTick: PropType<Record<string, any>>;
minorTickCount: NumberConstructor;
minorTickInterval: PropType<number | Record<string, any> | TimeInterval>;
minValueMargin: NumberConstructor;
minVisualRangeLength: PropType<number | Record<string, any> | TimeInterval>;
offset: NumberConstructor;
opacity: NumberConstructor;
placeholderSize: NumberConstructor;
position: PropType<Position>;
singleWorkdays: PropType<number[] | (string | Date)[]>;
strips: PropType<Record<string, any>[]>;
stripStyle: PropType<Record<string, any>>;
tick: PropType<Record<string, any>>;
tickInterval: PropType<number | Record<string, any> | TimeInterval>;
title: PropType<string | Record<string, any>>;
type: PropType<AxisScaleType>;
valueMarginsEnabled: BooleanConstructor;
visible: BooleanConstructor;
visualRange: PropType<Record<string, any> | (string | number | Date)[] | CommonChartTypes.VisualRange>;
visualRangeUpdateMode: PropType<VisualRangeUpdateMode>;
wholeRange: PropType<Record<string, any> | (string | number | Date)[] | CommonChartTypes.VisualRange>;
width: NumberConstructor;
workdaysOnly: BooleanConstructor;
workWeek: PropType<number[]>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
aggregatedPointsPosition: PropType<AggregatedPointsPosition>;
aggregationGroupWidth: NumberConstructor;
aggregationInterval: PropType<number | Record<string, any> | TimeInterval>;
allowDecimals: BooleanConstructor;
argumentType: PropType<ChartsDataType>;
axisDivisionFactor: NumberConstructor;
breaks: PropType<ScaleBreak[]>;
breakStyle: PropType<Record<string, any>>;
categories: PropType<(string | number | Date)[]>;
color: StringConstructor;
constantLines: PropType<Record<string, any>[]>;
constantLineStyle: PropType<Record<string, any>>;
customPosition: (DateConstructor | NumberConstructor | StringConstructor)[];
customPositionAxis: StringConstructor;
discreteAxisDivisionMode: PropType<DiscreteAxisDivisionMode>;
endOnTick: BooleanConstructor;
grid: PropType<Record<string, any>>;
holidays: PropType<number[] | (string | Date)[]>;
hoverMode: PropType<ArgumentAxisHoverMode>;
inverted: BooleanConstructor;
label: PropType<Record<string, any>>;
linearThreshold: NumberConstructor;
logarithmBase: NumberConstructor;
maxValueMargin: NumberConstructor;
minorGrid: PropType<Record<string, any>>;
minorTick: PropType<Record<string, any>>;
minorTickCount: NumberConstructor;
minorTickInterval: PropType<number | Record<string, any> | TimeInterval>;
minValueMargin: NumberConstructor;
minVisualRangeLength: PropType<number | Record<string, any> | TimeInterval>;
offset: NumberConstructor;
opacity: NumberConstructor;
placeholderSize: NumberConstructor;
position: PropType<Position>;
singleWorkdays: PropType<number[] | (string | Date)[]>;
strips: PropType<Record<string, any>[]>;
stripStyle: PropType<Record<string, any>>;
tick: PropType<Record<string, any>>;
tickInterval: PropType<number | Record<string, any> | TimeInterval>;
title: PropType<string | Record<string, any>>;
type: PropType<AxisScaleType>;
valueMarginsEnabled: BooleanConstructor;
visible: BooleanConstructor;
visualRange: PropType<Record<string, any> | (string | number | Date)[] | CommonChartTypes.VisualRange>;
visualRangeUpdateMode: PropType<VisualRangeUpdateMode>;
wholeRange: PropType<Record<string, any> | (string | number | Date)[] | CommonChartTypes.VisualRange>;
width: NumberConstructor;
workdaysOnly: BooleanConstructor;
workWeek: PropType<number[]>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
"onUpdate:width"?: ((...args: any[]) => any) | undefined;
"onUpdate:title"?: ((...args: any[]) => any) | undefined;
"onUpdate:type"?: ((...args: any[]) => any) | undefined;
"onUpdate:label"?: ((...args: any[]) => any) | undefined;
"onUpdate:position"?: ((...args: any[]) => any) | undefined;
"onUpdate:opacity"?: ((...args: any[]) => any) | undefined;
"onUpdate:offset"?: ((...args: any[]) => any) | undefined;
"onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined;
"onUpdate:color"?: ((...args: any[]) => any) | undefined;
"onUpdate:aggregatedPointsPosition"?: ((...args: any[]) => any) | undefined;
"onUpdate:aggregationGroupWidth"?: ((...args: any[]) => any) | undefined;
"onUpdate:aggregationInterval"?: ((...args: any[]) => any) | undefined;
"onUpdate:allowDecimals"?: ((...args: any[]) => any) | undefined;
"onUpdate:argumentType"?: ((...args: any[]) => any) | undefined;
"onUpdate:axisDivisionFactor"?: ((...args: any[]) => any) | undefined;
"onUpdate:breaks"?: ((...args: any[]) => any) | undefined;
"onUpdate:breakStyle"?: ((...args: any[]) => any) | undefined;
"onUpdate:categories"?: ((...args: any[]) => any) | undefined;
"onUpdate:constantLines"?: ((...args: any[]) => any) | undefined;
"onUpdate:constantLineStyle"?: ((...args: any[]) => any) | undefined;
"onUpdate:customPosition"?: ((...args: any[]) => any) | undefined;
"onUpdate:customPositionAxis"?: ((...args: any[]) => any) | undefined;
"onUpdate:discreteAxisDivisionMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:endOnTick"?: ((...args: any[]) => any) | undefined;
"onUpdate:grid"?: ((...args: any[]) => any) | undefined;
"onUpdate:holidays"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoverMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:inverted"?: ((...args: any[]) => any) | undefined;
"onUpdate:linearThreshold"?: ((...args: any[]) => any) | undefined;
"onUpdate:logarithmBase"?: ((...args: any[]) => any) | undefined;
"onUpdate:maxValueMargin"?: ((...args: any[]) => any) | undefined;
"onUpdate:minorGrid"?: ((...args: any[]) => any) | undefined;
"onUpdate:minorTick"?: ((...args: any[]) => any) | undefined;
"onUpdate:minorTickCount"?: ((...args: any[]) => any) | undefined;
"onUpdate:minorTickInterval"?: ((...args: any[]) => any) | undefined;
"onUpdate:minValueMargin"?: ((...args: any[]) => any) | undefined;
"onUpdate:minVisualRangeLength"?: ((...args: any[]) => any) | undefined;
"onUpdate:singleWorkdays"?: ((...args: any[]) => any) | undefined;
"onUpdate:strips"?: ((...args: any[]) => any) | undefined;
"onUpdate:stripStyle"?: ((...args: any[]) => any) | undefined;
"onUpdate:tick"?: ((...args: any[]) => any) | undefined;
"onUpdate:tickInterval"?: ((...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:workdaysOnly"?: ((...args: any[]) => any) | undefined;
"onUpdate:workWeek"?: ((...args: any[]) => any) | undefined;
}, {
visible: boolean;
allowDecimals: boolean;
endOnTick: boolean;
inverted: boolean;
valueMarginsEnabled: boolean;
workdaysOnly: boolean;
}>;
declare const DxArgumentFormat: import("@vue/runtime-core").DefineComponent<{
currency: StringConstructor;
formatter: PropType<(value: number | Date) => string>;
parser: PropType<(value: string) => number | Date>;
precision: NumberConstructor;
type: PropType<string>;
useCurrencyAccountingStyle: BooleanConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
currency: StringConstructor;
formatter: PropType<(value: number | Date) => string>;
parser: PropType<(value: string) => number | Date>;
precision: NumberConstructor;
type: PropType<string>;
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/runtime-core").DefineComponent<{
color: StringConstructor;
dashStyle: PropType<DashStyle>;
label: PropType<Record<string, any>>;
paddingLeftRight: NumberConstructor;
paddingTopBottom: NumberConstructor;
width: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
color: StringConstructor;
dashStyle: PropType<DashStyle>;
label: PropType<Record<string, any>>;
paddingLeftRight: NumberConstructor;
paddingTopBottom: NumberConstructor;
width: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:width"?: ((...args: any[]) => any) | undefined;
"onUpdate:label"?: ((...args: any[]) => any) | undefined;
"onUpdate:color"?: ((...args: any[]) => any) | undefined;
"onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined;
"onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined;
"onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxAxisConstantLineStyleLabel: import("@vue/runtime-core").DefineComponent<{
font: PropType<Record<string, any> | Font>;
horizontalAlignment: PropType<HorizontalAlignment>;
position: PropType<RelativePosition>;
verticalAlignment: PropType<VerticalAlignment>;
visible: BooleanConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").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/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
font: PropType<Record<string, any> | Font>;
horizontalAlignment: PropType<HorizontalAlignment>;
position: PropType<RelativePosition>;
verticalAlignment: PropType<VerticalAlignment>;
visible: BooleanConstructor;
}>> & {
"onUpdate:isActive"?: ((