| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256 |
- /*!
- * devextreme-angular
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file in the root of the project for details.
- *
- * https://github.com/DevExpress/devextreme-angular
- */
- import { TransferState } from '@angular/platform-browser';
- import { ElementRef, NgZone, OnDestroy, EventEmitter, OnChanges, DoCheck, SimpleChanges, QueryList } from '@angular/core';
- import DevExpress from 'devextreme/bundles/dx.all';
- import DxPolarChart from 'devextreme/viz/polar_chart';
- import { DxComponent } from '../core/component';
- import { DxTemplateHost } from '../core/template-host';
- import { NestedOptionHost } from '../core/nested-option';
- import { WatcherHelper } from '../core/watcher-helper';
- import { IterableDifferHelper } from '../core/iterable-differ-helper';
- import { DxiSeriesComponent } from './nested/series-dxi';
- /**
- * The PolarChart is a widget that visualizes data in a polar coordinate system.
- */
- export declare class DxPolarChartComponent extends DxComponent implements OnDestroy, OnChanges, DoCheck {
- private _watcherHelper;
- private _idh;
- instance: DxPolarChart;
- /**
- * Specifies adaptive layout options.
- */
- adaptiveLayout: {
- height?: number;
- keepLabels?: boolean;
- width?: number;
- };
- /**
- * Specifies animation options.
- */
- animation: boolean | {
- duration?: number;
- easing?: string;
- enabled?: boolean;
- maxPointCountSupported?: number;
- };
- /**
- * Specifies argument axis options for the PolarChart widget.
- */
- argumentAxis: {
- allowDecimals?: boolean;
- argumentType?: string;
- axisDivisionFactor?: number;
- categories?: Array<number | string | Date>;
- color?: string;
- constantLines?: Array<any | {
- color?: string;
- dashStyle?: string;
- displayBehindSeries?: boolean;
- extendAxis?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- visible?: boolean;
- };
- value?: Date | number | string;
- width?: number;
- }>;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- firstPointOnStartAngle?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- hoverMode?: string;
- inverted?: boolean;
- label?: {
- customizeHint?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- logarithmBase?: number;
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- shift?: number;
- visible?: boolean;
- width?: number;
- };
- minorTickCount?: number;
- minorTickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- opacity?: number;
- originValue?: number;
- period?: number;
- startAngle?: number;
- strips?: Array<any | {
- color?: string;
- endValue?: Date | number | string;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- };
- startValue?: Date | number | string;
- }>;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- shift?: number;
- visible?: boolean;
- width?: number;
- };
- tickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- type?: string;
- visible?: boolean;
- width?: number;
- };
- /**
- * Controls the padding and consequently the angular width of a group of bars with the same argument using relative units. Ignored if the barGroupWidth option is set.
- */
- barGroupPadding: number;
- /**
- * Specifies a fixed angular width for groups of bars with the same argument, measured in degrees. Takes precedence over the barGroupPadding option.
- */
- barGroupWidth: number;
- /**
- * Use CommonPolarChartSeries.barPadding instead.
- */
- barWidth: number;
- /**
- * An object defining the configuration options that are common for all axes of the PolarChart widget.
- */
- commonAxisSettings: {
- allowDecimals?: boolean;
- color?: string;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- inverted?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- opacity?: number;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- visible?: boolean;
- width?: number;
- };
- /**
- * An object defining the configuration options that are common for all series of the PolarChart widget.
- */
- commonSeriesSettings: any;
- /**
- * Specifies the color of the parent page element.
- */
- containerBackgroundColor: string;
- /**
- * Customizes the appearance of an individual point label.
- */
- customizeLabel: Function;
- /**
- * Customizes the appearance of an individual series point.
- */
- customizePoint: Function;
- /**
- * An object providing options for managing data from a data source.
- */
- dataPrepareSettings: {
- checkTypeForAllData?: boolean;
- convertToAxisDataType?: boolean;
- sortingMethod?: boolean | Function;
- };
- /**
- * Binds the widget to data.
- */
- dataSource: DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string | Array<any>;
- /**
- * Specifies whether the widget responds to the user interaction.
- */
- disabled: boolean;
- /**
- * Specifies the attributes to be attached to the widget's root element.
- */
- elementAttr: any;
- /**
- * Use CommonPolarChartSeries.ignoreEmptyPoints instead.
- */
- equalBarWidth: boolean;
- /**
- * Configures the exporting and printing features.
- */
- export: {
- backgroundColor?: string;
- enabled?: boolean;
- fileName?: string;
- formats?: Array<string>;
- margin?: number;
- printingEnabled?: boolean;
- proxyUrl?: string;
- };
- /**
- * Specifies the options of a chart's legend.
- */
- legend: {
- backgroundColor?: string;
- border?: {
- color?: string;
- cornerRadius?: number;
- dashStyle?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- columnCount?: number;
- columnItemSpacing?: number;
- customizeHint?: Function;
- customizeItems?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- hoverMode?: string;
- itemsAlignment?: string;
- itemTextPosition?: string;
- margin?: number | {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- markerSize?: number;
- orientation?: string;
- paddingLeftRight?: number;
- paddingTopBottom?: number;
- rowCount?: number;
- rowItemSpacing?: number;
- title?: string | {
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- margin?: {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- placeholderSize?: number;
- subtitle?: string | {
- font?: DevExpress.viz.Font;
- offset?: number;
- text?: string;
- };
- text?: string;
- verticalAlignment?: string;
- };
- verticalAlignment?: string;
- visible?: boolean;
- };
- /**
- * Configures the loading indicator.
- */
- loadingIndicator: {
- backgroundColor?: string;
- enabled?: boolean;
- font?: DevExpress.viz.Font;
- show?: boolean;
- text?: string;
- };
- /**
- * Generates space around the widget.
- */
- margin: {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- /**
- * Forces the widget to treat negative values as zeroes. Applies to stacked-like series only.
- */
- negativesAsZeroes: boolean;
- /**
- * Sets the palette to be used for colorizing series and their elements.
- */
- palette: string | Array<string>;
- /**
- * Specifies what to do with colors in the palette when their number is less than the number of series (in the Chart widget) or points in a series (in the PieChart widget).
- */
- paletteExtensionMode: string;
- /**
- * Notifies the widget that it is embedded into an HTML page that uses a tag modifying the path.
- */
- pathModified: boolean;
- /**
- * Specifies whether a single point or multiple points can be selected in the chart.
- */
- pointSelectionMode: string;
- /**
- * Specifies whether to redraw the widget when the size of the parent browser window changes or a mobile device rotates.
- */
- redrawOnResize: boolean;
- /**
- * Specifies how the chart must behave when series point labels overlap.
- */
- resolveLabelOverlapping: string;
- /**
- * Switches the widget to a right-to-left representation.
- */
- rtlEnabled: boolean;
- /**
- * Specifies options for PolarChart widget series.
- */
- series: any | Array<any>;
- /**
- * Specifies whether a single series or multiple series can be selected in the chart.
- */
- seriesSelectionMode: string;
- /**
- * Defines options for the series template.
- */
- seriesTemplate: {
- customizeSeries?: Function;
- nameField?: string;
- };
- /**
- * Specifies the widget's size in pixels.
- */
- size: {
- height?: number;
- width?: number;
- };
- /**
- * Sets the name of the theme the widget uses.
- */
- theme: string;
- /**
- * Configures the widget's title.
- */
- title: string | {
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- margin?: number | {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- placeholderSize?: number;
- subtitle?: string | {
- font?: DevExpress.viz.Font;
- offset?: number;
- text?: string;
- textOverflow?: string;
- wordWrap?: string;
- };
- text?: string;
- textOverflow?: string;
- verticalAlignment?: string;
- wordWrap?: string;
- };
- /**
- * Configures tooltips.
- */
- tooltip: {
- argumentFormat?: DevExpress.ui.format | string;
- arrowLength?: number;
- border?: {
- color?: string;
- dashStyle?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- color?: string;
- container?: Element | JQuery;
- cornerRadius?: number;
- customizeTooltip?: Function;
- enabled?: boolean;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- opacity?: number;
- paddingLeftRight?: number;
- paddingTopBottom?: number;
- shadow?: {
- blur?: number;
- color?: string;
- offsetX?: number;
- offsetY?: number;
- opacity?: number;
- };
- shared?: boolean;
- zIndex?: number;
- };
- /**
- * Indicates whether or not to display a "spider web".
- */
- useSpiderWeb: boolean;
- /**
- * Specifies value axis options for the PolarChart widget.
- */
- valueAxis: {
- allowDecimals?: boolean;
- axisDivisionFactor?: number;
- categories?: Array<number | string | Date>;
- color?: string;
- constantLines?: Array<any | {
- color?: string;
- dashStyle?: string;
- displayBehindSeries?: boolean;
- extendAxis?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- visible?: boolean;
- };
- value?: Date | number | string;
- width?: number;
- }>;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- inverted?: boolean;
- label?: {
- customizeHint?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- logarithmBase?: number;
- maxValueMargin?: number;
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTickCount?: number;
- minorTickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- minValueMargin?: number;
- opacity?: number;
- showZero?: boolean;
- strips?: Array<any | {
- color?: string;
- endValue?: Date | number | string;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- };
- startValue?: Date | number | string;
- }>;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- tickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- type?: string;
- valueMarginsEnabled?: boolean;
- valueType?: string;
- visible?: boolean;
- width?: number;
- };
- /**
- * A function that is executed when a label on the argument axis is clicked or tapped.
- */
- onArgumentAxisClick: EventEmitter<any>;
- /**
- * A function that is executed before the widget is disposed of.
- */
- onDisposing: EventEmitter<any>;
- /**
- * A function that is executed when all series are ready.
- */
- onDone: EventEmitter<any>;
- /**
- * A function that is executed when the widget's rendering has finished.
- */
- onDrawn: EventEmitter<any>;
- /**
- * A function that is executed after the widget is exported.
- */
- onExported: EventEmitter<any>;
- /**
- * A function that is executed before the widget is exported.
- */
- onExporting: EventEmitter<any>;
- /**
- * A function that is executed before a file with exported widget is saved to the user's local storage.
- */
- onFileSaving: EventEmitter<any>;
- /**
- * A function that is executed when an error or warning occurs.
- */
- onIncidentOccurred: EventEmitter<any>;
- /**
- * A function used in JavaScript frameworks to save the widget instance.
- */
- onInitialized: EventEmitter<any>;
- /**
- * A function that is executed when a legend item is clicked or tapped.
- */
- onLegendClick: EventEmitter<any>;
- /**
- * A function that is executed after a widget option is changed.
- */
- onOptionChanged: EventEmitter<any>;
- /**
- * A function that is executed when a series point is clicked or tapped.
- */
- onPointClick: EventEmitter<any>;
- /**
- * A function that is executed after the pointer enters or leaves a series point.
- */
- onPointHoverChanged: EventEmitter<any>;
- /**
- * A function that is executed when a series point is selected or selection is canceled.
- */
- onPointSelectionChanged: EventEmitter<any>;
- /**
- * A function that is executed when a series is clicked or tapped.
- */
- onSeriesClick: EventEmitter<any>;
- /**
- * A function that is executed after the pointer enters or leaves a series.
- */
- onSeriesHoverChanged: EventEmitter<any>;
- /**
- * A function that is executed when a series is selected or selection is canceled.
- */
- onSeriesSelectionChanged: EventEmitter<any>;
- /**
- * A function that is executed when a tooltip becomes hidden.
- */
- onTooltipHidden: EventEmitter<any>;
- /**
- * A function that is executed when a tooltip appears.
- */
- onTooltipShown: EventEmitter<any>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- adaptiveLayoutChange: EventEmitter<{
- height?: number;
- keepLabels?: boolean;
- width?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- animationChange: EventEmitter<boolean | {
- duration?: number;
- easing?: string;
- enabled?: boolean;
- maxPointCountSupported?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- argumentAxisChange: EventEmitter<{
- allowDecimals?: boolean;
- argumentType?: string;
- axisDivisionFactor?: number;
- categories?: Array<number | string | Date>;
- color?: string;
- constantLines?: Array<any | {
- color?: string;
- dashStyle?: string;
- displayBehindSeries?: boolean;
- extendAxis?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- visible?: boolean;
- };
- value?: Date | number | string;
- width?: number;
- }>;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- firstPointOnStartAngle?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- hoverMode?: string;
- inverted?: boolean;
- label?: {
- customizeHint?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- logarithmBase?: number;
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- shift?: number;
- visible?: boolean;
- width?: number;
- };
- minorTickCount?: number;
- minorTickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- opacity?: number;
- originValue?: number;
- period?: number;
- startAngle?: number;
- strips?: Array<any | {
- color?: string;
- endValue?: Date | number | string;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- };
- startValue?: Date | number | string;
- }>;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- shift?: number;
- visible?: boolean;
- width?: number;
- };
- tickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- type?: string;
- visible?: boolean;
- width?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- barGroupPaddingChange: EventEmitter<number>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- barGroupWidthChange: EventEmitter<number>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- barWidthChange: EventEmitter<number>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- commonAxisSettingsChange: EventEmitter<{
- allowDecimals?: boolean;
- color?: string;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- inverted?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- opacity?: number;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- visible?: boolean;
- width?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- commonSeriesSettingsChange: EventEmitter<any>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- containerBackgroundColorChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- customizeLabelChange: EventEmitter<Function>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- customizePointChange: EventEmitter<Function>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- dataPrepareSettingsChange: EventEmitter<{
- checkTypeForAllData?: boolean;
- convertToAxisDataType?: boolean;
- sortingMethod?: boolean | Function;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- dataSourceChange: EventEmitter<DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string | Array<any>>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- disabledChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- elementAttrChange: EventEmitter<any>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- equalBarWidthChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- exportChange: EventEmitter<{
- backgroundColor?: string;
- enabled?: boolean;
- fileName?: string;
- formats?: Array<string>;
- margin?: number;
- printingEnabled?: boolean;
- proxyUrl?: string;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- legendChange: EventEmitter<{
- backgroundColor?: string;
- border?: {
- color?: string;
- cornerRadius?: number;
- dashStyle?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- columnCount?: number;
- columnItemSpacing?: number;
- customizeHint?: Function;
- customizeItems?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- hoverMode?: string;
- itemsAlignment?: string;
- itemTextPosition?: string;
- margin?: number | {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- markerSize?: number;
- orientation?: string;
- paddingLeftRight?: number;
- paddingTopBottom?: number;
- rowCount?: number;
- rowItemSpacing?: number;
- title?: string | {
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- margin?: {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- placeholderSize?: number;
- subtitle?: string | {
- font?: DevExpress.viz.Font;
- offset?: number;
- text?: string;
- };
- text?: string;
- verticalAlignment?: string;
- };
- verticalAlignment?: string;
- visible?: boolean;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- loadingIndicatorChange: EventEmitter<{
- backgroundColor?: string;
- enabled?: boolean;
- font?: DevExpress.viz.Font;
- show?: boolean;
- text?: string;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- marginChange: EventEmitter<{
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- negativesAsZeroesChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- paletteChange: EventEmitter<string | Array<string>>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- paletteExtensionModeChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- pathModifiedChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- pointSelectionModeChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- redrawOnResizeChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- resolveLabelOverlappingChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- rtlEnabledChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- seriesChange: EventEmitter<any | Array<any>>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- seriesSelectionModeChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- seriesTemplateChange: EventEmitter<{
- customizeSeries?: Function;
- nameField?: string;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- sizeChange: EventEmitter<{
- height?: number;
- width?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- themeChange: EventEmitter<string>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- titleChange: EventEmitter<string | {
- font?: DevExpress.viz.Font;
- horizontalAlignment?: string;
- margin?: number | {
- bottom?: number;
- left?: number;
- right?: number;
- top?: number;
- };
- placeholderSize?: number;
- subtitle?: string | {
- font?: DevExpress.viz.Font;
- offset?: number;
- text?: string;
- textOverflow?: string;
- wordWrap?: string;
- };
- text?: string;
- textOverflow?: string;
- verticalAlignment?: string;
- wordWrap?: string;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- tooltipChange: EventEmitter<{
- argumentFormat?: DevExpress.ui.format | string;
- arrowLength?: number;
- border?: {
- color?: string;
- dashStyle?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- color?: string;
- container?: Element | JQuery;
- cornerRadius?: number;
- customizeTooltip?: Function;
- enabled?: boolean;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- opacity?: number;
- paddingLeftRight?: number;
- paddingTopBottom?: number;
- shadow?: {
- blur?: number;
- color?: string;
- offsetX?: number;
- offsetY?: number;
- opacity?: number;
- };
- shared?: boolean;
- zIndex?: number;
- }>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- useSpiderWebChange: EventEmitter<boolean>;
- /**
- * This member supports the internal infrastructure and is not intended to be used directly from your code.
- */
- valueAxisChange: EventEmitter<{
- allowDecimals?: boolean;
- axisDivisionFactor?: number;
- categories?: Array<number | string | Date>;
- color?: string;
- constantLines?: Array<any | {
- color?: string;
- dashStyle?: string;
- displayBehindSeries?: boolean;
- extendAxis?: boolean;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- visible?: boolean;
- };
- value?: Date | number | string;
- width?: number;
- }>;
- constantLineStyle?: {
- color?: string;
- dashStyle?: string;
- label?: {
- font?: DevExpress.viz.Font;
- visible?: boolean;
- };
- width?: number;
- };
- discreteAxisDivisionMode?: string;
- endOnTick?: boolean;
- grid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- inverted?: boolean;
- label?: {
- customizeHint?: Function;
- customizeText?: Function;
- font?: DevExpress.viz.Font;
- format?: DevExpress.ui.format | string;
- indentFromAxis?: number;
- overlappingBehavior?: string;
- visible?: boolean;
- };
- logarithmBase?: number;
- maxValueMargin?: number;
- minorGrid?: {
- color?: string;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- minorTickCount?: number;
- minorTickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- minValueMargin?: number;
- opacity?: number;
- showZero?: boolean;
- strips?: Array<any | {
- color?: string;
- endValue?: Date | number | string;
- label?: {
- font?: DevExpress.viz.Font;
- text?: string;
- };
- startValue?: Date | number | string;
- }>;
- stripStyle?: {
- label?: {
- font?: DevExpress.viz.Font;
- };
- };
- tick?: {
- color?: string;
- length?: number;
- opacity?: number;
- visible?: boolean;
- width?: number;
- };
- tickInterval?: number | string | {
- days?: number;
- hours?: number;
- milliseconds?: number;
- minutes?: number;
- months?: number;
- quarters?: number;
- seconds?: number;
- weeks?: number;
- years?: number;
- };
- type?: string;
- valueMarginsEnabled?: boolean;
- valueType?: string;
- visible?: boolean;
- width?: number;
- }>;
- seriesChildren: QueryList<DxiSeriesComponent>;
- constructor(elementRef: ElementRef, ngZone: NgZone, templateHost: DxTemplateHost, _watcherHelper: WatcherHelper, _idh: IterableDifferHelper, optionHost: NestedOptionHost, transferState: TransferState, platformId: any);
- protected _createInstance(element: any, options: any): DxPolarChart;
- ngOnDestroy(): void;
- ngOnChanges(changes: SimpleChanges): void;
- setupChanges(prop: string, changes: SimpleChanges): void;
- ngDoCheck(): void;
- _setOption(name: string, value: any): void;
- }
- export declare class DxPolarChartModule {
- }
|