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

Assign Appointments to Resources

Guides

The Scheduler UI component allows you to assign appointments to a set of predefined resources. Consider the following example: in an educational center lectures are held in two rooms. In scheduling..., set the valueExpr, colorExpr and displayExpr properties as shown in the code above. View Demo API Each resource kind has the fieldExpr property. To associate an appointment

dxRangeSelector Configuration

Reference
An object that defines configuration properties for the RangeSelector UI component.

in the range selector. For details on how to synchronize these two UI components, refer to the following help topic: Zooming and Panning Using the RangeSelector Component. To provide a data source...) { this.rangeSelectorInstance = e.component; } } Vue App.vue (Options API)App.vue (Composition API) <template> <div> <DxRangeSelector ... @initialized="saveInstance">

dxChart ScatterSeries

Reference
Describes settings supported by a series of the scatter type.

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

dxChart argumentAxis visualRange

Reference
Defines the axis' displayed range. Cannot be wider than the wholeRange.

This property accepts one of the following: A two-item array Specifies the range's start and end. The array can contain a pair of numeric, string, or date-time values, depending on the axis's... and endValue fields An alternative to the two-item array. CodevisualRange: { startValue: 50, endValue: 70 } // Open-ended range visualRange: { startValue: null, endValue: 70

dxChart argumentAxis wholeRange

Reference
Defines the range where the axis can be zoomed and panned. To limit the visual range, specify the visualRange property.

This property accepts one of the following: A two-item array Specifies the range's start and end. The array can contain a pair of numeric, string, or date-time values, depending on the axis's... and endValue fields An alternative to the two-item array. CodewholeRange: { startValue: 50, endValue: 70 } // Open-ended range wholeRange: { startValue: null, endValue: 70 } An object