Search Results: Wikipedia API query 2010 edit statistics "2010: Odyssey Two" total edits year 2010

dxPolarChart Point Methods

Reference
Methods used to control the series point.

clearHover() Switches the point from the hover state back to normal. See Also Point.hover() Point.isHovered() clearSelection() Deselects the point. Multiple Point Selection Demo API - Select a Point Demo getColor() Gets the color of a particular point. getLabel() Allows you to obtain the label of the series point. This method returns an array of two Label objects if a series point has two

dxPieChart series

Reference
Specifies properties for the series of the PieChart UI component.

component provides two series types - Pie and Doughnut. When you have a multi-series pie, settings that are common for all series can be specified all together. Use the commonSeriesSettings object to do... { // ... fill = { base: "#000000", fillId: this.customPatternId }; } Vue App.vue (Options API)App.vue (Composition API) <template> <DxPieChart ... >

dxPolarChart ArgumentAxis

Reference
Specifies argument axis properties for the PolarChart UI component.

argumentType Specifies the desired type of axis values. axisDivisionFactor Specifies the minimum distance between two neighboring major ticks in pixels. Applies only to the axes of the "continuous... of the minor ticks. minorTickCount Specifies the number of minor ticks between two neighboring major ticks. minorTickInterval Specifies the interval between minor ticks. originValue Specifies

dxPieChart commonSeriesSettings

Reference
An object defining the configuration properties that are common for all series of the PieChart UI component.

;/dxi-series> </dx-pie-chart> // ... export class AppComponent { // ... fill = { base: "#000000", fillId: this.customPatternId }; } Vue App.vue (Options API)App.vue (Composition API) <template> <DxPieChart ... > <DxSeries :color="fill" /> </DxPieChart> </template> <script> import DxPieChart, { DxSeries

dxPolarChart BarSeries

Reference
An object defining a series of the bar type.

, measured in degrees. Takes precedence over the barPadding property. A bar's maximum width is limited. In single-series charts, it cannot be greater than the interval between two major ticks. In multi...-polar-chart> // ... export class AppComponent { // ... customPattern = { base: "#000000", fillId: this.customPatternId }; } Vue App.vue (Options API)App.vue