Search Results: Wikipedia API query 2010 edit statistics "2010: Odyssey Two" total edits year 2010
- All Results 1000
- Guides 315
- Reference 685
- Technical Demos
- Support Center
Assign Appointments to Resources
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
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
]="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
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
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