/*! * devextreme-react * Version: 22.2.6 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 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-react */ /// import dxPolarChart, { Properties } from "devextreme/viz/polar_chart"; import { Component as BaseComponent, IHtmlOptions } from "./core/component"; import NestedOption from "./core/nested-option"; declare type IPolarChartOptions = React.PropsWithChildren void; onValueAxisChange?: (value: any) => void; }>; declare class PolarChart extends BaseComponent> { get instance(): dxPolarChart; protected _WidgetClass: typeof dxPolarChart; protected subscribableOptions: string[]; protected independentEvents: string[]; protected _defaults: { defaultLoadingIndicator: string; defaultValueAxis: string; }; protected _expectedChildren: { adaptiveLayout: { optionName: string; isCollectionItem: boolean; }; animation: { optionName: string; isCollectionItem: boolean; }; annotation: { optionName: string; isCollectionItem: boolean; }; argumentAxis: { optionName: string; isCollectionItem: boolean; }; commonAnnotationSettings: { optionName: string; isCollectionItem: boolean; }; commonAxisSettings: { optionName: string; isCollectionItem: boolean; }; commonSeriesSettings: { optionName: string; isCollectionItem: boolean; }; dataPrepareSettings: { optionName: string; isCollectionItem: boolean; }; export: { optionName: string; isCollectionItem: boolean; }; legend: { optionName: string; isCollectionItem: boolean; }; loadingIndicator: { optionName: string; isCollectionItem: boolean; }; margin: { optionName: string; isCollectionItem: boolean; }; polarChartTitle: { optionName: string; isCollectionItem: boolean; }; series: { optionName: string; isCollectionItem: boolean; }; seriesTemplate: { optionName: string; isCollectionItem: boolean; }; size: { optionName: string; isCollectionItem: boolean; }; title: { optionName: string; isCollectionItem: boolean; }; tooltip: { optionName: string; isCollectionItem: boolean; }; valueAxis: { optionName: string; isCollectionItem: boolean; }; }; } declare type IAdaptiveLayoutProps = React.PropsWithChildren<{ height?: any; keepLabels?: any; width?: any; }>; declare class AdaptiveLayout extends NestedOption { static OptionName: string; } declare type IAnimationProps = React.PropsWithChildren<{ duration?: any; easing?: any; enabled?: any; maxPointCountSupported?: any; }>; declare class Animation extends NestedOption { static OptionName: string; } declare type IAnnotationProps = React.PropsWithChildren<{ allowDragging?: any; angle?: any; argument?: any; arrowLength?: any; arrowWidth?: any; border?: object | { color?: any; cornerRadius?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }; color?: any; customizeTooltip?: any; data?: any; description?: any; font?: any; height?: any; image?: object | string | { height?: any; url?: any; width?: any; }; name?: any; offsetX?: any; offsetY?: any; opacity?: any; paddingLeftRight?: any; paddingTopBottom?: any; radius?: any; series?: any; shadow?: object | { blur?: any; color?: any; offsetX?: any; offsetY?: any; opacity?: any; }; template?: any; text?: any; textOverflow?: any; tooltipEnabled?: any; tooltipTemplate?: any; type?: any; value?: any; width?: any; wordWrap?: any; x?: any; y?: any; render?: (...params: any) => React.ReactNode; component?: React.ComponentType; keyFn?: (data: any) => string; tooltipRender?: (...params: any) => React.ReactNode; tooltipComponent?: React.ComponentType; tooltipKeyFn?: (data: any) => string; }>; declare class Annotation extends NestedOption { static OptionName: string; static IsCollectionItem: boolean; static ExpectedChildren: { annotationBorder: { optionName: string; isCollectionItem: boolean; }; border: { optionName: string; isCollectionItem: boolean; }; font: { optionName: string; isCollectionItem: boolean; }; image: { optionName: string; isCollectionItem: boolean; }; shadow: { optionName: string; isCollectionItem: boolean; }; }; static TemplateProps: { tmplOption: string; render: string; component: string; keyFn: string; }[]; } declare type IAnnotationBorderProps = React.PropsWithChildren<{ color?: any; cornerRadius?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }>; declare class AnnotationBorder extends NestedOption { static OptionName: string; } declare type IArgumentAxisProps = React.PropsWithChildren<{ allowDecimals?: any; argumentType?: any; axisDivisionFactor?: any; categories?: any; color?: any; constantLines?: { color?: any; dashStyle?: any; displayBehindSeries?: any; extendAxis?: any; label?: object | { font?: any; text?: any; visible?: any; }; value?: any; width?: any; }[]; constantLineStyle?: object | { color?: any; dashStyle?: any; label?: object | { font?: any; visible?: any; }; width?: any; }; discreteAxisDivisionMode?: any; endOnTick?: any; firstPointOnStartAngle?: any; grid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; hoverMode?: any; inverted?: any; label?: object | { customizeHint?: any; customizeText?: any; font?: any; format?: any; indentFromAxis?: any; overlappingBehavior?: any; visible?: any; }; linearThreshold?: any; logarithmBase?: any; minorGrid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; minorTick?: object | { color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }; minorTickCount?: any; minorTickInterval?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; opacity?: any; originValue?: any; period?: any; startAngle?: any; strips?: { color?: any; endValue?: any; label?: object | { font?: any; text?: any; }; startValue?: any; }[]; stripStyle?: object | { label?: object | { font?: any; }; }; tick?: object | { color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }; tickInterval?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; type?: any; visible?: any; width?: any; }>; declare class ArgumentAxis extends NestedOption { static OptionName: string; static ExpectedChildren: { argumentAxisMinorTick: { optionName: string; isCollectionItem: boolean; }; argumentAxisTick: { optionName: string; isCollectionItem: boolean; }; axisLabel: { optionName: string; isCollectionItem: boolean; }; constantLine: { optionName: string; isCollectionItem: boolean; }; constantLineStyle: { optionName: string; isCollectionItem: boolean; }; grid: { optionName: string; isCollectionItem: boolean; }; label: { optionName: string; isCollectionItem: boolean; }; minorGrid: { optionName: string; isCollectionItem: boolean; }; minorTick: { optionName: string; isCollectionItem: boolean; }; minorTickInterval: { optionName: string; isCollectionItem: boolean; }; strip: { optionName: string; isCollectionItem: boolean; }; stripStyle: { optionName: string; isCollectionItem: boolean; }; tick: { optionName: string; isCollectionItem: boolean; }; tickInterval: { optionName: string; isCollectionItem: boolean; }; }; } declare type IArgumentAxisMinorTickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }>; declare class ArgumentAxisMinorTick extends NestedOption { static OptionName: string; } declare type IArgumentAxisTickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }>; declare class ArgumentAxisTick extends NestedOption { static OptionName: string; } declare type IArgumentFormatProps = React.PropsWithChildren<{ currency?: any; formatter?: any; parser?: any; precision?: any; type?: any; useCurrencyAccountingStyle?: any; }>; declare class ArgumentFormat extends NestedOption { static OptionName: string; } declare type IAxisLabelProps = React.PropsWithChildren<{ customizeHint?: any; customizeText?: any; font?: any; format?: any; indentFromAxis?: any; overlappingBehavior?: any; visible?: any; }>; declare class AxisLabel extends NestedOption { static OptionName: string; } declare type IBorderProps = React.PropsWithChildren<{ color?: any; cornerRadius?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }>; declare class Border extends NestedOption { static OptionName: string; } declare type ICommonAnnotationSettingsProps = React.PropsWithChildren<{ allowDragging?: any; angle?: any; argument?: any; arrowLength?: any; arrowWidth?: any; border?: object | { color?: any; cornerRadius?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }; color?: any; customizeTooltip?: any; data?: any; description?: any; font?: any; height?: any; image?: object | string | { height?: any; url?: any; width?: any; }; offsetX?: any; offsetY?: any; opacity?: any; paddingLeftRight?: any; paddingTopBottom?: any; radius?: any; series?: any; shadow?: object | { blur?: any; color?: any; offsetX?: any; offsetY?: any; opacity?: any; }; template?: any; text?: any; textOverflow?: any; tooltipEnabled?: any; tooltipTemplate?: any; type?: any; value?: any; width?: any; wordWrap?: any; x?: any; y?: any; render?: (...params: any) => React.ReactNode; component?: React.ComponentType; keyFn?: (data: any) => string; tooltipRender?: (...params: any) => React.ReactNode; tooltipComponent?: React.ComponentType; tooltipKeyFn?: (data: any) => string; }>; declare class CommonAnnotationSettings extends NestedOption { static OptionName: string; static TemplateProps: { tmplOption: string; render: string; component: string; keyFn: string; }[]; } declare type ICommonAxisSettingsProps = React.PropsWithChildren<{ allowDecimals?: any; color?: any; constantLineStyle?: object | { color?: any; dashStyle?: any; label?: object | { font?: any; visible?: any; }; width?: any; }; discreteAxisDivisionMode?: any; endOnTick?: any; grid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; inverted?: any; label?: object | { font?: any; indentFromAxis?: any; overlappingBehavior?: any; visible?: any; }; minorGrid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; minorTick?: object | { color?: any; length?: any; opacity?: any; visible?: any; width?: any; }; opacity?: any; stripStyle?: object | { label?: object | { font?: any; }; }; tick?: object | { color?: any; length?: any; opacity?: any; visible?: any; width?: any; }; visible?: any; width?: any; }>; declare class CommonAxisSettings extends NestedOption { static OptionName: string; static ExpectedChildren: { commonAxisSettingsLabel: { optionName: string; isCollectionItem: boolean; }; commonAxisSettingsMinorTick: { optionName: string; isCollectionItem: boolean; }; commonAxisSettingsTick: { optionName: string; isCollectionItem: boolean; }; label: { optionName: string; isCollectionItem: boolean; }; minorTick: { optionName: string; isCollectionItem: boolean; }; tick: { optionName: string; isCollectionItem: boolean; }; }; } declare type ICommonAxisSettingsLabelProps = React.PropsWithChildren<{ font?: any; indentFromAxis?: any; overlappingBehavior?: any; visible?: any; }>; declare class CommonAxisSettingsLabel extends NestedOption { static OptionName: string; } declare type ICommonAxisSettingsMinorTickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; visible?: any; width?: any; }>; declare class CommonAxisSettingsMinorTick extends NestedOption { static OptionName: string; } declare type ICommonAxisSettingsTickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; visible?: any; width?: any; }>; declare class CommonAxisSettingsTick extends NestedOption { static OptionName: string; } declare type ICommonSeriesSettingsProps = React.PropsWithChildren<{ area?: any; argumentField?: any; axis?: any; bar?: any; barPadding?: any; barWidth?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; closed?: any; color?: any; dashStyle?: any; hoverMode?: any; hoverStyle?: object | { border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }; ignoreEmptyPoints?: any; label?: object | { argumentFormat?: any; backgroundColor?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; connector?: object | { color?: any; visible?: any; width?: any; }; customizeText?: any; displayFormat?: any; font?: any; format?: any; position?: any; rotationAngle?: any; showForZeroValues?: any; visible?: any; }; line?: any; maxLabelCount?: any; minBarSize?: any; opacity?: any; point?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; hoverMode?: any; hoverStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; image?: object | string | { height?: any; url?: any; width?: any; }; selectionMode?: any; selectionStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; size?: any; symbol?: any; visible?: any; }; scatter?: any; selectionMode?: any; selectionStyle?: object | { border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }; showInLegend?: any; stack?: any; stackedbar?: any; tagField?: any; type?: any; valueErrorBar?: object | { color?: any; displayMode?: any; edgeLength?: any; highValueField?: any; lineWidth?: any; lowValueField?: any; opacity?: any; type?: any; value?: any; }; valueField?: any; visible?: any; width?: any; }>; declare class CommonSeriesSettings extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; commonSeriesSettingsHoverStyle: { optionName: string; isCollectionItem: boolean; }; commonSeriesSettingsLabel: { optionName: string; isCollectionItem: boolean; }; commonSeriesSettingsSelectionStyle: { optionName: string; isCollectionItem: boolean; }; hoverStyle: { optionName: string; isCollectionItem: boolean; }; label: { optionName: string; isCollectionItem: boolean; }; point: { optionName: string; isCollectionItem: boolean; }; selectionStyle: { optionName: string; isCollectionItem: boolean; }; seriesBorder: { optionName: string; isCollectionItem: boolean; }; valueErrorBar: { optionName: string; isCollectionItem: boolean; }; }; } declare type ICommonSeriesSettingsHoverStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }>; declare class CommonSeriesSettingsHoverStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; hatching: { optionName: string; isCollectionItem: boolean; }; seriesBorder: { optionName: string; isCollectionItem: boolean; }; }; } declare type ICommonSeriesSettingsLabelProps = React.PropsWithChildren<{ argumentFormat?: any; backgroundColor?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; connector?: object | { color?: any; visible?: any; width?: any; }; customizeText?: any; displayFormat?: any; font?: any; format?: any; position?: any; rotationAngle?: any; showForZeroValues?: any; visible?: any; }>; declare class CommonSeriesSettingsLabel extends NestedOption { static OptionName: string; static ExpectedChildren: { argumentFormat: { optionName: string; isCollectionItem: boolean; }; border: { optionName: string; isCollectionItem: boolean; }; connector: { optionName: string; isCollectionItem: boolean; }; font: { optionName: string; isCollectionItem: boolean; }; format: { optionName: string; isCollectionItem: boolean; }; seriesBorder: { optionName: string; isCollectionItem: boolean; }; }; } declare type ICommonSeriesSettingsSelectionStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }>; declare class CommonSeriesSettingsSelectionStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; hatching: { optionName: string; isCollectionItem: boolean; }; seriesBorder: { optionName: string; isCollectionItem: boolean; }; }; } declare type IConnectorProps = React.PropsWithChildren<{ color?: any; visible?: any; width?: any; }>; declare class Connector extends NestedOption { static OptionName: string; } declare type IConstantLineProps = React.PropsWithChildren<{ color?: any; dashStyle?: any; displayBehindSeries?: any; extendAxis?: any; label?: object | { font?: any; text?: any; visible?: any; }; value?: any; width?: any; }>; declare class ConstantLine extends NestedOption { static OptionName: string; static IsCollectionItem: boolean; } declare type IConstantLineLabelProps = React.PropsWithChildren<{ font?: any; text?: any; visible?: any; }>; declare class ConstantLineLabel extends NestedOption { static OptionName: string; } declare type IConstantLineStyleProps = React.PropsWithChildren<{ color?: any; dashStyle?: any; label?: object | { font?: any; visible?: any; }; width?: any; }>; declare class ConstantLineStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { constantLineStyleLabel: { optionName: string; isCollectionItem: boolean; }; label: { optionName: string; isCollectionItem: boolean; }; }; } declare type IConstantLineStyleLabelProps = React.PropsWithChildren<{ font?: any; visible?: any; }>; declare class ConstantLineStyleLabel extends NestedOption { static OptionName: string; } declare type IDataPrepareSettingsProps = React.PropsWithChildren<{ checkTypeForAllData?: any; convertToAxisDataType?: any; sortingMethod?: any; }>; declare class DataPrepareSettings extends NestedOption { static OptionName: string; } declare type IExportProps = React.PropsWithChildren<{ backgroundColor?: any; enabled?: any; fileName?: any; formats?: any; margin?: any; printingEnabled?: any; svgToCanvas?: any; }>; declare class Export extends NestedOption { static OptionName: string; } declare type IFontProps = React.PropsWithChildren<{ color?: any; family?: any; opacity?: any; size?: any; weight?: any; }>; declare class Font extends NestedOption { static OptionName: string; } declare type IFormatProps = React.PropsWithChildren<{ currency?: any; formatter?: any; parser?: any; precision?: any; type?: any; useCurrencyAccountingStyle?: any; }>; declare class Format extends NestedOption { static OptionName: string; } declare type IGridProps = React.PropsWithChildren<{ color?: any; opacity?: any; visible?: any; width?: any; }>; declare class Grid extends NestedOption { static OptionName: string; } declare type IHatchingProps = React.PropsWithChildren<{ direction?: any; opacity?: any; step?: any; width?: any; }>; declare class Hatching extends NestedOption { static OptionName: string; } declare type IHoverStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; size?: any; }>; declare class HoverStyle extends NestedOption { static OptionName: string; } declare type IImageProps = React.PropsWithChildren<{ height?: any; url?: any; width?: any; }>; declare class Image extends NestedOption { static OptionName: string; } declare type ILabelProps = React.PropsWithChildren<{ font?: any; text?: any; visible?: any; customizeHint?: any; customizeText?: any; format?: any; indentFromAxis?: any; overlappingBehavior?: any; argumentFormat?: any; backgroundColor?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; connector?: object | { color?: any; visible?: any; width?: any; }; displayFormat?: any; position?: any; rotationAngle?: any; showForZeroValues?: any; }>; declare class Label extends NestedOption { static OptionName: string; } declare type ILegendProps = React.PropsWithChildren<{ backgroundColor?: any; border?: object | { color?: any; cornerRadius?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }; columnCount?: any; columnItemSpacing?: any; customizeHint?: any; customizeItems?: any; customizeText?: any; font?: any; horizontalAlignment?: any; hoverMode?: any; itemsAlignment?: any; itemTextPosition?: any; margin?: number | object | { bottom?: any; left?: any; right?: any; top?: any; }; markerSize?: any; markerTemplate?: any; orientation?: any; paddingLeftRight?: any; paddingTopBottom?: any; rowCount?: any; rowItemSpacing?: any; title?: object | string | { font?: any; horizontalAlignment?: any; margin?: object | { bottom?: any; left?: any; right?: any; top?: any; }; placeholderSize?: any; subtitle?: object | string | { font?: any; offset?: any; text?: any; }; text?: any; verticalAlignment?: any; }; verticalAlignment?: any; visible?: any; markerRender?: (...params: any) => React.ReactNode; markerComponent?: React.ComponentType; markerKeyFn?: (data: any) => string; }>; declare class Legend extends NestedOption { static OptionName: string; static ExpectedChildren: { annotationBorder: { optionName: string; isCollectionItem: boolean; }; border: { optionName: string; isCollectionItem: boolean; }; font: { optionName: string; isCollectionItem: boolean; }; legendTitle: { optionName: string; isCollectionItem: boolean; }; margin: { optionName: string; isCollectionItem: boolean; }; title: { optionName: string; isCollectionItem: boolean; }; }; static TemplateProps: { tmplOption: string; render: string; component: string; keyFn: string; }[]; } declare type ILegendTitleProps = React.PropsWithChildren<{ font?: any; horizontalAlignment?: any; margin?: object | { bottom?: any; left?: any; right?: any; top?: any; }; placeholderSize?: any; subtitle?: object | string | { font?: any; offset?: any; text?: any; }; text?: any; verticalAlignment?: any; }>; declare class LegendTitle extends NestedOption { static OptionName: string; static ExpectedChildren: { font: { optionName: string; isCollectionItem: boolean; }; legendTitleSubtitle: { optionName: string; isCollectionItem: boolean; }; margin: { optionName: string; isCollectionItem: boolean; }; subtitle: { optionName: string; isCollectionItem: boolean; }; }; } declare type ILegendTitleSubtitleProps = React.PropsWithChildren<{ font?: any; offset?: any; text?: any; }>; declare class LegendTitleSubtitle extends NestedOption { static OptionName: string; static ExpectedChildren: { font: { optionName: string; isCollectionItem: boolean; }; }; } declare type ILengthProps = React.PropsWithChildren<{ days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }>; declare class Length extends NestedOption { static OptionName: string; } declare type ILoadingIndicatorProps = React.PropsWithChildren<{ backgroundColor?: any; enabled?: any; font?: any; show?: any; text?: any; defaultShow?: any; onShowChange?: (value: any) => void; }>; declare class LoadingIndicator extends NestedOption { static OptionName: string; static DefaultsProps: { defaultShow: string; }; static ExpectedChildren: { font: { optionName: string; isCollectionItem: boolean; }; }; } declare type IMarginProps = React.PropsWithChildren<{ bottom?: any; left?: any; right?: any; top?: any; }>; declare class Margin extends NestedOption { static OptionName: string; } declare type IMinorGridProps = React.PropsWithChildren<{ color?: any; opacity?: any; visible?: any; width?: any; }>; declare class MinorGrid extends NestedOption { static OptionName: string; } declare type IMinorTickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }>; declare class MinorTick extends NestedOption { static OptionName: string; } declare type IMinorTickIntervalProps = React.PropsWithChildren<{ days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }>; declare class MinorTickInterval extends NestedOption { static OptionName: string; } declare type IMinVisualRangeLengthProps = React.PropsWithChildren<{ days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }>; declare class MinVisualRangeLength extends NestedOption { static OptionName: string; } declare type IPointProps = React.PropsWithChildren<{ border?: object | { color?: any; visible?: any; width?: any; }; color?: any; hoverMode?: any; hoverStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; image?: object | string | { height?: any; url?: any; width?: any; }; selectionMode?: any; selectionStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; size?: any; symbol?: any; visible?: any; }>; declare class Point extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; hoverStyle: { optionName: string; isCollectionItem: boolean; }; image: { optionName: string; isCollectionItem: boolean; }; pointBorder: { optionName: string; isCollectionItem: boolean; }; pointHoverStyle: { optionName: string; isCollectionItem: boolean; }; pointSelectionStyle: { optionName: string; isCollectionItem: boolean; }; selectionStyle: { optionName: string; isCollectionItem: boolean; }; }; } declare type IPointBorderProps = React.PropsWithChildren<{ color?: any; visible?: any; width?: any; }>; declare class PointBorder extends NestedOption { static OptionName: string; } declare type IPointHoverStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }>; declare class PointHoverStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; pointBorder: { optionName: string; isCollectionItem: boolean; }; }; } declare type IPointSelectionStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }>; declare class PointSelectionStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { border: { optionName: string; isCollectionItem: boolean; }; pointBorder: { optionName: string; isCollectionItem: boolean; }; }; } declare type IPolarChartTitleProps = React.PropsWithChildren<{ font?: any; horizontalAlignment?: any; margin?: number | object | { bottom?: any; left?: any; right?: any; top?: any; }; placeholderSize?: any; subtitle?: object | string | { font?: any; offset?: any; text?: any; textOverflow?: any; wordWrap?: any; }; text?: any; textOverflow?: any; verticalAlignment?: any; wordWrap?: any; }>; declare class PolarChartTitle extends NestedOption { static OptionName: string; static ExpectedChildren: { font: { optionName: string; isCollectionItem: boolean; }; margin: { optionName: string; isCollectionItem: boolean; }; polarChartTitleSubtitle: { optionName: string; isCollectionItem: boolean; }; subtitle: { optionName: string; isCollectionItem: boolean; }; }; } declare type IPolarChartTitleSubtitleProps = React.PropsWithChildren<{ font?: any; offset?: any; text?: any; textOverflow?: any; wordWrap?: any; }>; declare class PolarChartTitleSubtitle extends NestedOption { static OptionName: string; static ExpectedChildren: { font: { optionName: string; isCollectionItem: boolean; }; }; } declare type ISelectionStyleProps = React.PropsWithChildren<{ border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }>; declare class SelectionStyle extends NestedOption { static OptionName: string; } declare type ISeriesProps = React.PropsWithChildren<{ argumentField?: any; axis?: any; barPadding?: any; barWidth?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; closed?: any; color?: any; dashStyle?: any; hoverMode?: any; hoverStyle?: object | { border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }; ignoreEmptyPoints?: any; label?: object | { argumentFormat?: any; backgroundColor?: any; border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; connector?: object | { color?: any; visible?: any; width?: any; }; customizeText?: any; displayFormat?: any; font?: any; format?: any; position?: any; rotationAngle?: any; showForZeroValues?: any; visible?: any; }; maxLabelCount?: any; minBarSize?: any; name?: any; opacity?: any; point?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; hoverMode?: any; hoverStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; image?: object | string | { height?: any; url?: any; width?: any; }; selectionMode?: any; selectionStyle?: object | { border?: object | { color?: any; visible?: any; width?: any; }; color?: any; size?: any; }; size?: any; symbol?: any; visible?: any; }; selectionMode?: any; selectionStyle?: object | { border?: object | { color?: any; dashStyle?: any; visible?: any; width?: any; }; color?: any; dashStyle?: any; hatching?: object | { direction?: any; opacity?: any; step?: any; width?: any; }; width?: any; }; showInLegend?: any; stack?: any; tag?: any; tagField?: any; type?: any; valueErrorBar?: object | { color?: any; displayMode?: any; edgeLength?: any; highValueField?: any; lineWidth?: any; lowValueField?: any; opacity?: any; type?: any; value?: any; }; valueField?: any; visible?: any; width?: any; }>; declare class Series extends NestedOption { static OptionName: string; static IsCollectionItem: boolean; } declare type ISeriesBorderProps = React.PropsWithChildren<{ color?: any; dashStyle?: any; visible?: any; width?: any; }>; declare class SeriesBorder extends NestedOption { static OptionName: string; } declare type ISeriesTemplateProps = React.PropsWithChildren<{ customizeSeries?: any; nameField?: any; }>; declare class SeriesTemplate extends NestedOption { static OptionName: string; } declare type IShadowProps = React.PropsWithChildren<{ blur?: any; color?: any; offsetX?: any; offsetY?: any; opacity?: any; }>; declare class Shadow extends NestedOption { static OptionName: string; } declare type ISizeProps = React.PropsWithChildren<{ height?: any; width?: any; }>; declare class Size extends NestedOption { static OptionName: string; } declare type IStripProps = React.PropsWithChildren<{ color?: any; endValue?: any; label?: object | { font?: any; text?: any; }; startValue?: any; }>; declare class Strip extends NestedOption { static OptionName: string; static IsCollectionItem: boolean; } declare type IStripLabelProps = React.PropsWithChildren<{ font?: any; text?: any; }>; declare class StripLabel extends NestedOption { static OptionName: string; } declare type IStripStyleProps = React.PropsWithChildren<{ label?: object | { font?: any; }; }>; declare class StripStyle extends NestedOption { static OptionName: string; static ExpectedChildren: { label: { optionName: string; isCollectionItem: boolean; }; stripStyleLabel: { optionName: string; isCollectionItem: boolean; }; }; } declare type IStripStyleLabelProps = React.PropsWithChildren<{ font?: any; }>; declare class StripStyleLabel extends NestedOption { static OptionName: string; } declare type ISubtitleProps = React.PropsWithChildren<{ font?: any; offset?: any; text?: any; textOverflow?: any; wordWrap?: any; }>; declare class Subtitle extends NestedOption { static OptionName: string; } declare type ITickProps = React.PropsWithChildren<{ color?: any; length?: any; opacity?: any; shift?: any; visible?: any; width?: any; }>; declare class Tick extends NestedOption { static OptionName: string; } declare type ITickIntervalProps = React.PropsWithChildren<{ days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }>; declare class TickInterval extends NestedOption { static OptionName: string; } declare type ITitleProps = React.PropsWithChildren<{ font?: any; horizontalAlignment?: any; margin?: object | { bottom?: any; left?: any; right?: any; top?: any; }; placeholderSize?: any; subtitle?: object | string | { font?: any; offset?: any; text?: any; }; text?: any; verticalAlignment?: any; textOverflow?: any; wordWrap?: any; }>; declare class Title extends NestedOption { static OptionName: string; } declare type ITooltipProps = React.PropsWithChildren<{ argumentFormat?: any; arrowLength?: any; border?: object | { color?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }; color?: any; container?: any; contentTemplate?: any; cornerRadius?: any; customizeTooltip?: any; enabled?: any; font?: any; format?: any; interactive?: any; opacity?: any; paddingLeftRight?: any; paddingTopBottom?: any; shadow?: object | { blur?: any; color?: any; offsetX?: any; offsetY?: any; opacity?: any; }; shared?: any; zIndex?: any; contentRender?: (...params: any) => React.ReactNode; contentComponent?: React.ComponentType; contentKeyFn?: (data: any) => string; }>; declare class Tooltip extends NestedOption { static OptionName: string; static ExpectedChildren: { argumentFormat: { optionName: string; isCollectionItem: boolean; }; border: { optionName: string; isCollectionItem: boolean; }; font: { optionName: string; isCollectionItem: boolean; }; format: { optionName: string; isCollectionItem: boolean; }; shadow: { optionName: string; isCollectionItem: boolean; }; tooltipBorder: { optionName: string; isCollectionItem: boolean; }; }; static TemplateProps: { tmplOption: string; render: string; component: string; keyFn: string; }[]; } declare type ITooltipBorderProps = React.PropsWithChildren<{ color?: any; dashStyle?: any; opacity?: any; visible?: any; width?: any; }>; declare class TooltipBorder extends NestedOption { static OptionName: string; } declare type IValueAxisProps = React.PropsWithChildren<{ allowDecimals?: any; axisDivisionFactor?: any; categories?: any; color?: any; constantLines?: { color?: any; dashStyle?: any; displayBehindSeries?: any; extendAxis?: any; label?: object | { font?: any; text?: any; visible?: any; }; value?: any; width?: any; }[]; constantLineStyle?: object | { color?: any; dashStyle?: any; label?: object | { font?: any; visible?: any; }; width?: any; }; discreteAxisDivisionMode?: any; endOnTick?: any; grid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; inverted?: any; label?: object | { customizeHint?: any; customizeText?: any; font?: any; format?: any; indentFromAxis?: any; overlappingBehavior?: any; visible?: any; }; linearThreshold?: any; logarithmBase?: any; maxValueMargin?: any; minorGrid?: object | { color?: any; opacity?: any; visible?: any; width?: any; }; minorTick?: object | { color?: any; length?: any; opacity?: any; visible?: any; width?: any; }; minorTickCount?: any; minorTickInterval?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; minValueMargin?: any; minVisualRangeLength?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; opacity?: any; showZero?: any; strips?: { color?: any; endValue?: any; label?: object | { font?: any; text?: any; }; startValue?: any; }[]; stripStyle?: object | { label?: object | { font?: any; }; }; tick?: object | { color?: any; length?: any; opacity?: any; visible?: any; width?: any; }; tickInterval?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; type?: any; valueMarginsEnabled?: any; valueType?: any; visible?: any; visualRange?: any; visualRangeUpdateMode?: any; wholeRange?: any; width?: any; defaultVisualRange?: any; onVisualRangeChange?: (value: any) => void; }>; declare class ValueAxis extends NestedOption { static OptionName: string; static DefaultsProps: { defaultVisualRange: string; }; static ExpectedChildren: { axisLabel: { optionName: string; isCollectionItem: boolean; }; commonAxisSettingsTick: { optionName: string; isCollectionItem: boolean; }; constantLine: { optionName: string; isCollectionItem: boolean; }; label: { optionName: string; isCollectionItem: boolean; }; minorTickInterval: { optionName: string; isCollectionItem: boolean; }; minVisualRangeLength: { optionName: string; isCollectionItem: boolean; }; strip: { optionName: string; isCollectionItem: boolean; }; tick: { optionName: string; isCollectionItem: boolean; }; tickInterval: { optionName: string; isCollectionItem: boolean; }; visualRange: { optionName: string; isCollectionItem: boolean; }; wholeRange: { optionName: string; isCollectionItem: boolean; }; }; } declare type IValueErrorBarProps = React.PropsWithChildren<{ color?: any; displayMode?: any; edgeLength?: any; highValueField?: any; lineWidth?: any; lowValueField?: any; opacity?: any; type?: any; value?: any; }>; declare class ValueErrorBar extends NestedOption { static OptionName: string; } declare type IVisualRangeProps = React.PropsWithChildren<{ endValue?: any; length?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; startValue?: any; defaultEndValue?: any; onEndValueChange?: (value: any) => void; defaultStartValue?: any; onStartValueChange?: (value: any) => void; }>; declare class VisualRange extends NestedOption { static OptionName: string; static DefaultsProps: { defaultEndValue: string; defaultStartValue: string; }; static ExpectedChildren: { length: { optionName: string; isCollectionItem: boolean; }; }; } declare type IWholeRangeProps = React.PropsWithChildren<{ endValue?: any; length?: number | object | string | { days?: any; hours?: any; milliseconds?: any; minutes?: any; months?: any; quarters?: any; seconds?: any; weeks?: any; years?: any; }; startValue?: any; defaultEndValue?: any; onEndValueChange?: (value: any) => void; defaultStartValue?: any; onStartValueChange?: (value: any) => void; }>; declare class WholeRange extends NestedOption { static OptionName: string; static DefaultsProps: { defaultEndValue: string; defaultStartValue: string; }; } export default PolarChart; export { PolarChart, IPolarChartOptions, AdaptiveLayout, IAdaptiveLayoutProps, Animation, IAnimationProps, Annotation, IAnnotationProps, AnnotationBorder, IAnnotationBorderProps, ArgumentAxis, IArgumentAxisProps, ArgumentAxisMinorTick, IArgumentAxisMinorTickProps, ArgumentAxisTick, IArgumentAxisTickProps, ArgumentFormat, IArgumentFormatProps, AxisLabel, IAxisLabelProps, Border, IBorderProps, CommonAnnotationSettings, ICommonAnnotationSettingsProps, CommonAxisSettings, ICommonAxisSettingsProps, CommonAxisSettingsLabel, ICommonAxisSettingsLabelProps, CommonAxisSettingsMinorTick, ICommonAxisSettingsMinorTickProps, CommonAxisSettingsTick, ICommonAxisSettingsTickProps, CommonSeriesSettings, ICommonSeriesSettingsProps, CommonSeriesSettingsHoverStyle, ICommonSeriesSettingsHoverStyleProps, CommonSeriesSettingsLabel, ICommonSeriesSettingsLabelProps, CommonSeriesSettingsSelectionStyle, ICommonSeriesSettingsSelectionStyleProps, Connector, IConnectorProps, ConstantLine, IConstantLineProps, ConstantLineLabel, IConstantLineLabelProps, ConstantLineStyle, IConstantLineStyleProps, ConstantLineStyleLabel, IConstantLineStyleLabelProps, DataPrepareSettings, IDataPrepareSettingsProps, Export, IExportProps, Font, IFontProps, Format, IFormatProps, Grid, IGridProps, Hatching, IHatchingProps, HoverStyle, IHoverStyleProps, Image, IImageProps, Label, ILabelProps, Legend, ILegendProps, LegendTitle, ILegendTitleProps, LegendTitleSubtitle, ILegendTitleSubtitleProps, Length, ILengthProps, LoadingIndicator, ILoadingIndicatorProps, Margin, IMarginProps, MinorGrid, IMinorGridProps, MinorTick, IMinorTickProps, MinorTickInterval, IMinorTickIntervalProps, MinVisualRangeLength, IMinVisualRangeLengthProps, Point, IPointProps, PointBorder, IPointBorderProps, PointHoverStyle, IPointHoverStyleProps, PointSelectionStyle, IPointSelectionStyleProps, PolarChartTitle, IPolarChartTitleProps, PolarChartTitleSubtitle, IPolarChartTitleSubtitleProps, SelectionStyle, ISelectionStyleProps, Series, ISeriesProps, SeriesBorder, ISeriesBorderProps, SeriesTemplate, ISeriesTemplateProps, Shadow, IShadowProps, Size, ISizeProps, Strip, IStripProps, StripLabel, IStripLabelProps, StripStyle, IStripStyleProps, StripStyleLabel, IStripStyleLabelProps, Subtitle, ISubtitleProps, Tick, ITickProps, TickInterval, ITickIntervalProps, Title, ITitleProps, Tooltip, ITooltipProps, TooltipBorder, ITooltipBorderProps, ValueAxis, IValueAxisProps, ValueErrorBar, IValueErrorBarProps, VisualRange, IVisualRangeProps, WholeRange, IWholeRangeProps };