Search Results: Wikipedia API query 2010 edit statistics "2010: Odyssey Two" total edits year 2010
- All Results 1000
- Guides 332
- Reference 668
- Technical Demos
- Support Center
dxPolarChart Point Methods
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
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
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
;/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
, 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