forked from DevExpress/devextreme-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJS-Howto.xml
2387 lines (2387 loc) · 457 KB
/
JS-Howto.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE articles [<!ELEMENT articles ANY><!ELEMENT article ANY><!ATTLIST article id ID #REQUIRED>]>
<articles folder="c:\content" type="Howto" version="20.1" docsdir="concepts">
<article name="UI Components" sort="05 UI Components" id="UI Components" file="c:\content\05 UI Components\05 UI Components.md" root="true">
<article name="Accordion" sort="Accordion" id="UI Components/Accordion">
<article name="Overview" sort="00 Overview" id="UI Components/Accordion/Overview" file="c:\content\05 UI Components\Accordion\00 Overview.md" tags="dxaccordion,accordion,collection container,collection UI component,overview" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/Accordion/Customize Item Appearance" file="c:\content\05 UI Components\Accordion\05 Customize Item Appearance.md" tags="accordion,item appearance,customize,templates" root="true" />
<article name="Control the Behavior" sort="10 Control the Behavior" id="UI Components/Accordion/Control the Behavior" file="c:\content\05 UI Components\Accordion\10 Control the Behavior.md" tags="accordion,behavior,collapse,expand,multiple" root="true" />
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/Accordion/Keyboard Support" file="c:\content\05 UI Components\Accordion\15 Keyboard Support.md" tags="accordion,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="ActionSheet" sort="ActionSheet" id="UI Components/ActionSheet">
<article name="Overview" sort="00 Overview" id="UI Components/ActionSheet/Overview" file="c:\content\05 UI Components\ActionSheet\00 Overview.md" tags="dxactionsheet,action sheet,actionSheet,collection container,collection UI component,navigation,overview" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/ActionSheet/Customize Item Appearance" file="c:\content\05 UI Components\ActionSheet\05 Customize Item Appearance.md" tags="action sheet,actionSheet,item appearance,customize,templates,template" root="true" />
<article name="Specify Display Mode" sort="10 Specify Display Mode" id="UI Components/ActionSheet/Specify Display Mode" file="c:\content\05 UI Components\ActionSheet\10 Specify Display Mode.md" tags="action sheet,actionSheet,display mode,target element" root="true" />
</article>
<article name="Autocomplete" sort="Autocomplete" id="UI Components/Autocomplete">
<article name="Overview" sort="00 Overview" id="UI Components/Autocomplete/Overview" file="c:\content\05 UI Components\Autocomplete\00 Overview.md" tags="dxautocomplete,autocomplete,collection container,collection UI component,editor,overview,data source" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/Autocomplete/Customize Item Appearance" file="c:\content\05 UI Components\Autocomplete\05 Customize Item Appearance.md" tags="autocomplete,item appearance,customize,templates,template" root="true" />
<article name="Configure Search Parameters" sort="10 Configure Search Parameters" id="UI Components/Autocomplete/Configure Search Parameters" file="c:\content\05 UI Components\Autocomplete\10 Configure Search Parameters.md" tags="autocomplete,search,search mode,time interval,min search length" root="true" />
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/Autocomplete/Keyboard Support" file="c:\content\05 UI Components\Autocomplete\15 Keyboard Support.md" tags="Autocomplete,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="BarGauge" sort="BarGauge" id="UI Components/BarGauge">
<article name="Visual Elements" sort="10 Visual Elements" id="UI Components/BarGauge/Visual Elements" file="c:\content\05 UI Components\BarGauge\10 Visual Elements\Visual Elements.md" root="true">
<article name="Bars" sort="20 Bars" id="UI Components/BarGauge/Visual Elements/Bars" file="c:\content\05 UI Components\BarGauge\10 Visual Elements\20 Bars.md" />
<article name="Labels" sort="30 Labels" id="UI Components/BarGauge/Visual Elements/Labels" file="c:\content\05 UI Components\BarGauge\10 Visual Elements\30 Labels.md" />
<article name="Tooltips" sort="40 Tooltips" id="UI Components/BarGauge/Visual Elements/Tooltips" file="c:\content\05 UI Components\BarGauge\10 Visual Elements\40 Tooltips.md" />
<article name="Title and Subtitle" sort="50 Title and Subtitle" id="UI Components/BarGauge/Visual Elements/Title and Subtitle" file="c:\content\05 UI Components\BarGauge\10 Visual Elements\50 Title and Subtitle.md" />
</article>
</article>
<article name="Box" sort="Box" id="UI Components/Box">
<article name="Overview" sort="00 Overview" id="UI Components/Box/Overview" file="c:\content\05 UI Components\Box\00 Overview.md" tags="dxbox,box,layout UI component,overview,dxItem" root="true" />
<article name="Specify an Item Size" sort="05 Specify an Item Size" id="UI Components/Box/Specify an Item Size" file="c:\content\05 UI Components\Box\05 Specify an Item Size.md" tags="box,item size,item height,item width,baseSize,ratio" root="true" />
<article name="Arrange and Align Items" sort="10 Arrange and Align Items" id="UI Components/Box/Arrange and Align Items" file="c:\content\05 UI Components\Box\10 Arrange and Align Items.md" tags="box,arrange items in a column,arrange items in a row,direction,items alignment,align items,crossAlign" root="true" />
<article name="Nest One Box Into Another" sort="15 Nest One Box Into Another" id="UI Components/Box/Nest One Box Into Another" file="c:\content\05 UI Components\Box\15 Nest One Box Into Another.md" tags="box,nest,nested,nest boxes,nested boxes" root="true" />
</article>
<article name="Bullet" sort="Bullet" id="UI Components/Bullet">
<article name="Visual Elements" sort="10 Visual Elements" id="UI Components/Bullet/Visual Elements" file="c:\content\05 UI Components\Bullet\10 Visual Elements\Visual Elements.md" root="true">
<article name="Bullet Bar" sort="10 Bullet Bar" id="UI Components/Bullet/Visual Elements/Bullet Bar" file="c:\content\05 UI Components\Bullet\10 Visual Elements\10 Bullet Bar.md" />
<article name="Target Line" sort="20 Target Line" id="UI Components/Bullet/Visual Elements/Target Line" file="c:\content\05 UI Components\Bullet\10 Visual Elements\20 Target Line.md" />
<article name="Zero Level Line" sort="30 Zero Level Line" id="UI Components/Bullet/Visual Elements/Zero Level Line" file="c:\content\05 UI Components\Bullet\10 Visual Elements\30 Zero Level Line.md" />
<article name="Tooltip" sort="40 Tooltip" id="UI Components/Bullet/Visual Elements/Tooltip" file="c:\content\05 UI Components\Bullet\10 Visual Elements\40 Tooltip.md" />
</article>
</article>
<article name="Button" sort="Button" id="UI Components/Button">
<article name="Getting Started with Button" sort="00 Getting Started with Button" id="UI Components/Button/Getting Started with Button" file="c:\content\05 UI Components\Button\00 Getting Started with Button\00 Getting Started with Button.md" tags="dxbutton" root="true">
<article name="Create a Button" sort="02 Create a Button" id="UI Components/Button/Getting Started with Button/Create a Button" file="c:\content\05 UI Components\Button\00 Getting Started with Button\02 Create a Button.md" />
<article name="Handle the Click Event" sort="04 Handle the Click Event" id="UI Components/Button/Getting Started with Button/Handle the Click Event" file="c:\content\05 UI Components\Button\00 Getting Started with Button\04 Handle the Click Event.md" />
<article name="Stylize the Button" sort="08 Stylize the Button" id="UI Components/Button/Getting Started with Button/Stylize the Button" file="c:\content\05 UI Components\Button\00 Getting Started with Button\08 Stylize the Button.md" />
<article name="Add an Icon" sort="12 Add an Icon" id="UI Components/Button/Getting Started with Button/Add an Icon" file="c:\content\05 UI Components\Button\00 Getting Started with Button\12 Add an Icon.md" />
</article>
<article name="Validate and Submit an HTML Form" sort="10 Validate and Submit an HTML Form" id="UI Components/Button/Validate and Submit an HTML Form" file="c:\content\05 UI Components\Button\10 Validate and Submit an HTML Form.md" tags="button,validate a form,submit a form,submit editors" root="true" />
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/Button/Keyboard Support" file="c:\content\05 UI Components\Button\15 Keyboard Support.md" tags="button,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="ButtonGroup" sort="ButtonGroup" id="UI Components/ButtonGroup">
<article name="Getting Started with ButtonGroup" sort="00 Getting Started with ButtonGroup" id="UI Components/ButtonGroup/Getting Started with ButtonGroup" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\0 Getting Started with ButtonGroup.md" tags="dxbuttongroup" root="true">
<article name="Create the ButtonGroup" sort="1 Create the ButtonGroup" id="UI Components/ButtonGroup/Getting Started with ButtonGroup/Create the ButtonGroup" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\1 Create the ButtonGroup.md" />
<article name="Add Buttons to the ButtonGroup" sort="3 Add Buttons to the ButtonGroup" id="UI Components/ButtonGroup/Getting Started with ButtonGroup/Add Buttons to the ButtonGroup" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\3 Add Buttons to the ButtonGroup.md" />
<article name="Preselect a Button" sort="5 Preselect a Button" id="UI Components/ButtonGroup/Getting Started with ButtonGroup/Preselect a Button" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\5 Preselect a Button.md" />
<article name="Handle the Selection Change Event" sort="6 Handle the Selection Change Event" id="UI Components/ButtonGroup/Getting Started with ButtonGroup/Handle the Selection Change Event" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\6 Handle the Selection Change Event.md" />
<article name="Enable Multiple Selection" sort="8 Enable Multiple Selection" id="UI Components/ButtonGroup/Getting Started with ButtonGroup/Enable Multiple Selection" file="c:\content\05 UI Components\ButtonGroup\00 Getting Started with ButtonGroup\8 Enable Multiple Selection.md" />
</article>
</article>
<article name="Calendar" sort="Calendar" id="UI Components/Calendar">
<article name="Overview" sort="00 Overview" id="UI Components/Calendar/Overview" file="c:\content\05 UI Components\Calendar\00 Overview.md" tags="dxcalendar,calendar,editor,scheduling,overview,value format,date format,date range" root="true" />
<article name="Handle the Value Change Event" sort="05 Handle the Value Change Event" id="UI Components/Calendar/Handle the Value Change Event" file="c:\content\05 UI Components\Calendar\05 Handle the Value Change Event.md" tags="calendar,editor,get value,set value" root="true" />
<article name="Specify Zoom Level" sort="10 Specify Zoom Level" id="UI Components/Calendar/Specify Zoom Level" file="c:\content\05 UI Components\Calendar\10 Specify Zoom Level.md" tags="calendar,editor,calendar view,zoomLevel,zoom level" root="true" />
<article name="Specify the Value Range" sort="12 Specify the Value Range" id="UI Components/Calendar/Specify the Value Range" file="c:\content\05 UI Components\Calendar\12 Specify the Value Range.md" tags="calendar,editor,date range,rande,disable dates,disabledDates" root="true" />
<article name="Customize Cell Appearance" sort="15 Customize Cell Appearance" id="UI Components/Calendar/Customize Cell Appearance" file="c:\content\05 UI Components\Calendar\15 Customize Cell Appearance.md" tags="calendar,cell appearance,customize,templates" root="true" />
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/Calendar/Keyboard Support" file="c:\content\05 UI Components\Calendar\20 Keyboard Support.md" tags="calendar,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="Chart" sort="Chart" id="UI Components/Chart">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Overview" file="c:\content\05 UI Components\Chart\00 Overview.md" tags="dxchart,chart,overview" root="true" />
<article name="Data Binding" sort="03 Data Binding" id="UI Components/Chart/Data Binding">
<article name="Simple Array" sort="05 Simple Array" id="UI Components/Chart/Data Binding/Simple Array">
<article name="Array Only" sort="05 Array Only" id="UI Components/Chart/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\Chart\03 Data Binding\05 Simple Array\05 Array Only.md" tags="chart,data binding,provide data,array,process data,Query" root="true" />
<article name="ArrayStore" sort="10 ArrayStore" id="UI Components/Chart/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\Chart\03 Data Binding\05 Simple Array\10 ArrayStore.md" tags="chart,data binding,provide data,ArrayStore,DataSource,pagination" root="true" />
</article>
<article name="JSON Data" sort="10 JSON Data" id="UI Components/Chart/Data Binding/JSON Data" file="c:\content\05 UI Components\Chart\03 Data Binding\10 JSON Data.md" tags="chart,data binding,provide data,json,jsonp" root="true" />
<article name="OData Service" sort="15 OData Service" id="UI Components/Chart/Data Binding/OData Service" file="c:\content\05 UI Components\Chart\03 Data Binding\15 OData Service.md" tags="chart,data binding,provide data,odata,ODataStore,DataSource,process data" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/Chart/Data Binding/Web API Service" file="c:\content\05 UI Components\Chart\03 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/Chart/Data Binding/PHP Service" file="c:\content\05 UI Components\Chart\03 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/Chart/Data Binding/MongoDB Service" file="c:\content\05 UI Components\Chart\03 Data Binding\18 MongoDB Service.md" root="true" />
<article name="Custom Sources" sort="20 Custom Sources" id="UI Components/Chart/Data Binding/Custom Sources" file="c:\content\05 UI Components\Chart\03 Data Binding\20 Custom Sources.md" tags="chart,data binding,provide data,custom data source,CustomStore,DataSource,load" root="true" />
<article name="Bind Series to Data" sort="23 Bind Series to Data" id="UI Components/Chart/Data Binding/Bind Series to Data" file="c:\content\05 UI Components\Chart\03 Data Binding\23 Bind Series to Data\Bind Series to Data.md" tags="chart,line,bar,area,financial series,range,bubble,argumentField,valueField,series template" root="true">
<article name="Directly" sort="05 Directly" id="UI Components/Chart/Data Binding/Bind Series to Data/Directly" file="c:\content\05 UI Components\Chart\03 Data Binding\23 Bind Series to Data\05 Directly.md" />
<article name="Using a Series Template" sort="10 Using a Series Template" id="UI Components/Chart/Data Binding/Bind Series to Data/Using a Series Template" file="c:\content\05 UI Components\Chart\03 Data Binding\23 Bind Series to Data\10 Using a Series Template.md" />
</article>
<article name="Update Data" sort="26 Update Data" id="UI Components/Chart/Data Binding/Update Data" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\Update Data.md" tags="chart,update data,reload data,getDataSource,two-way binding,bindingOptions,observableArray" root="true">
<article name="DevExtreme DataSource" sort="01 DevExtreme DataSource" id="UI Components/Chart/Data Binding/Update Data/DevExtreme DataSource" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\01 DevExtreme DataSource.md" />
<article name="JavaScript Array" sort="05 JavaScript Array" id="UI Components/Chart/Data Binding/Update Data/JavaScript Array" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\05 JavaScript Array\JavaScript Array.md">
<article name="jQuery" sort="05 jQuery" id="UI Components/Chart/Data Binding/Update Data/JavaScript Array/jQuery" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\05 JavaScript Array\05 jQuery.md" />
<article name="Angular" sort="07 Angular" id="UI Components/Chart/Data Binding/Update Data/JavaScript Array/Angular" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\05 JavaScript Array\07 Angular.md" />
<article name="AngularJS" sort="10 AngularJS" id="UI Components/Chart/Data Binding/Update Data/JavaScript Array/AngularJS" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\05 JavaScript Array\10 AngularJS.md" />
<article name="Knockout" sort="20 Knockout" id="UI Components/Chart/Data Binding/Update Data/JavaScript Array/Knockout" file="c:\content\05 UI Components\Chart\03 Data Binding\26 Update Data\05 JavaScript Array\20 Knockout.md" />
</article>
</article>
</article>
<article name="Series" sort="10 Series" id="UI Components/Chart/Series">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Series/Overview" file="c:\content\05 UI Components\Chart\10 Series\00 Overview.md" tags="chart,overview,series type,series name,common series settings,inidividual series settings" root="true" />
<article name="Hover" sort="10 Hover" id="UI Components/Chart/Series/Hover" file="c:\content\05 UI Components\Chart\10 Series\10 Hover\Hover.md" tags="chart,series,hover,hover mode,hoverMode,hover style,hoverStyle,hover changed,seriesHoverChanged" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Chart/Series/Hover/User Interaction" file="c:\content\05 UI Components\Chart\10 Series\10 Hover\05 User Interaction.md" />
<article name="API" sort="07 API" id="UI Components/Chart/Series/Hover/API" file="c:\content\05 UI Components\Chart\10 Series\10 Hover\07 API.md" />
<article name="Events" sort="10 Events" id="UI Components/Chart/Series/Hover/Events" file="c:\content\05 UI Components\Chart\10 Series\10 Hover\10 Events.md" />
</article>
<article name="Selection" sort="20 Selection" id="UI Components/Chart/Series/Selection" file="c:\content\05 UI Components\Chart\10 Series\20 Selection\Selection.md" tags="chart,series,selection,selection mode,selectionMode,selection style,selectionStyle,selection changed,seriesSelectionChanged,clear selection,clearSelection" root="true">
<article name="API" sort="01 API" id="UI Components/Chart/Series/Selection/API" file="c:\content\05 UI Components\Chart\10 Series\20 Selection\01 API.md" />
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Chart/Series/Selection/User Interaction" file="c:\content\05 UI Components\Chart\10 Series\20 Selection\05 User Interaction.md" />
<article name="Events" sort="10 Events" id="UI Components/Chart/Series/Selection/Events" file="c:\content\05 UI Components\Chart\10 Series\20 Selection\10 Events.md" />
</article>
<article name="Access a Series Using the API" sort="40 Access a Series Using the API" id="UI Components/Chart/Series/Access a Series Using the API" file="c:\content\05 UI Components\Chart\10 Series\40 Access a Series Using the API.md" tags="chart,series,get series,getAllSeries,get series by name,getSeriesByName,get series by index,getSeriesByPos" root="true" />
<article name="Show and Hide a Series" sort="50 Show and Hide a Series" id="UI Components/Chart/Series/Show and Hide a Series" file="c:\content\05 UI Components\Chart\10 Series\50 Show and Hide a Series.md" tags="chart,series,show series,hide series,series visibility" root="true" />
</article>
<article name="Series Types" sort="11 Series Types" id="UI Components/Chart/Series Types">
<article name="Line Series" sort="10 Line Series" id="UI Components/Chart/Series Types/Line Series" file="c:\content\05 UI Components\Chart\11 Series Types\10 Line Series.md" root="true" />
<article name="Bar Series" sort="20 Bar Series" id="UI Components/Chart/Series Types/Bar Series" file="c:\content\05 UI Components\Chart\11 Series Types\20 Bar Series\Bar Series.md" root="true">
<article name="Specify the Bar Width" sort="05 Specify the Bar Width" id="UI Components/Chart/Series Types/Bar Series/Specify the Bar Width" file="c:\content\05 UI Components\Chart\11 Series Types\20 Bar Series\05 Specify the Bar Width\Specify the Bar Width.md">
<article name="Relative Bar Width" sort="01 Relative Bar Width" id="UI Components/Chart/Series Types/Bar Series/Specify the Bar Width/Relative Bar Width" file="c:\content\05 UI Components\Chart\11 Series Types\20 Bar Series\05 Specify the Bar Width\01 Relative Bar Width.md" />
<article name="Fixed Bar Width" sort="02 Fixed Bar Width" id="UI Components/Chart/Series Types/Bar Series/Specify the Bar Width/Fixed Bar Width" file="c:\content\05 UI Components\Chart\11 Series Types\20 Bar Series\05 Specify the Bar Width\02 Fixed Bar Width.md" />
</article>
</article>
<article name="Area Series" sort="30 Area Series" id="UI Components/Chart/Series Types/Area Series" file="c:\content\05 UI Components\Chart\11 Series Types\30 Area Series.md" root="true" />
<article name="Scatter Series" sort="40 Scatter Series" id="UI Components/Chart/Series Types/Scatter Series" file="c:\content\05 UI Components\Chart\11 Series Types\40 Scatter Series.md" root="true" />
<article name="Bubble Series" sort="50 Bubble Series" id="UI Components/Chart/Series Types/Bubble Series" file="c:\content\05 UI Components\Chart\11 Series Types\50 Bubble Series.md" root="true" />
<article name="Financial Series" sort="60 Financial Series" id="UI Components/Chart/Series Types/Financial Series" file="c:\content\05 UI Components\Chart\11 Series Types\60 Financial Series.md" root="true" />
<article name="Range Series" sort="70 Range Series" id="UI Components/Chart/Series Types/Range Series" file="c:\content\05 UI Components\Chart\11 Series Types\70 Range Series.md" root="true" />
</article>
<article name="Series Points" sort="14 Series Points" id="UI Components/Chart/Series Points">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Series Points/Overview" file="c:\content\05 UI Components\Chart\14 Series Points\00 Overview.md" tags="chart,overview,series points,common point settings" root="true" />
<article name="Hover" sort="10 Hover" id="UI Components/Chart/Series Points/Hover" file="c:\content\05 UI Components\Chart\14 Series Points\10 Hover\Hover.md" tags="chart,series point,hover,hover mode,hoverMode,hover style,hoverStyle,hover changed,pointHoverChanged" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Chart/Series Points/Hover/User Interaction" file="c:\content\05 UI Components\Chart\14 Series Points\10 Hover\05 User Interaction.md" />
<article name="API" sort="07 API" id="UI Components/Chart/Series Points/Hover/API" file="c:\content\05 UI Components\Chart\14 Series Points\10 Hover\07 API.md" />
<article name="Events" sort="10 Events" id="UI Components/Chart/Series Points/Hover/Events" file="c:\content\05 UI Components\Chart\14 Series Points\10 Hover\10 Events.md" />
</article>
<article name="Selection" sort="20 Selection" id="UI Components/Chart/Series Points/Selection" file="c:\content\05 UI Components\Chart\14 Series Points\20 Selection\Selection.md" tags="chart,series point,selection,selection mode,selectionMode,selection style,selectionStyle,selection changed,pointSelectionChanged,clear selection,clearSelection" root="true">
<article name="API" sort="01 API" id="UI Components/Chart/Series Points/Selection/API" file="c:\content\05 UI Components\Chart\14 Series Points\20 Selection\01 API.md" />
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Chart/Series Points/Selection/User Interaction" file="c:\content\05 UI Components\Chart\14 Series Points\20 Selection\05 User Interaction.md" />
<article name="Events" sort="10 Events" id="UI Components/Chart/Series Points/Selection/Events" file="c:\content\05 UI Components\Chart\14 Series Points\20 Selection\10 Events.md" />
</article>
<article name="Access a Series Point Using the API" sort="25 Access a Series Point Using the API" id="UI Components/Chart/Series Points/Access a Series Point Using the API" file="c:\content\05 UI Components\Chart\14 Series Points\25 Access a Series Point Using the API.md" tags="chart,series point,get points,getAllPoints,get point by argument,getPointsByArg,get point by index,getPointByPos,get visible points,getVisiblePoints" root="true" />
</article>
<article name="Point Labels" sort="15 Point Labels" id="UI Components/Chart/Point Labels">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Point Labels/Overview" file="c:\content\05 UI Components\Chart\15 Point Labels\00 Overview.md" tags="chart,point labels,overview,common label settings,label connector" root="true" />
<article name="Customize Point Labels" sort="05 Customize Point Labels" id="UI Components/Chart/Point Labels/Customize Point Labels" file="c:\content\05 UI Components\Chart\15 Point Labels\05 Customize Point Labels.md" tags="chart,point labels,customize label,customizeLabel,customize text,customizeText" root="true" />
<article name="Resolve Overlapping" sort="10 Resolve Overlapping" id="UI Components/Chart/Point Labels/Resolve Overlapping" file="c:\content\05 UI Components\Chart\15 Point Labels\10 Resolve Overlapping.md" tags="chart,point labels,label overlapping,resolveLabelOverlapping,maxLabelCount" root="true" />
<article name="Access a Point Label Using the API" sort="15 Access a Point Label Using the API" id="UI Components/Chart/Point Labels/Access a Point Label Using the API" file="c:\content\05 UI Components\Chart\15 Point Labels\15 Access a Point Label Using the API.md" tags="chart,point labels,show point label,hide point label,label visibility" root="true" />
</article>
<article name="Axes" sort="20 Axes" id="UI Components/Chart/Axes">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Axes/Overview" file="c:\content\05 UI Components\Chart\20 Axes\00 Overview.md" tags="chart,axes,argument axis,value axis,axis type,continuous axis,discrete axis,logarithmic axis,logarithmBase,argumentType,valueType" root="true" />
<article name="Visual and Whole Ranges" sort="03 Visual and Whole Ranges" id="UI Components/Chart/Axes/Visual and Whole Ranges" file="c:\content\05 UI Components\Chart\20 Axes\03 Visual and Whole Ranges.md" root="true" />
<article name="Axis Ticks" sort="07 Axis Ticks" id="UI Components/Chart/Axes/Axis Ticks" file="c:\content\05 UI Components\Chart\20 Axes\07 Axis Ticks.md" tags="chart,axis ticks,major ticks,minor ticks,ticks' appearance" root="true" />
<article name="Arrange Axis Ticks" sort="10 Arrange Axis Ticks" id="UI Components/Chart/Axes/Arrange Axis Ticks" file="c:\content\05 UI Components\Chart\20 Axes\10 Arrange Axis Ticks\Arrange Axis Ticks.md" tags="chart,panes,overview,single-pane chart" root="true">
<article name="On a Continuous Axis" sort="01 On a Continuous Axis" id="UI Components/Chart/Axes/Arrange Axis Ticks/On a Continuous Axis" file="c:\content\05 UI Components\Chart\20 Axes\10 Arrange Axis Ticks\01 On a Continuous Axis.md" />
<article name="On a Discrete Axis" sort="02 On a Discrete Axis" id="UI Components/Chart/Axes/Arrange Axis Ticks/On a Discrete Axis" file="c:\content\05 UI Components\Chart\20 Axes\10 Arrange Axis Ticks\02 On a Discrete Axis.md" />
<article name="On a Logarithmic Axis" sort="03 On a Logarithmic Axis" id="UI Components/Chart/Axes/Arrange Axis Ticks/On a Logarithmic Axis" file="c:\content\05 UI Components\Chart\20 Axes\10 Arrange Axis Ticks\03 On a Logarithmic Axis.md" />
</article>
<article name="Axis Labels" sort="15 Axis Labels" id="UI Components/Chart/Axes/Axis Labels" file="c:\content\05 UI Components\Chart\20 Axes\15 Axis Labels.md" tags="chart,axis labels,display mode,displayMode,overlapping behavior,overlappingBehavior" root="true" />
<article name="Axis Titles" sort="25 Axis Titles" id="UI Components/Chart/Axes/Axis Titles" file="c:\content\05 UI Components\Chart\20 Axes\25 Axis Titles.md" tags="chart,axis titles,title font,title margin" root="true" />
<article name="Scale Breaks" sort="33 Scale Breaks" id="UI Components/Chart/Axes/Scale Breaks" file="c:\content\05 UI Components\Chart\20 Axes\33 Scale Breaks.md" root="true" />
<article name="Skip Weekends and Holidays" sort="35 Skip Weekends and Holidays" id="UI Components/Chart/Axes/Skip Weekends and Holidays" file="c:\content\05 UI Components\Chart\20 Axes\35 Skip Weekends and Holidays.md" root="true" />
<article name="Limit and Relocate the Axes" sort="40 Limit and Relocate the Axes" id="UI Components/Chart/Axes/Limit and Relocate the Axes" file="c:\content\05 UI Components\Chart\20 Axes\40 Limit and Relocate the Axes.md" tags="chart,min axis value,max axis value,axis margins,valueMarginsEnabled,minValueMargin,maxValueMargin,axis position,rotated chart" root="true" />
<article name="Multi-Axis Chart" sort="70 Multi-Axis Chart" id="UI Components/Chart/Axes/Multi-Axis Chart" file="c:\content\05 UI Components\Chart\20 Axes\70 Multi-Axis Chart.md" tags="chart,multiple value axes,synchronize axes,synchronizedValue,multipleAxesSpacing" root="true" />
</article>
<article name="Tooltips" sort="30 Tooltips" id="UI Components/Chart/Tooltips">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Tooltips/Overview" file="c:\content\05 UI Components\Chart\30 Tooltips\00 Overview.md" tags="chart,tooltips,enable tooltips,customizeTooltip" root="true" />
<article name="Show and Hide a Tooltip" sort="10 Show and Hide a Tooltip" id="UI Components/Chart/Tooltips/Show and Hide a Tooltip" file="c:\content\05 UI Components\Chart\30 Tooltips\10 Show and Hide a Tooltip.md" tags="chart,tooltips,show tooltip,showTooltip,hide tooltip,hideTooltip" root="true" />
<article name="Handle Tooltip Events" sort="20 Handle Tooltip Events" id="UI Components/Chart/Tooltips/Handle Tooltip Events" file="c:\content\05 UI Components\Chart\30 Tooltips\20 Handle Tooltip Events.md" tags="chart,tooltip,handle events,tooltipShown,tooltipHidden" root="true" />
</article>
<article name="Legend" sort="35 Legend" id="UI Components/Chart/Legend">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Legend/Overview" file="c:\content\05 UI Components\Chart\35 Legend\00 Overview.md" tags="chart,legend,overview" root="true" />
<article name="Relocate the Legend" sort="10 Relocate the Legend" id="UI Components/Chart/Legend/Relocate the Legend" file="c:\content\05 UI Components\Chart\35 Legend\10 Relocate the Legend.md" tags="chart,legend,position,horizontal alignment,horizontalAlignment,vertical alignment,verticalAlignment,move the legend" root="true" />
<article name="Rearrange Legend Items" sort="20 Rearrange Legend Items" id="UI Components/Chart/Legend/Rearrange Legend Items" file="c:\content\05 UI Components\Chart\35 Legend\20 Rearrange Legend Items.md" tags="chart,legend,legend items,legend orientation,colum count,columnCount,row count,rowCount,empty space between legend items,columnItemSpacing,rowItemSpacing" root="true" />
<article name="User Interaction" sort="30 User Interaction" id="UI Components/Chart/Legend/User Interaction" file="c:\content\05 UI Components\Chart\35 Legend\30 User Interaction.md" tags="chart,legend,hover,hoverMode,legend click,onLegendClick" root="true" />
</article>
<article name="Panes" sort="40 Panes" id="UI Components/Chart/Panes">
<article name="Overview" sort="00 Overview" id="UI Components/Chart/Panes/Overview" file="c:\content\05 UI Components\Chart\40 Panes\00 Overview.md" tags="chart,panes,overview,single-pane chart" root="true" />
<article name="Multi-Pane Chart" sort="10 Multi-Pane Chart" id="UI Components/Chart/Panes/Multi-Pane Chart" file="c:\content\05 UI Components\Chart\40 Panes\10 Multi-Pane Chart.md" tags="chart,panes,multi-pane chart,commonPaneSettings" root="true" />
</article>
<article name="Grid" sort="55 Grid" id="UI Components/Chart/Grid" file="c:\content\05 UI Components\Chart\55 Grid\00 Grid.md" tags="chart,grid,minor grid,grid lines" root="true">
<article name="Minor Grid" sort="02 Minor Grid" id="UI Components/Chart/Grid/Minor Grid" file="c:\content\05 UI Components\Chart\55 Grid\02 Minor Grid.md" />
</article>
<article name="Title and Subtitle" sort="58 Title and Subtitle" id="UI Components/Chart/Title and Subtitle" file="c:\content\05 UI Components\Chart\58 Title and Subtitle.md" tags="chart,title,subtitle,text" root="true" />
<article name="Strips" sort="60 Strips" id="UI Components/Chart/Strips" file="c:\content\05 UI Components\Chart\60 Strips.md" tags="chart,strips" root="true" />
<article name="Constant Lines" sort="65 Constant Lines" id="UI Components/Chart/Constant Lines" file="c:\content\05 UI Components\Chart\65 Constant Lines.md" tags="chart,constant lines" root="true" />
<article name="Crosshair" sort="80 Crosshair" id="UI Components/Chart/Crosshair" file="c:\content\05 UI Components\Chart\80 Crosshair.md" tags="chart,crosshair,pointer" root="true" />
<article name="Error Bars" sort="85 Error Bars" id="UI Components/Chart/Error Bars" file="c:\content\05 UI Components\Chart\85 Error Bars.md" tags="chart,error bar,valueErrorBar,highValueField,lowValueField" root="true" />
<article name="Loading Indicator" sort="87 Loading Indicator" id="UI Components/Chart/Loading Indicator" file="c:\content\05 UI Components\Chart\87 Loading Indicator.md" tags="chart,load indicator,loading indicator" root="true" />
<article name="Data Aggregation" sort="88 Data Aggregation" id="UI Components/Chart/Data Aggregation" file="c:\content\05 UI Components\Chart\88 Data Aggregation\Data Aggregation.md" root="true">
<article name="Enable Data Aggregation" sort="01 Enable Data Aggregation" id="UI Components/Chart/Data Aggregation/Enable Data Aggregation" file="c:\content\05 UI Components\Chart\88 Data Aggregation\01 Enable Data Aggregation.md" />
<article name="Specify the Aggregation Interval" sort="05 Specify the Aggregation Interval" id="UI Components/Chart/Data Aggregation/Specify the Aggregation Interval" file="c:\content\05 UI Components\Chart\88 Data Aggregation\05 Specify the Aggregation Interval.md" />
<article name="Choose the Aggregation Method" sort="10 Choose the Aggregation Method" id="UI Components/Chart/Data Aggregation/Choose the Aggregation Method" file="c:\content\05 UI Components\Chart\88 Data Aggregation\10 Choose the Aggregation Method.md" />
<article name="Implement a Custom Aggregate Function" sort="20 Implement a Custom Aggregate Function" id="UI Components/Chart/Data Aggregation/Implement a Custom Aggregate Function" file="c:\content\05 UI Components\Chart\88 Data Aggregation\20 Implement a Custom Aggregate Function.md" />
</article>
<article name="Adaptive Layout" sort="89 Adaptive Layout" id="UI Components/Chart/Adaptive Layout" file="c:\content\05 UI Components\Chart\89 Adaptive Layout.md" tags="chart,adaptive layout,responsive layout,adaptiveLayout,render" root="true" />
<article name="Rotate and Invert the Chart" sort="90 Rotate and Invert the Chart" id="UI Components/Chart/Rotate and Invert the Chart" file="c:\content\05 UI Components\Chart\90 Rotate and Invert the Chart.md" tags="chart,rotate,invert,mirror" root="true" />
<article name="Drill-Down Chart" sort="91 Drill-Down Chart" id="UI Components/Chart/Drill-Down Chart" file="c:\content\05 UI Components\Chart\91 Drill-Down Chart\00 Drill-Down Chart.md" root="true">
<article name="Provide Data" sort="01 Provide Data" id="UI Components/Chart/Drill-Down Chart/Provide Data" file="c:\content\05 UI Components\Chart\91 Drill-Down Chart\01 Provide Data.md" />
<article name="Implement View Navigation" sort="09 Implement View Navigation" id="UI Components/Chart/Drill-Down Chart/Implement View Navigation" file="c:\content\05 UI Components\Chart\91 Drill-Down Chart\09 Implement View Navigation.md" />
<article name="Customize the Appearance" sort="20 Customize the Appearance" id="UI Components/Chart/Drill-Down Chart/Customize the Appearance" file="c:\content\05 UI Components\Chart\91 Drill-Down Chart\20 Customize the Appearance.md" />
</article>
<article name="Bi-Directional Bar Chart" sort="92 Bi-Directional Bar Chart" id="UI Components/Chart/Bi-Directional Bar Chart" file="c:\content\05 UI Components\Chart\92 Bi-Directional Bar Chart\00 Bi-Directional Bar Chart.md" root="true">
<article name="Prepare Data" sort="01 Prepare Data" id="UI Components/Chart/Bi-Directional Bar Chart/Prepare Data" file="c:\content\05 UI Components\Chart\92 Bi-Directional Bar Chart\01 Prepare Data.md" />
<article name="Configure the Series" sort="05 Configure the Series" id="UI Components/Chart/Bi-Directional Bar Chart/Configure the Series" file="c:\content\05 UI Components\Chart\92 Bi-Directional Bar Chart\05 Configure the Series.md" />
<article name="Rotate the Chart" sort="10 Rotate the Chart" id="UI Components/Chart/Bi-Directional Bar Chart/Rotate the Chart" file="c:\content\05 UI Components\Chart\92 Bi-Directional Bar Chart\10 Rotate the Chart.md" />
<article name="Customize the Appearance" sort="20 Customize the Appearance" id="UI Components/Chart/Bi-Directional Bar Chart/Customize the Appearance" file="c:\content\05 UI Components\Chart\92 Bi-Directional Bar Chart\20 Customize the Appearance.md" />
</article>
<article name="Zooming and Panning" sort="95 Zooming and Panning" id="UI Components/Chart/Zooming and Panning" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\Zooming and Panning.md" tags="chart,zooming,scrolling,panning,scroll bar,range selector" root="true">
<article name="Using Mouse Commands or Touch Gestures" sort="01 Using Mouse Commands or Touch Gestures" id="UI Components/Chart/Zooming and Panning/Using Mouse Commands or Touch Gestures" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\01 Using Mouse Commands or Touch Gestures.md" />
<article name="Using the Scroll Bar" sort="03 Using the Scroll Bar" id="UI Components/Chart/Zooming and Panning/Using the Scroll Bar" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\03 Using the Scroll Bar.md" />
<article name="Using the RangeSelector Component" sort="10 Using the RangeSelector Component" id="UI Components/Chart/Zooming and Panning/Using the RangeSelector Component" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\10 Using the RangeSelector Component.md" />
<article name="Set the Initial Zoom" sort="15 Set the Initial Zoom" id="UI Components/Chart/Zooming and Panning/Set the Initial Zoom" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\15 Set the Initial Zoom.md" />
<article name="Stop Zooming or Panning" sort="25 Stop Zooming or Panning" id="UI Components/Chart/Zooming and Panning/Stop Zooming or Panning" file="c:\content\05 UI Components\Chart\95 Zooming and Panning\25 Stop Zooming or Panning.md" />
</article>
<article name="Client-Side Exporting and Printing" sort="99 Client-Side Exporting and Printing" id="UI Components/Chart/Client-Side Exporting and Printing" file="c:\content\05 UI Components\Chart\99 Client-Side Exporting and Printing\Client-Side Exporting and Printing.md" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/Chart/Client-Side Exporting and Printing/User Interaction" file="c:\content\05 UI Components\Chart\99 Client-Side Exporting and Printing\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/Chart/Client-Side Exporting and Printing/API" file="c:\content\05 UI Components\Chart\99 Client-Side Exporting and Printing\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/Chart/Client-Side Exporting and Printing/Events" file="c:\content\05 UI Components\Chart\99 Client-Side Exporting and Printing\10 Events.md" />
</article>
</article>
<article name="CheckBox" sort="CheckBox" id="UI Components/CheckBox">
<article name="Overview" sort="00 Overview" id="UI Components/CheckBox/Overview" file="c:\content\05 UI Components\CheckBox\00 Overview.md" tags="dxcheckbox,check box,checkBox,editor,overview" root="true" />
<article name="Handle the Value Change Event" sort="10 Handle the Value Change Event" id="UI Components/CheckBox/Handle the Value Change Event" file="c:\content\05 UI Components\CheckBox\10 Handle the Value Change Event.md" tags="check box,checkBox,editor,get value,set value" root="true" />
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/CheckBox/Keyboard Support" file="c:\content\05 UI Components\CheckBox\20 Keyboard Support.md" tags="check box,checkBox,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="CircularGauge" sort="CircularGauge" id="UI Components/CircularGauge">
<article name="Visual Elements" sort="10 Visual Elements" id="UI Components/CircularGauge/Visual Elements" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\Visual Elements.md" root="true">
<article name="Value Indicator" sort="20 Value Indicator" id="UI Components/CircularGauge/Visual Elements/Value Indicator" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\20 Value Indicator.md" />
<article name="Subvalue Indicators" sort="30 Subvalue Indicators" id="UI Components/CircularGauge/Visual Elements/Subvalue Indicators" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\30 Subvalue Indicators.md" />
<article name="Scale Ticks" sort="40 Scale Ticks" id="UI Components/CircularGauge/Visual Elements/Scale Ticks" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\40 Scale Ticks.md" />
<article name="Scale Labels" sort="50 Scale Labels" id="UI Components/CircularGauge/Visual Elements/Scale Labels" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\50 Scale Labels.md" />
<article name="Range Container" sort="60 Range Container" id="UI Components/CircularGauge/Visual Elements/Range Container" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\60 Range Container.md" />
<article name="Tooltips" sort="70 Tooltips" id="UI Components/CircularGauge/Visual Elements/Tooltips" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\70 Tooltips.md" />
<article name="Title and Subtitle" sort="80 Title and Subtitle" id="UI Components/CircularGauge/Visual Elements/Title and Subtitle" file="c:\content\05 UI Components\CircularGauge\10 Visual Elements\80 Title and Subtitle.md" />
</article>
</article>
<article name="ColorBox" sort="ColorBox" id="UI Components/ColorBox">
<article name="Overview" sort="00 Overview" id="UI Components/ColorBox/Overview" file="c:\content\05 UI Components\ColorBox\00 Overview.md" tags="dxcolorbox,color box,colorBox,editor,overview" root="true" />
<article name="Handle the Value Change Event" sort="10 Handle the Value Change Event" id="UI Components/ColorBox/Handle the Value Change Event" file="c:\content\05 UI Components\ColorBox\10 Handle the Value Change Event.md" tags="color box,colorBox,editor,handle,get value,set value" root="true" />
<article name="Support Alpha Channel" sort="15 Support Alpha Channel" id="UI Components/ColorBox/Support Alpha Channel" file="c:\content\05 UI Components\ColorBox\15 Support Alpha Channel.md" tags="color box,colorBox,editor,transparency,alpha channel" root="true" />
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/ColorBox/Keyboard Support" file="c:\content\05 UI Components\ColorBox\20 Keyboard Support.md" tags="color box,colorBox,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="ContextMenu" sort="ContextMenu" id="UI Components/ContextMenu">
<article name="Overview" sort="00 Overview" id="UI Components/ContextMenu/Overview" file="c:\content\05 UI Components\ContextMenu\00 Overview.md" tags="dxcontextmenu,context menu,contextMenu,navigation,collection container,collection UI component,overview" root="true" />
<article name="Access the Clicked Item" sort="03 Access the Clicked Item" id="UI Components/ContextMenu/Access the Clicked Item" file="c:\content\05 UI Components\ContextMenu\03 Access the Clicked Item.md" tags="context menu,contextMenu,access the clicked item,onItemClick,itemClick" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/ContextMenu/Customize Item Appearance" file="c:\content\05 UI Components\ContextMenu\05 Customize Item Appearance.md" tags="context menu,contextMenu,item appearance,customize,templates" root="true" />
<article name="Open and Close the Context Menu" sort="10 Open and Close the Context Menu" id="UI Components/ContextMenu/Open and Close the Context Menu" file="c:\content\05 UI Components\ContextMenu\10 Open and Close the Context Menu\Open and Close the Context Menu.md" tags="context menu,contextMenu,open,show,close,hide,position" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/ContextMenu/Open and Close the Context Menu/User Interaction" file="c:\content\05 UI Components\ContextMenu\10 Open and Close the Context Menu\05 User Interaction.md" />
<article name="API" sort="10 API" id="UI Components/ContextMenu/Open and Close the Context Menu/API" file="c:\content\05 UI Components\ContextMenu\10 Open and Close the Context Menu\10 API.md" />
<article name="Events" sort="30 Events" id="UI Components/ContextMenu/Open and Close the Context Menu/Events" file="c:\content\05 UI Components\ContextMenu\10 Open and Close the Context Menu\30 Events.md" />
</article>
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/ContextMenu/Keyboard Support" file="c:\content\05 UI Components\ContextMenu\15 Keyboard Support.md" tags="context menu,contextMenu,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="DataGrid" sort="DataGrid" id="UI Components/DataGrid">
<article name="Getting Started with DataGrid" sort="00 Getting Started with DataGrid" id="UI Components/DataGrid/Getting Started with DataGrid" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\00 Getting Started with DataGrid.md" tags="dxdatagrid" root="true">
<article name="Create a DataGrid" sort="02 Create a DataGrid" id="UI Components/DataGrid/Getting Started with DataGrid/Create a DataGrid" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\02 Create a DataGrid.md" />
<article name="Bind the DataGrid to Data" sort="05 Bind the DataGrid to Data" id="UI Components/DataGrid/Getting Started with DataGrid/Bind the DataGrid to Data" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\05 Bind the DataGrid to Data.md" />
<article name="Customize Columns" sort="10 Customize Columns" id="UI Components/DataGrid/Getting Started with DataGrid/Customize Columns" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\10 Customize Columns\0 Customize Columns.md">
<article name="Reorder Columns" sort="3 Reorder Columns" id="UI Components/DataGrid/Getting Started with DataGrid/Customize Columns/Reorder Columns" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\10 Customize Columns\3 Reorder Columns.md" />
<article name="Resize Columns" sort="5 Resize Columns" id="UI Components/DataGrid/Getting Started with DataGrid/Customize Columns/Resize Columns" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\10 Customize Columns\5 Resize Columns.md" />
<article name="Fix Columns" sort="6 Fix Columns" id="UI Components/DataGrid/Getting Started with DataGrid/Customize Columns/Fix Columns" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\10 Customize Columns\6 Fix Columns.md" />
<article name="Hide Columns" sort="8 Hide Columns" id="UI Components/DataGrid/Getting Started with DataGrid/Customize Columns/Hide Columns" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\10 Customize Columns\8 Hide Columns.md" />
</article>
<article name="Sort Data" sort="20 Sort Data" id="UI Components/DataGrid/Getting Started with DataGrid/Sort Data" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\20 Sort Data.md" />
<article name="Filter and Search Data" sort="30 Filter and Search Data" id="UI Components/DataGrid/Getting Started with DataGrid/Filter and Search Data" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\30 Filter and Search Data.md" />
<article name="Group Data" sort="35 Group Data" id="UI Components/DataGrid/Getting Started with DataGrid/Group Data" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\35 Group Data.md" />
<article name="Edit and Validate Data" sort="40 Edit and Validate Data" id="UI Components/DataGrid/Getting Started with DataGrid/Edit and Validate Data" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\40 Edit and Validate Data.md" />
<article name="Select Records" sort="50 Select Records" id="UI Components/DataGrid/Getting Started with DataGrid/Select Records" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\50 Select Records.md" />
<article name="Display Summaries" sort="60 Display Summaries" id="UI Components/DataGrid/Getting Started with DataGrid/Display Summaries" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\60 Display Summaries.md" />
<article name="Configure Master-Detail Interface" sort="70 Configure Master-Detail Interface" id="UI Components/DataGrid/Getting Started with DataGrid/Configure Master-Detail Interface" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\70 Configure Master-Detail Interface.md" />
<article name="Export Data to Excel" sort="80 Export Data to Excel" id="UI Components/DataGrid/Getting Started with DataGrid/Export Data to Excel" file="c:\content\05 UI Components\DataGrid\00 Getting Started with DataGrid\80 Export Data to Excel.md" />
</article>
<article name="Data Binding" sort="05 Data Binding" id="UI Components/DataGrid/Data Binding">
<article name="Simple Array" sort="10 Simple Array" id="UI Components/DataGrid/Data Binding/Simple Array">
<article name="Array Only" sort="10 Array Only" id="UI Components/DataGrid/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\DataGrid\05 Data Binding\10 Simple Array\10 Array Only.md" tags="dataGrid,data grid,data binding,provide data,array,process data,query" root="true" />
<article name="ArrayStore" sort="15 ArrayStore" id="UI Components/DataGrid/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\DataGrid\05 Data Binding\10 Simple Array\15 ArrayStore.md" tags="dataGrid,data grid,data binding,provide data,ArrayStore,DataSource,process data" root="true" />
</article>
<article name="JSON Data" sort="15 JSON Data" id="UI Components/DataGrid/Data Binding/JSON Data" file="c:\content\05 UI Components\DataGrid\05 Data Binding\15 JSON Data.md" tags="dataGrid,data grid,data binding,json,jsonp,callback parameter" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/DataGrid/Data Binding/Web API Service" file="c:\content\05 UI Components\DataGrid\05 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/DataGrid/Data Binding/PHP Service" file="c:\content\05 UI Components\DataGrid\05 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/DataGrid/Data Binding/MongoDB Service" file="c:\content\05 UI Components\DataGrid\05 Data Binding\18 MongoDB Service.md" root="true" />
<article name="OData Service" sort="20 OData Service" id="UI Components/DataGrid/Data Binding/OData Service" file="c:\content\05 UI Components\DataGrid\05 Data Binding\20 OData Service.md" tags="dataGrid,data grid,data binding,provide data,odata,ODataStore,DataSource,process data" root="true" />
<article name="Custom Sources" sort="25 Custom Sources" id="UI Components/DataGrid/Data Binding/Custom Sources" file="c:\content\05 UI Components\DataGrid\05 Data Binding\25 Custom Sources\Custom Sources.md" root="true">
<article name="Load Data" sort="10 Load Data" id="UI Components/DataGrid/Data Binding/Custom Sources/Load Data" file="c:\content\05 UI Components\DataGrid\05 Data Binding\25 Custom Sources\10 Load Data.md" />
<article name="Add, Delete, Update Data" sort="15 Add, Delete, Update Data" id="UI Components/DataGrid/Data Binding/Custom Sources/Add, Delete, Update Data" file="c:\content\05 UI Components\DataGrid\05 Data Binding\25 Custom Sources\15 Add, Delete, Update Data.md" />
</article>
<article name="Access the DataSource" sort="30 Access the DataSource" id="UI Components/DataGrid/Data Binding/Access the DataSource" file="c:\content\05 UI Components\DataGrid\05 Data Binding\30 Access the DataSource.md" tags="dataGrid,data grid,data binding,access data source,getDataSource,reload data" root="true" />
<article name="Data Caching" sort="35 Data Caching" id="UI Components/DataGrid/Data Binding/Data Caching" file="c:\content\05 UI Components\DataGrid\05 Data Binding\35 Data Caching.md" tags="dataGrid,data grid,caching,cache,enable caching,cacheEnabled" root="true" />
</article>
<article name="Enhance Performance on Large Datasets" sort="10 Enhance Performance on Large Datasets" id="UI Components/DataGrid/Enhance Performance on Large Datasets" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\Enhance Performance on Large Datasets.md" root="true">
<article name="Remote Operations" sort="010 Remote Operations" id="UI Components/DataGrid/Enhance Performance on Large Datasets/Remote Operations" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\010 Remote Operations.md" />
<article name="Deferred Selection" sort="015 Deferred Selection" id="UI Components/DataGrid/Enhance Performance on Large Datasets/Deferred Selection" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\015 Deferred Selection.md" />
<article name="Lookup Optimization" sort="020 Lookup Optimization" id="UI Components/DataGrid/Enhance Performance on Large Datasets/Lookup Optimization" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\020 Lookup Optimization.md" />
<article name="Data Navigation" sort="025 Data Navigation" id="UI Components/DataGrid/Enhance Performance on Large Datasets/Data Navigation" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\025 Data Navigation.md" />
<article name="Rendering Optimization" sort="030 Rendering Optimization" id="UI Components/DataGrid/Enhance Performance on Large Datasets/Rendering Optimization" file="c:\content\05 UI Components\DataGrid\10 Enhance Performance on Large Datasets\030 Rendering Optimization.md" />
</article>
<article name="Columns" sort="15 Columns" id="UI Components/DataGrid/Columns">
<article name="Overview" sort="00 Overview" id="UI Components/DataGrid/Columns/Overview" file="c:\content\05 UI Components\DataGrid\15 Columns\00 Overview.md" root="true" />
<article name="Column Types" sort="10 Column Types" id="UI Components/DataGrid/Columns/Column Types">
<article name="Data Columns" sort="1 Data Columns" id="UI Components/DataGrid/Columns/Column Types/Data Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\1 Data Columns.md" tags="dataGrid,data grid,column types,data columns" root="true" />
<article name="Band Columns" sort="2 Band Columns" id="UI Components/DataGrid/Columns/Column Types/Band Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\2 Band Columns.md" tags="dataGrid,data grid,column types,band columns,banded layout,multi-row headers" root="true" />
<article name="Lookup Columns" sort="3 Lookup Columns" id="UI Components/DataGrid/Columns/Column Types/Lookup Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\3 Lookup Columns.md" tags="dataGrid,data grid,column types,lookup columns" root="true" />
<article name="Command Columns" sort="4 Command Columns" id="UI Components/DataGrid/Columns/Column Types/Command Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\00 Command Columns.md" root="true">
<article name="Configure a Command Column" sort="05 Configure a Command Column" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Configure a Command Column" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\05 Configure a Command Column.md" />
<article name="Reorder Command Columns" sort="10 Reorder Command Columns" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Reorder Command Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\10 Reorder Command Columns.md" />
<article name="Customize the Edit Column" sort="15 Customize the Edit Column" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Customize the Edit Column" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\15 Customize the Edit Column\0 Customize the Edit Column.md">
<article name="Customize Buttons" sort="1 Customize Buttons" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Customize the Edit Column/Customize Buttons" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\15 Customize the Edit Column\1 Customize Buttons.md" />
<article name="Hide a Button" sort="2 Hide a Button" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Customize the Edit Column/Hide a Button" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\15 Customize the Edit Column\2 Hide a Button.md" />
<article name="Add a Custom Button" sort="3 Add a Custom Button" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Customize the Edit Column/Add a Custom Button" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\15 Customize the Edit Column\3 Add a Custom Button.md" />
</article>
<article name="Create a Column with Custom Buttons" sort="30 Create a Column with Custom Buttons" id="UI Components/DataGrid/Columns/Column Types/Command Columns/Create a Column with Custom Buttons" file="c:\content\05 UI Components\DataGrid\15 Columns\10 Column Types\4 Command Columns\30 Create a Column with Custom Buttons.md" />
</article>
</article>
<article name="Column and Row Indexes" sort="12 Column and Row Indexes" id="UI Components/DataGrid/Columns/Column and Row Indexes" file="c:\content\05 UI Components\DataGrid\15 Columns\12 Column and Row Indexes.md" root="true" />
<article name="Customize Column Headers" sort="15 Customize Column Headers" id="UI Components/DataGrid/Columns/Customize Column Headers" file="c:\content\05 UI Components\DataGrid\15 Columns\15 Customize Column Headers.md" root="true" />
<article name="Column Sizing" sort="20 Column Sizing" id="UI Components/DataGrid/Columns/Column Sizing" file="c:\content\05 UI Components\DataGrid\15 Columns\20 Column Sizing.md" root="true" />
<article name="Column Reordering" sort="25 Column Reordering" id="UI Components/DataGrid/Columns/Column Reordering" file="c:\content\05 UI Components\DataGrid\15 Columns\25 Column Reordering\Column Reordering.md" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/DataGrid/Columns/Column Reordering/User Interaction" file="c:\content\05 UI Components\DataGrid\15 Columns\25 Column Reordering\05 User Interaction.md" />
<article name="API" sort="10 API" id="UI Components/DataGrid/Columns/Column Reordering/API" file="c:\content\05 UI Components\DataGrid\15 Columns\25 Column Reordering\10 API.md" />
</article>
<article name="Column Fixing" sort="30 Column Fixing" id="UI Components/DataGrid/Columns/Column Fixing" file="c:\content\05 UI Components\DataGrid\15 Columns\30 Column Fixing.md" root="true" />
<article name="Hide a Column Using the API" sort="35 Hide a Column Using the API" id="UI Components/DataGrid/Columns/Hide a Column Using the API" file="c:\content\05 UI Components\DataGrid\15 Columns\35 Hide a Column Using the API.md" root="true" />
<article name="Customize Cells" sort="40 Customize Cells" id="UI Components/DataGrid/Columns/Customize Cells" file="c:\content\05 UI Components\DataGrid\15 Columns\40 Customize Cells\Customize Cells.md" tags="dataGRid,data grid,customize cell text,customize cell value,unbound column,customizeText,calculateCellValue,cellTemplate,onCellPrepared" root="true">
<article name="Customize the Value and Text" sort="1 Customize the Value and Text" id="UI Components/DataGrid/Columns/Customize Cells/Customize the Value and Text" file="c:\content\05 UI Components\DataGrid\15 Columns\40 Customize Cells\1 Customize the Value and Text.md" />
<article name="Customize the Appearance" sort="2 Customize the Appearance" id="UI Components/DataGrid/Columns/Customize Cells/Customize the Appearance" file="c:\content\05 UI Components\DataGrid\15 Columns\40 Customize Cells\2 Customize the Appearance.md" />
</article>
<article name="Adaptability" sort="50 Adaptability" id="UI Components/DataGrid/Columns/Adaptability" file="c:\content\05 UI Components\DataGrid\15 Columns\50 Adaptability\Adaptability.md" root="true">
<article name="Hide Columns" sort="05 Hide Columns" id="UI Components/DataGrid/Columns/Adaptability/Hide Columns" file="c:\content\05 UI Components\DataGrid\15 Columns\50 Adaptability\05 Hide Columns.md" />
<article name="Customize Adaptive Detail Row" sort="15 Customize Adaptive Detail Row" id="UI Components/DataGrid/Columns/Adaptability/Customize Adaptive Detail Row" file="c:\content\05 UI Components\DataGrid\15 Columns\50 Adaptability\15 Customize Adaptive Detail Row.md" />
<article name="Expand and Collapse Adaptive Detail Rows" sort="20 Expand and Collapse Adaptive Detail Rows" id="UI Components/DataGrid/Columns/Adaptability/Expand and Collapse Adaptive Detail Rows" file="c:\content\05 UI Components\DataGrid\15 Columns\50 Adaptability\20 Expand and Collapse Adaptive Detail Rows.md" />
</article>
<article name="Column Chooser" sort="60 Column Chooser" id="UI Components/DataGrid/Columns/Column Chooser" file="c:\content\05 UI Components\DataGrid\15 Columns\60 Column Chooser.md" root="true" />
</article>
<article name="Editing" sort="20 Editing" id="UI Components/DataGrid/Editing" file="c:\content\05 UI Components\DataGrid\20 Editing\Editing.md" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Editing/User Interaction" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\User Interaction.md">
<article name="Row Mode" sort="10 Row Mode" id="UI Components/DataGrid/Editing/User Interaction/Row Mode" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\10 Row Mode.md" />
<article name="Cell Mode" sort="20 Cell Mode" id="UI Components/DataGrid/Editing/User Interaction/Cell Mode" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\20 Cell Mode.md" />
<article name="Batch Mode" sort="30 Batch Mode" id="UI Components/DataGrid/Editing/User Interaction/Batch Mode" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\30 Batch Mode.md" />
<article name="Form Mode" sort="40 Form Mode" id="UI Components/DataGrid/Editing/User Interaction/Form Mode" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\40 Form Mode.md" />
<article name="Popup Mode" sort="50 Popup Mode" id="UI Components/DataGrid/Editing/User Interaction/Popup Mode" file="c:\content\05 UI Components\DataGrid\20 Editing\10 User Interaction\50 Popup Mode.md" />
</article>
<article name="API" sort="20 API" id="UI Components/DataGrid/Editing/API" file="c:\content\05 UI Components\DataGrid\20 Editing\20 API\API.md">
<article name="Add" sort="10 Add" id="UI Components/DataGrid/Editing/API/Add" file="c:\content\05 UI Components\DataGrid\20 Editing\20 API\10 Add.md" />
<article name="Update" sort="20 Update" id="UI Components/DataGrid/Editing/API/Update" file="c:\content\05 UI Components\DataGrid\20 Editing\20 API\20 Update.md" />
<article name="Delete" sort="30 Delete" id="UI Components/DataGrid/Editing/API/Delete" file="c:\content\05 UI Components\DataGrid\20 Editing\20 API\30 Delete.md" />
<article name="Get Current Cell Values" sort="40 Get Current Cell Values" id="UI Components/DataGrid/Editing/API/Get Current Cell Values" file="c:\content\05 UI Components\DataGrid\20 Editing\20 API\40 Get Current Cell Values.md" />
</article>
<article name="Events" sort="30 Events" id="UI Components/DataGrid/Editing/Events" file="c:\content\05 UI Components\DataGrid\20 Editing\30 Events\Events.md" />
<article name="Customize Editors" sort="40 Customize Editors" id="UI Components/DataGrid/Editing/Customize Editors" file="c:\content\05 UI Components\DataGrid\20 Editing\40 Customize Editors.md" />
<article name="Data Validation" sort="50 Data Validation" id="UI Components/DataGrid/Editing/Data Validation" file="c:\content\05 UI Components\DataGrid\20 Editing\50 Data Validation.md" />
</article>
<article name="Sorting" sort="25 Sorting" id="UI Components/DataGrid/Sorting" file="c:\content\05 UI Components\DataGrid\25 Sorting\Sorting.md" tags="dataGrid,data grid,single sorting,multiple sorting,custom sorting,clear sorting,clearSorting,calculateSortValue,sortOrder,sortIndex" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Sorting/User Interaction" file="c:\content\05 UI Components\DataGrid\25 Sorting\10 User Interaction.md" />
<article name="API" sort="20 API" id="UI Components/DataGrid/Sorting/API" file="c:\content\05 UI Components\DataGrid\25 Sorting\20 API\API.md">
<article name="Initial and Runtime Sorting" sort="1 Initial and Runtime Sorting" id="UI Components/DataGrid/Sorting/API/Initial and Runtime Sorting" file="c:\content\05 UI Components\DataGrid\25 Sorting\20 API\1 Initial and Runtime Sorting.md" />
<article name="Custom Sorting" sort="5 Custom Sorting" id="UI Components/DataGrid/Sorting/API/Custom Sorting" file="c:\content\05 UI Components\DataGrid\25 Sorting\20 API\5 Custom Sorting.md" />
<article name="Clear Sorting Settings" sort="8 Clear Sorting Settings" id="UI Components/DataGrid/Sorting/API/Clear Sorting Settings" file="c:\content\05 UI Components\DataGrid\25 Sorting\20 API\8 Clear Sorting Settings.md" />
</article>
</article>
<article name="Filtering and Searching" sort="30 Filtering and Searching" id="UI Components/DataGrid/Filtering and Searching" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\Filtering and Searching.md" tags="dataGrid,data grid,filter,serach,search panel,filter row,header filter,initial filtering,runtime filtering,get combined filter,clear filter,filterValue,selectedFilterOperation,filterType,searchByText,allowFiltering,allowHeaderFiltering" root="true">
<article name="Filter Row" sort="1 Filter Row" id="UI Components/DataGrid/Filtering and Searching/Filter Row" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\1 Filter Row.md" />
<article name="Header Filter" sort="2 Header Filter" id="UI Components/DataGrid/Filtering and Searching/Header Filter" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\2 Header Filter.md" />
<article name="Search Panel" sort="3 Search Panel" id="UI Components/DataGrid/Filtering and Searching/Search Panel" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\3 Search Panel.md" />
<article name="Filter Panel with Filter Builder" sort="4 Filter Panel with Filter Builder" id="UI Components/DataGrid/Filtering and Searching/Filter Panel with Filter Builder" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\4 Filter Panel with Filter Builder.md" />
<article name="Standalone Filter Builder" sort="5 Standalone Filter Builder" id="UI Components/DataGrid/Filtering and Searching/Standalone Filter Builder" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\5 Standalone Filter Builder.md" />
<article name="API" sort="6 API" id="UI Components/DataGrid/Filtering and Searching/API" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\6 API\API.md">
<article name="Initial and Runtime Filtering" sort="1 Initial and Runtime Filtering" id="UI Components/DataGrid/Filtering and Searching/API/Initial and Runtime Filtering" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\6 API\1 Initial and Runtime Filtering.md" />
<article name="Clear Filtering Settings" sort="8 Clear Filtering Settings" id="UI Components/DataGrid/Filtering and Searching/API/Clear Filtering Settings" file="c:\content\05 UI Components\DataGrid\30 Filtering and Searching\6 API\8 Clear Filtering Settings.md" />
</article>
</article>
<article name="Paging" sort="35 Paging" id="UI Components/DataGrid/Paging" file="c:\content\05 UI Components\DataGrid\35 Paging\Paging.md" tags="dataGrid,data grid,paging,pager,page size,page navigator,page info,page count" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Paging/User Interaction" file="c:\content\05 UI Components\DataGrid\35 Paging\10 User Interaction.md" />
<article name="API" sort="20 API" id="UI Components/DataGrid/Paging/API" file="c:\content\05 UI Components\DataGrid\35 Paging\20 API.md" />
</article>
<article name="Scrolling" sort="40 Scrolling" id="UI Components/DataGrid/Scrolling" file="c:\content\05 UI Components\DataGrid\40 Scrolling\Scrolling.md" root="true" />
<article name="Grouping" sort="45 Grouping" id="UI Components/DataGrid/Grouping" file="c:\content\05 UI Components\DataGrid\45 Grouping\Grouping.md" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Grouping/User Interaction" file="c:\content\05 UI Components\DataGrid\45 Grouping\10 User Interaction\User Interaction.md">
<article name="Group Data" sort="10 Group Data" id="UI Components/DataGrid/Grouping/User Interaction/Group Data" file="c:\content\05 UI Components\DataGrid\45 Grouping\10 User Interaction\10 Group Data.md" />
<article name="Expand and Collapse Groups" sort="20 Expand and Collapse Groups" id="UI Components/DataGrid/Grouping/User Interaction/Expand and Collapse Groups" file="c:\content\05 UI Components\DataGrid\45 Grouping\10 User Interaction\20 Expand and Collapse Groups.md" />
<article name="Clear Grouping" sort="30 Clear Grouping" id="UI Components/DataGrid/Grouping/User Interaction/Clear Grouping" file="c:\content\05 UI Components\DataGrid\45 Grouping\10 User Interaction\30 Clear Grouping.md" />
</article>
<article name="API" sort="20 API" id="UI Components/DataGrid/Grouping/API" file="c:\content\05 UI Components\DataGrid\45 Grouping\20 API\API.md">
<article name="Group Index and Key" sort="05 Group Index and Key" id="UI Components/DataGrid/Grouping/API/Group Index and Key" file="c:\content\05 UI Components\DataGrid\45 Grouping\20 API\05 Group Index and Key.md" />
<article name="Initial and Runtime Grouping" sort="10 Initial and Runtime Grouping" id="UI Components/DataGrid/Grouping/API/Initial and Runtime Grouping" file="c:\content\05 UI Components\DataGrid\45 Grouping\20 API\10 Initial and Runtime Grouping.md" />
<article name="Expand and Collapse Groups" sort="20 Expand and Collapse Groups" id="UI Components/DataGrid/Grouping/API/Expand and Collapse Groups" file="c:\content\05 UI Components\DataGrid\45 Grouping\20 API\20 Expand and Collapse Groups.md" />
<article name="Clear Grouping" sort="30 Clear Grouping" id="UI Components/DataGrid/Grouping/API/Clear Grouping" file="c:\content\05 UI Components\DataGrid\45 Grouping\20 API\30 Clear Grouping.md" />
</article>
<article name="Events" sort="30 Events" id="UI Components/DataGrid/Grouping/Events" file="c:\content\05 UI Components\DataGrid\45 Grouping\30 Events.md" />
</article>
<article name="Selection" sort="50 Selection" id="UI Components/DataGrid/Selection" file="c:\content\05 UI Components\DataGrid\50 Selection\Selection.md" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Selection/User Interaction" file="c:\content\05 UI Components\DataGrid\50 Selection\10 User Interaction.md" />
<article name="API" sort="20 API" id="UI Components/DataGrid/Selection/API" file="c:\content\05 UI Components\DataGrid\50 Selection\20 API\API.md">
<article name="Initial and Runtime Selection" sort="1 Initial and Runtime Selection" id="UI Components/DataGrid/Selection/API/Initial and Runtime Selection" file="c:\content\05 UI Components\DataGrid\50 Selection\20 API\1 Initial and Runtime Selection.md" />
<article name="Clear Selection Settings" sort="8 Clear Selection Settings" id="UI Components/DataGrid/Selection/API/Clear Selection Settings" file="c:\content\05 UI Components\DataGrid\50 Selection\20 API\8 Clear Selection Settings.md" />
</article>
<article name="Events" sort="30 Events" id="UI Components/DataGrid/Selection/Events" file="c:\content\05 UI Components\DataGrid\50 Selection\30 Events.md" />
</article>
<article name="Load Panel" sort="55 Load Panel" id="UI Components/DataGrid/Load Panel" file="c:\content\05 UI Components\DataGrid\55 Load Panel\Load Panel.md" root="true" />
<article name="Master-Detail Interface" sort="60 Master-Detail Interface" id="UI Components/DataGrid/Master-Detail Interface" file="c:\content\05 UI Components\DataGrid\60 Master-Detail Interface\Master-Detail Interface.md" tags="dataGrid,data grid,master-detail,detail section,master row,expand,collapse" root="true">
<article name="User Interaction" sort="10 User Interaction" id="UI Components/DataGrid/Master-Detail Interface/User Interaction" file="c:\content\05 UI Components\DataGrid\60 Master-Detail Interface\10 User Interaction.md" />
<article name="API" sort="20 API" id="UI Components/DataGrid/Master-Detail Interface/API" file="c:\content\05 UI Components\DataGrid\60 Master-Detail Interface\20 API.md" />
<article name="Events" sort="30 Events" id="UI Components/DataGrid/Master-Detail Interface/Events" file="c:\content\05 UI Components\DataGrid\60 Master-Detail Interface\30 Events.md" />
</article>
<article name="Summaries" sort="65 Summaries" id="UI Components/DataGrid/Summaries">
<article name="Predefined Aggregate Functions" sort="05 Predefined Aggregate Functions" id="UI Components/DataGrid/Summaries/Predefined Aggregate Functions" file="c:\content\05 UI Components\DataGrid\65 Summaries\05 Predefined Aggregate Functions.md" root="true" />
<article name="Custom Aggregate Function" sort="07 Custom Aggregate Function" id="UI Components/DataGrid/Summaries/Custom Aggregate Function" file="c:\content\05 UI Components\DataGrid\65 Summaries\07 Custom Aggregate Function\Custom Aggregate Function.md" root="true">
<article name="Client-Side Data Aggregation" sort="10 Client-Side Data Aggregation" id="UI Components/DataGrid/Summaries/Custom Aggregate Function/Client-Side Data Aggregation" file="c:\content\05 UI Components\DataGrid\65 Summaries\07 Custom Aggregate Function\10 Client-Side Data Aggregation.md" />
<article name="Server-Side Data Aggregation" sort="20 Server-Side Data Aggregation" id="UI Components/DataGrid/Summaries/Custom Aggregate Function/Server-Side Data Aggregation" file="c:\content\05 UI Components\DataGrid\65 Summaries\07 Custom Aggregate Function\20 Server-Side Data Aggregation.md" />
</article>
<article name="Total Summary" sort="10 Total Summary" id="UI Components/DataGrid/Summaries/Total Summary" file="c:\content\05 UI Components\DataGrid\65 Summaries\10 Total Summary\Total Summary.md" tags="dataGrid,data grid,total summary,aggregate function,summaryType,alignment,location,showInColumn" root="true">
<article name="Alignment and Location" sort="10 Alignment and Location" id="UI Components/DataGrid/Summaries/Total Summary/Alignment and Location" file="c:\content\05 UI Components\DataGrid\65 Summaries\10 Total Summary\10 Alignment and Location.md" />
</article>
<article name="Group Summary" sort="20 Group Summary" id="UI Components/DataGrid/Summaries/Group Summary" file="c:\content\05 UI Components\DataGrid\65 Summaries\20 Group Summary\Group Summary.md" tags="dataGrid,data grid,group summary,aggregate function,sort by summary,sortByGroupSummaryInfo,summaryType,alignment,location,alignByColumn. showInColumn,showInGroupFooter" root="true">
<article name="Alignment and Location" sort="10 Alignment and Location" id="UI Components/DataGrid/Summaries/Group Summary/Alignment and Location" file="c:\content\05 UI Components\DataGrid\65 Summaries\20 Group Summary\10 Alignment and Location.md" />
<article name="Sort by Group Summary" sort="15 Sort by Group Summary" id="UI Components/DataGrid/Summaries/Group Summary/Sort by Group Summary" file="c:\content\05 UI Components\DataGrid\65 Summaries\20 Group Summary\15 Sort by Group Summary.md" />
</article>
<article name="Format Text and Value" sort="40 Format Text and Value" id="UI Components/DataGrid/Summaries/Format Text and Value" file="c:\content\05 UI Components\DataGrid\65 Summaries\40 Format Text and Value.md" tags="dataGrid,data grid,change text,change format,displayFormat,valueFormat,customizeText" root="true" />
</article>
<article name="Customize the Appearance" sort="67 Customize the Appearance" id="UI Components/DataGrid/Customize the Appearance" file="c:\content\05 UI Components\DataGrid\67 Customize the Appearance.md" root="true" />
<article name="Focused Row" sort="73 Focused Row" id="UI Components/DataGrid/Focused Row" file="c:\content\05 UI Components\DataGrid\73 Focused Row.md" root="true" />
<article name="Keyboard Support" sort="75 Keyboard Support" id="UI Components/DataGrid/Keyboard Support" file="c:\content\05 UI Components\DataGrid\75 Keyboard Support.md" root="true" />
<article name="How To" sort="99 How To" id="UI Components/DataGrid/How To">
<article name="Bind a Lookup Column to a Custom Data Source" sort="Bind a Lookup Column to a Custom Data Source" id="UI Components/DataGrid/How To/Bind a Lookup Column to a Custom Data Source" file="c:\content\05 UI Components\DataGrid\99 How To\Bind a Lookup Column to a Custom Data Source.md" root="true" />
<article name="Dynamically Change Editor Properties in the Editing State" sort="Dynamically Change Editor Properties in the Editing State" id="UI Components/DataGrid/How To/Dynamically Change Editor Properties in the Editing State" file="c:\content\05 UI Components\DataGrid\99 How To\Dynamically Change Editor Properties in the Editing State.md" root="true" />
<article name="Dynamically Change Form Item Properties in the Editing State" sort="Dynamically Change Form Item Properties in the Editing State" id="UI Components/DataGrid/How To/Dynamically Change Form Item Properties in the Editing State" file="c:\content\05 UI Components\DataGrid\99 How To\Dynamically Change Form Item Properties in the Editing State.md" root="true" />
</article>
</article>
<article name="DateBox" sort="DateBox" id="UI Components/DateBox">
<article name="Getting Started with DateBox" sort="00 Getting Started with DateBox" id="UI Components/DateBox/Getting Started with DateBox" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\00 Getting Started with DateBox.md" tags="dxdatebox" root="true">
<article name="Create the DateBox" sort="05 Create the DateBox" id="UI Components/DateBox/Getting Started with DateBox/Create the DateBox" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\05 Create the DateBox.md" />
<article name="Set the DateBox Type" sort="10 Set the DateBox Type" id="UI Components/DateBox/Getting Started with DateBox/Set the DateBox Type" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\10 Set the DateBox Type.md" />
<article name="Set the Accepted Date Range" sort="13 Set the Accepted Date Range" id="UI Components/DateBox/Getting Started with DateBox/Set the Accepted Date Range" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\13 Set the Accepted Date Range.md" />
<article name="Set the Value" sort="15 Set the Value" id="UI Components/DateBox/Getting Started with DateBox/Set the Value" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\15 Set the Value.md" />
<article name="Handle the Value Change Event" sort="20 Handle the Value Change Event" id="UI Components/DateBox/Getting Started with DateBox/Handle the Value Change Event" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\20 Handle the Value Change Event.md" />
<article name="Disable Specific Dates" sort="25 Disable Specific Dates" id="UI Components/DateBox/Getting Started with DateBox/Disable Specific Dates" file="c:\content\05 UI Components\DateBox\00 Getting Started with DateBox\25 Disable Specific Dates.md" />
</article>
<article name="Platform-Specific Value Pickers" sort="03 Platform-Specific Value Pickers" id="UI Components/DateBox/Platform-Specific Value Pickers" file="c:\content\05 UI Components\DateBox\03 Platform-Specific Value Pickers.md" tags="date box,dateBox,editor,scheduling,picker type,calendar,rollers,list,pickerType,interval" root="true" />
<article name="Value Formatting and Masked Input" sort="04 Value Formatting and Masked Input" id="UI Components/DateBox/Value Formatting and Masked Input" file="c:\content\05 UI Components\DateBox\04 Value Formatting and Masked Input.md" root="true" />
<article name="Control the Behavior" sort="05 Control the Behavior" id="UI Components/DateBox/Control the Behavior" file="c:\content\05 UI Components\DateBox\05 Control the Behavior.md" tags="date box,dateBox,editor,apply mode,change event,value change event" root="true" />
<article name="Handle the Value Change Event" sort="10 Handle the Value Change Event" id="UI Components/DateBox/Handle the Value Change Event" file="c:\content\05 UI Components\DateBox\10 Handle the Value Change Event.md" tags="date box,dateBox,editor,get value,set value,change value,valueChangeEvent,valueChanged" root="true" />
<article name="Specify Value Range" sort="15 Specify Value Range" id="UI Components/DateBox/Specify Value Range" file="c:\content\05 UI Components\DateBox\15 Specify Value Range.md" tags="date box,dateBox,editor,range,min,max,out of range error message" root="true" />
<article name="Synchronize Two DateBoxes" sort="16 Synchronize Two DateBoxes" id="UI Components/DateBox/Synchronize Two DateBoxes" file="c:\content\05 UI Components\DateBox\16 Synchronize Two DateBoxes.md" tags="date box,dateBox,editor,scheduling,overview,validate date interval" root="true" />
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/DateBox/Keyboard Support" file="c:\content\05 UI Components\DateBox\20 Keyboard Support.md" tags="date box,dateBox,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="Diagram" sort="Diagram" id="UI Components/Diagram">
<article name="Getting Started with Diagram" sort="00 Getting Started with Diagram" id="UI Components/Diagram/Getting Started with Diagram" file="c:\content\05 UI Components\Diagram\00 Getting Started with Diagram\00 Getting Started with Diagram.md" tags="dxdiagram" root="true">
<article name="Add the Diagram Component to a Page" sort="10 Add the Diagram Component to a Page" id="UI Components/Diagram/Getting Started with Diagram/Add the Diagram Component to a Page" file="c:\content\05 UI Components\Diagram\00 Getting Started with Diagram\10 Add the Diagram Component to a Page.md" />
<article name="Load and Save Diagram Content" sort="20 Load and Save Diagram Content" id="UI Components/Diagram/Getting Started with Diagram/Load and Save Diagram Content" file="c:\content\05 UI Components\Diagram\00 Getting Started with Diagram\20 Load and Save Diagram Content.md" />
</article>
<article name="Data Binding" sort="10 Data Binding" id="UI Components/Diagram/Data Binding" file="c:\content\05 UI Components\Diagram\10 Data Binding\Data Binding.md" root="true">
<article name="Node and Edge Arrays" sort="10 Node and Edge Arrays" id="UI Components/Diagram/Data Binding/Node and Edge Arrays" file="c:\content\05 UI Components\Diagram\10 Data Binding\10 Node and Edge Arrays.md" />
<article name="Linear Array" sort="20 Linear Array" id="UI Components/Diagram/Data Binding/Linear Array" file="c:\content\05 UI Components\Diagram\10 Data Binding\20 Linear Array.md" />
<article name="Hierarchical Array" sort="30 Hierarchical Array" id="UI Components/Diagram/Data Binding/Hierarchical Array" file="c:\content\05 UI Components\Diagram\10 Data Binding\30 Hierarchical Array.md" />
<article name="Diagram Layout" sort="35 Diagram Layout" id="UI Components/Diagram/Data Binding/Diagram Layout" file="c:\content\05 UI Components\Diagram\10 Data Binding\35 Diagram Layout.md" />
<article name="Optional Binding Expressions" sort="40 Optional Binding Expressions" id="UI Components/Diagram/Data Binding/Optional Binding Expressions" file="c:\content\05 UI Components\Diagram\10 Data Binding\40 Optional Binding Expressions.md" />
</article>
<article name="Custom Shapes" sort="20 Custom Shapes" id="UI Components/Diagram/Custom Shapes" file="c:\content\05 UI Components\Diagram\20 Custom Shapes\Custom Shapes.md" root="true">
<article name="Shapes with Base Type" sort="10 Shapes with Base Type" id="UI Components/Diagram/Custom Shapes/Shapes with Base Type" file="c:\content\05 UI Components\Diagram\20 Custom Shapes\10 Shapes with Base Type.md" />
<article name="Shapes with Custom Background Images" sort="20 Shapes with Custom Background Images" id="UI Components/Diagram/Custom Shapes/Shapes with Custom Background Images" file="c:\content\05 UI Components\Diagram\20 Custom Shapes\20 Shapes with Custom Background Images.md" />
</article>
<article name="Templates" sort="25 Templates" id="UI Components/Diagram/Templates" file="c:\content\05 UI Components\Diagram\25 Templates\Templates.md" root="true">
<article name="Shape Template" sort="10 Shape Template" id="UI Components/Diagram/Templates/Shape Template" file="c:\content\05 UI Components\Diagram\25 Templates\10 Shape Template.md" />
</article>
<article name="Diagram Tools" sort="30 Diagram Tools" id="UI Components/Diagram/Diagram Tools" file="c:\content\05 UI Components\Diagram\30 Diagram Tools.md" root="true" />
<article name="Read Only Mode" sort="32 Read Only Mode" id="UI Components/Diagram/Read Only Mode" file="c:\content\05 UI Components\Diagram\32 Read Only Mode.md" root="true" />
<article name="Shape Types" sort="40 Shape Types" id="UI Components/Diagram/Shape Types" file="c:\content\05 UI Components\Diagram\40 Shape Types.md" root="true" />
</article>
<article name="Drawer" sort="Drawer" id="UI Components/Drawer">
<article name="Getting Started with Navigation Drawer" sort="Getting Started with Navigation Drawer" id="UI Components/Drawer/Getting Started with Navigation Drawer" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\Getting Started with Navigation Drawer.md" tags="dxdrawer" root="true">
<article name="Create the Drawer" sort="00 Create the Drawer" id="UI Components/Drawer/Getting Started with Navigation Drawer/Create the Drawer" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\00 Create the Drawer.md" />
<article name="Open and Close the Drawer" sort="10 Open and Close the Drawer" id="UI Components/Drawer/Getting Started with Navigation Drawer/Open and Close the Drawer" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\10 Open and Close the Drawer.md" />
<article name="Implement Navigation" sort="15 Implement Navigation" id="UI Components/Drawer/Getting Started with Navigation Drawer/Implement Navigation" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\15 Implement Navigation.md" />
<article name="Configure the Reveal Behavior" sort="20 Configure the Reveal Behavior" id="UI Components/Drawer/Getting Started with Navigation Drawer/Configure the Reveal Behavior" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\20 Configure the Reveal Behavior.md" />
<article name="Configure Interaction with the View" sort="30 Configure Interaction with the View" id="UI Components/Drawer/Getting Started with Navigation Drawer/Configure Interaction with the View" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\30 Configure Interaction with the View.md" />
<article name="Change the Position" sort="40 Change the Position" id="UI Components/Drawer/Getting Started with Navigation Drawer/Change the Position" file="c:\content\05 UI Components\Drawer\Getting Started with Navigation Drawer\40 Change the Position.md" />
</article>
</article>
<article name="DropDownBox" sort="DropDownBox" id="UI Components/DropDownBox">
<article name="Overview" sort="10 Overview" id="UI Components/DropDownBox/Overview" file="c:\content\05 UI Components\DropDownBox\10 Overview.md" tags="dxdropdownbox" root="true" />
<article name="Synchronize with the Embedded Element" sort="15 Synchronize with the Embedded Element" id="UI Components/DropDownBox/Synchronize with the Embedded Element" file="c:\content\05 UI Components\DropDownBox\15 Synchronize with the Embedded Element.md" root="true" />
<article name="Customize the Appearance" sort="20 Customize the Appearance" id="UI Components/DropDownBox/Customize the Appearance" file="c:\content\05 UI Components\DropDownBox\20 Customize the Appearance.md" root="true" />
<article name="Keyboard Support" sort="26 Keyboard Support" id="UI Components/DropDownBox/Keyboard Support" file="c:\content\05 UI Components\DropDownBox\26 Keyboard Support.md" tags="dropdown box,dropDownBox,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="DropDownButton" sort="DropDownButton" id="UI Components/DropDownButton">
<article name="Getting Started with DropDownButton" sort="00 Getting Started with DropDownButton" id="UI Components/DropDownButton/Getting Started with DropDownButton" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\00 Getting Started with DropDownButton.md" tags="dxdropdownbutton" root="true">
<article name="Create a DropDownButton" sort="10 Create a DropDownButton" id="UI Components/DropDownButton/Getting Started with DropDownButton/Create a DropDownButton" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\10 Create a DropDownButton.md" />
<article name="Configure the Button" sort="20 Configure the Button" id="UI Components/DropDownButton/Getting Started with DropDownButton/Configure the Button" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\20 Configure the Button.md" />
<article name="Populate the Drop-Down Menu" sort="30 Populate the Drop-Down Menu" id="UI Components/DropDownButton/Getting Started with DropDownButton/Populate the Drop-Down Menu" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\30 Populate the Drop-Down Menu.md" />
<article name="Handle the Menu Item Click Event" sort="40 Handle the Menu Item Click Event" id="UI Components/DropDownButton/Getting Started with DropDownButton/Handle the Menu Item Click Event" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\40 Handle the Menu Item Click Event.md" />
<article name="Split the Button" sort="50 Split the Button" id="UI Components/DropDownButton/Getting Started with DropDownButton/Split the Button" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\50 Split the Button.md" />
<article name="Enable the Stateful Mode" sort="60 Enable the Stateful Mode" id="UI Components/DropDownButton/Getting Started with DropDownButton/Enable the Stateful Mode" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\60 Enable the Stateful Mode.md" />
<article name="Customize the Drop-Down Menu" sort="80 Customize the Drop-Down Menu" id="UI Components/DropDownButton/Getting Started with DropDownButton/Customize the Drop-Down Menu" file="c:\content\05 UI Components\DropDownButton\00 Getting Started with DropDownButton\80 Customize the Drop-Down Menu.md" />
</article>
<article name="Keyboard Support" sort="90 Keyboard Support" id="UI Components/DropDownButton/Keyboard Support" file="c:\content\05 UI Components\DropDownButton\90 Keyboard Support.md" tags="dropDown button,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="FileManager" sort="FileManager" id="UI Components/FileManager">
<article name="Getting Started with File Manager" sort="00 Getting Started with File Manager" id="UI Components/FileManager/Getting Started with File Manager" file="c:\content\05 UI Components\FileManager\00 Getting Started with File Manager\00 Getting Started with File Manager.md" tags="dxfilemanager" root="true">
<article name="Create a File Manager" sort="10 Create a File Manager" id="UI Components/FileManager/Getting Started with File Manager/Create a File Manager" file="c:\content\05 UI Components\FileManager\00 Getting Started with File Manager\10 Create a File Manager.md" />
<article name="Bind the File Manager Component to a File System" sort="20 Bind the File Manager Component to a File System" id="UI Components/FileManager/Getting Started with File Manager/Bind the File Manager Component to a File System" file="c:\content\05 UI Components\FileManager\00 Getting Started with File Manager\20 Bind the File Manager Component to a File System.md" />
</article>
<article name="Bind to File Systems" sort="10 Bind to File Systems" id="UI Components/FileManager/Bind to File Systems" file="c:\content\05 UI Components\FileManager\10 Bind to File Systems\Bind to File Systems.md" root="true">
<article name="Object File System" sort="10 Object File System" id="UI Components/FileManager/Bind to File Systems/Object File System" file="c:\content\05 UI Components\FileManager\10 Bind to File Systems\10 Object File System.md" />
<article name="Remote File System" sort="20 Remote File System" id="UI Components/FileManager/Bind to File Systems/Remote File System" file="c:\content\05 UI Components\FileManager\10 Bind to File Systems\20 Remote File System.md" />
<article name="Custom File System" sort="30 Custom File System" id="UI Components/FileManager/Bind to File Systems/Custom File System" file="c:\content\05 UI Components\FileManager\10 Bind to File Systems\30 Custom File System.md" />
</article>
<article name="UI Customization" sort="20 UI Customization" id="UI Components/FileManager/UI Customization" file="c:\content\05 UI Components\FileManager\20 UI Customization\00 UI Customization.md" tags="fileManager,file manager,customization,custom thumbnail,toolbar,context menu" root="true">
<article name="Custom Thumbnails" sort="10 Custom Thumbnails" id="UI Components/FileManager/UI Customization/Custom Thumbnails" file="c:\content\05 UI Components\FileManager\20 UI Customization\10 Custom Thumbnails.md" />
</article>
<article name="Validation" sort="30 Validation" id="UI Components/FileManager/Validation" file="c:\content\05 UI Components\FileManager\30 Validation\00 Validation.md" tags="fileManager,file manager,validation,max file size" root="true">
<article name="Permissions" sort="10 Permissions" id="UI Components/FileManager/Validation/Permissions" file="c:\content\05 UI Components\FileManager\30 Validation\10 Permissions.md" />
<article name="Upload Settings" sort="20 Upload Settings" id="UI Components/FileManager/Validation/Upload Settings" file="c:\content\05 UI Components\FileManager\30 Validation\20 Upload Settings.md" />
</article>
</article>
<article name="FileUploader" sort="FileUploader" id="UI Components/FileUploader">
<article name="Overview" sort="00 Overview" id="UI Components/FileUploader/Overview" file="c:\content\05 UI Components\FileUploader\00 Overview.md" tags="dxfileuploader,file uploader,fileUploader,overview,accepted file types,multiple files,access files in code" root="true" />
<article name="Upload Files" sort="20 Upload Files" id="UI Components/FileUploader/Upload Files">
<article name="Client-Side Settings" sort="05 Client-Side Settings" id="UI Components/FileUploader/Upload Files/Client-Side Settings" file="c:\content\05 UI Components\FileUploader\20 Upload Files\05 Client-Side Settings\Client-Side Settings.md" tags="file uploader,fileUploader,client side,upload mode,ajax,html form,formData,pass parameter,additional parameter" root="true">
<article name="Upload Mode" sort="05 Upload Mode" id="UI Components/FileUploader/Upload Files/Client-Side Settings/Upload Mode" file="c:\content\05 UI Components\FileUploader\20 Upload Files\05 Client-Side Settings\05 Upload Mode.md" />
<article name="Chunk Upload" sort="07 Chunk Upload" id="UI Components/FileUploader/Upload Files/Client-Side Settings/Chunk Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\05 Client-Side Settings\07 Chunk Upload.md" />
<article name="Additional Parameters in a Request" sort="10 Additional Parameters in a Request" id="UI Components/FileUploader/Upload Files/Client-Side Settings/Additional Parameters in a Request" file="c:\content\05 UI Components\FileUploader\20 Upload Files\05 Client-Side Settings\10 Additional Parameters in a Request.md" />
</article>
<article name="Server-Side Implementation in ASP.NET" sort="10 Server-Side Implementation in ASP.NET" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in ASP.NET" file="c:\content\05 UI Components\FileUploader\20 Upload Files\10 Server-Side Implementation in ASP.NET\Server-Side Implementation in ASP.NET.md" tags="file uploader,fileUploader,server side,asp.net mvc,ajax,html form" root="true">
<article name="Ajax Upload" sort="0 Ajax Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in ASP.NET/Ajax Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\10 Server-Side Implementation in ASP.NET\0 Ajax Upload.md" />
<article name="HTML Form Upload" sort="1 HTML Form Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in ASP.NET/HTML Form Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\10 Server-Side Implementation in ASP.NET\1 HTML Form Upload.md" />
<article name="Chunk Upload" sort="2 Chunk Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in ASP.NET/Chunk Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\10 Server-Side Implementation in ASP.NET\2 Chunk Upload.md" />
</article>
<article name="Server-Side Implementation in PHP" sort="20 Server-Side Implementation in PHP" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in PHP" file="c:\content\05 UI Components\FileUploader\20 Upload Files\20 Server-Side Implementation in PHP\Server-Side Implementation in PHP.md" tags="file uploader,fileUploader,server side,php,ajax,html form" root="true">
<article name="Ajax Upload" sort="0 Ajax Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in PHP/Ajax Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\20 Server-Side Implementation in PHP\0 Ajax Upload.md" />
<article name="HTML Form Upload" sort="1 HTML Form Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in PHP/HTML Form Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\20 Server-Side Implementation in PHP\1 HTML Form Upload.md" />
<article name="Chunk Upload" sort="2 Chunk Upload" id="UI Components/FileUploader/Upload Files/Server-Side Implementation in PHP/Chunk Upload" file="c:\content\05 UI Components\FileUploader\20 Upload Files\20 Server-Side Implementation in PHP\2 Chunk Upload.md" />
</article>
</article>
<article name="File Validation" sort="40 File Validation" id="UI Components/FileUploader/File Validation" file="c:\content\05 UI Components\FileUploader\40 File Validation.md" root="true" />
<article name="How To" sort="99 How To" id="UI Components/FileUploader/How To">
<article name="Specify a Header for the Request" sort="10 Specify a Header for the Request" id="UI Components/FileUploader/How To/Specify a Header for the Request" file="c:\content\05 UI Components\FileUploader\99 How To\10 Specify a Header for the Request.md" root="true" />
<article name="Specify a file's GUID" sort="20 Specify a file's GUID" id="UI Components/FileUploader/How To/Specify a file's GUID" file="c:\content\05 UI Components\FileUploader\99 How To\20 Specify a file's GUID.md" root="true" />
<article name="Get a file's Guid after uploading in chunks" sort="30 Get a file's Guid after uploading in chunks" id="UI Components/FileUploader/How To/Get a file's Guid after uploading in chunks" file="c:\content\05 UI Components\FileUploader\99 How To\30 Get a file's Guid after uploading in chunks.md" root="true" />
</article>
</article>
<article name="FilterBuilder" sort="FilterBuilder" id="UI Components/FilterBuilder">
<article name="Overview" sort="010 Overview" id="UI Components/FilterBuilder/Overview" file="c:\content\05 UI Components\FilterBuilder\010 Overview.md" tags="dxfilterbuilder,filter builder,filterBuilder,filter expression,condition,overview" root="true" />
<article name="Integrate with a DevExtreme UI Component" sort="020 Integrate with a DevExtreme UI Component" id="UI Components/FilterBuilder/Integrate with a DevExtreme UI Component" file="c:\content\05 UI Components\FilterBuilder\020 Integrate with a DevExtreme UI Component.md" root="true" />
<article name="Filter Hierarchical Fields" sort="030 Filter Hierarchical Fields" id="UI Components/FilterBuilder/Filter Hierarchical Fields" file="c:\content\05 UI Components\FilterBuilder\030 Filter Hierarchical Fields.md" root="true" />
<article name="Predefine Filter Values" sort="040 Predefine Filter Values" id="UI Components/FilterBuilder/Predefine Filter Values" file="c:\content\05 UI Components\FilterBuilder\040 Predefine Filter Values.md" tags="filterBuilder,filter builder,lookup field" root="true" />
<article name="Implement a Custom Operation" sort="50 Implement a Custom Operation" id="UI Components/FilterBuilder/Implement a Custom Operation" file="c:\content\05 UI Components\FilterBuilder\50 Implement a Custom Operation.md" root="true" />
</article>
<article name="Floating Action Button" sort="Floating Action Button" id="UI Components/Floating Action Button">
<article name="Getting Started with Floating Action Button" sort="00 Getting Started with Floating Action Button" id="UI Components/Floating Action Button/Getting Started with Floating Action Button" file="c:\content\05 UI Components\Floating Action Button\00 Getting Started with Floating Action Button\00 Getting Started with Floating Action Button.md" tags="dxspeeddialaction" root="true">
<article name="Single Action" sort="10 Single Action" id="UI Components/Floating Action Button/Getting Started with Floating Action Button/Single Action" file="c:\content\05 UI Components\Floating Action Button\00 Getting Started with Floating Action Button\10 Single Action.md" />
<article name="Multiple Actions (Speed Dial)" sort="20 Multiple Actions (Speed Dial)" id="UI Components/Floating Action Button/Getting Started with Floating Action Button/Multiple Actions (Speed Dial)" file="c:\content\05 UI Components\Floating Action Button\00 Getting Started with Floating Action Button\20 Multiple Actions (Speed Dial).md" />
<article name="Handle Screen Transitions" sort="30 Handle Screen Transitions" id="UI Components/Floating Action Button/Getting Started with Floating Action Button/Handle Screen Transitions" file="c:\content\05 UI Components\Floating Action Button\00 Getting Started with Floating Action Button\30 Handle Screen Transitions.md" />
</article>
</article>
<article name="Form" sort="Form" id="UI Components/Form">
<article name="Overview" sort="00 Overview" id="UI Components/Form/Overview" file="c:\content\05 UI Components\Form\00 Overview.md" tags="dxform,form,overview,form data" root="true" />
<article name="Configure Simple Items" sort="05 Configure Simple Items" id="UI Components/Form/Configure Simple Items" file="c:\content\05 UI Components\Form\05 Configure Simple Items\Configure Simple Items.md" tags="form,simple item,editor type,editor configuration,required,help text,customize item,item template" root="true">
<article name="Create a Simple Item" sort="01 Create a Simple Item" id="UI Components/Form/Configure Simple Items/Create a Simple Item" file="c:\content\05 UI Components\Form\05 Configure Simple Items\01 Create a Simple Item.md" />
<article name="Customize a Simple Item" sort="05 Customize a Simple Item" id="UI Components/Form/Configure Simple Items/Customize a Simple Item" file="c:\content\05 UI Components\Form\05 Configure Simple Items\05 Customize a Simple Item.md" />
<article name="Create an Unbound Simple Item" sort="10 Create an Unbound Simple Item" id="UI Components/Form/Configure Simple Items/Create an Unbound Simple Item" file="c:\content\05 UI Components\Form\05 Configure Simple Items\10 Create an Unbound Simple Item.md" />
</article>
<article name="Organize Simple Items" sort="10 Organize Simple Items" id="UI Components/Form/Organize Simple Items">
<article name="In Groups" sort="05 In Groups" id="UI Components/Form/Organize Simple Items/In Groups" file="c:\content\05 UI Components\Form\10 Organize Simple Items\05 In Groups\In Groups.md" tags="form,group,caption,column count,column span,colCount,colSpan,group template" root="true">
<article name="Create a Group" sort="01 Create a Group" id="UI Components/Form/Organize Simple Items/In Groups/Create a Group" file="c:\content\05 UI Components\Form\10 Organize Simple Items\05 In Groups\01 Create a Group.md" />
<article name="Columns within a Group" sort="05 Columns within a Group" id="UI Components/Form/Organize Simple Items/In Groups/Columns within a Group" file="c:\content\05 UI Components\Form\10 Organize Simple Items\05 In Groups\05 Columns within a Group.md" />
<article name="Custom Content within a Group" sort="10 Custom Content within a Group" id="UI Components/Form/Organize Simple Items/In Groups/Custom Content within a Group" file="c:\content\05 UI Components\Form\10 Organize Simple Items\05 In Groups\10 Custom Content within a Group.md" />
</article>
<article name="In Tabs" sort="10 In Tabs" id="UI Components/Form/Organize Simple Items/In Tabs" file="c:\content\05 UI Components\Form\10 Organize Simple Items\10 In Tabs\In Tabs.md" tags="form,tab,tab item,columns,template,tab template,tab title template,tab panel,customize tab panel,customize tabPanel" root="true">
<article name="Create a Tab" sort="01 Create a Tab" id="UI Components/Form/Organize Simple Items/In Tabs/Create a Tab" file="c:\content\05 UI Components\Form\10 Organize Simple Items\10 In Tabs\01 Create a Tab.md" />
<article name="Columns within a Tab" sort="05 Columns within a Tab" id="UI Components/Form/Organize Simple Items/In Tabs/Columns within a Tab" file="c:\content\05 UI Components\Form\10 Organize Simple Items\10 In Tabs\05 Columns within a Tab.md" />
<article name="Custom Content within a Tab" sort="10 Custom Content within a Tab" id="UI Components/Form/Organize Simple Items/In Tabs/Custom Content within a Tab" file="c:\content\05 UI Components\Form\10 Organize Simple Items\10 In Tabs\10 Custom Content within a Tab.md" />
<article name="Configure the Tab Panel" sort="20 Configure the Tab Panel" id="UI Components/Form/Organize Simple Items/In Tabs/Configure the Tab Panel" file="c:\content\05 UI Components\Form\10 Organize Simple Items\10 In Tabs\20 Configure the Tab Panel.md" />
</article>
<article name="In Columns" sort="15 In Columns" id="UI Components/Form/Organize Simple Items/In Columns" file="c:\content\05 UI Components\Form\10 Organize Simple Items\15 In Columns\In Columns.md" tags="form,columns,column number,number of columns,minColWidth,span columns,size qualifier,screen resolution" root="true">
<article name="Fixed and Floating Number of Columns" sort="05 Fixed and Floating Number of Columns" id="UI Components/Form/Organize Simple Items/In Columns/Fixed and Floating Number of Columns" file="c:\content\05 UI Components\Form\10 Organize Simple Items\15 In Columns\05 Fixed and Floating Number of Columns.md" />
<article name="Span Columns" sort="10 Span Columns" id="UI Components/Form/Organize Simple Items/In Columns/Span Columns" file="c:\content\05 UI Components\Form\10 Organize Simple Items\15 In Columns\10 Span Columns.md" />
<article name="Layout Depending on the Screen Width" sort="15 Layout Depending on the Screen Width" id="UI Components/Form/Organize Simple Items/In Columns/Layout Depending on the Screen Width" file="c:\content\05 UI Components\Form\10 Organize Simple Items\15 In Columns\15 Layout Depending on the Screen Width.md" />
</article>
<article name="Add an Empty Space" sort="20 Add an Empty Space" id="UI Components/Form/Organize Simple Items/Add an Empty Space" file="c:\content\05 UI Components\Form\10 Organize Simple Items\20 Add an Empty Space.md" tags="form,empty item,empty space,colSpan" root="true" />
<article name="Add a Button" sort="25 Add a Button" id="UI Components/Form/Organize Simple Items/Add a Button" file="c:\content\05 UI Components\Form\10 Organize Simple Items\25 Add a Button.md" root="true" />
</article>
<article name="Configure Item Labels" sort="15 Configure Item Labels" id="UI Components/Form/Configure Item Labels">
<article name="Location and Alignment" sort="05 Location and Alignment" id="UI Components/Form/Configure Item Labels/Location and Alignment" file="c:\content\05 UI Components\Form\15 Configure Item Labels\05 Location and Alignment\Location and Alignment.md" tags="form,label,label location,label position,align,align groups" root="true">
<article name="Align Labels Relatively to Editors" sort="05 Align Labels Relatively to Editors" id="UI Components/Form/Configure Item Labels/Location and Alignment/Align Labels Relatively to Editors" file="c:\content\05 UI Components\Form\15 Configure Item Labels\05 Location and Alignment\05 Align Labels Relatively to Editors.md" />
<article name="Align Editors Relatively to Each Other" sort="10 Align Editors Relatively to Each Other" id="UI Components/Form/Configure Item Labels/Location and Alignment/Align Editors Relatively to Each Other" file="c:\content\05 UI Components\Form\15 Configure Item Labels\05 Location and Alignment\10 Align Editors Relatively to Each Other.md" />
</article>
<article name="Additional Marks" sort="10 Additional Marks" id="UI Components/Form/Configure Item Labels/Additional Marks" file="c:\content\05 UI Components\Form\15 Configure Item Labels\10 Additional Marks.md" tags="form,required,optional,mark,colon" root="true" />
</article>
<article name="Change Properties at Runtime" sort="20 Change Properties at Runtime" id="UI Components/Form/Change Properties at Runtime">
<article name="Form Properties" sort="05 Form Properties" id="UI Components/Form/Change Properties at Runtime/Form Properties" file="c:\content\05 UI Components\Form\20 Change Properties at Runtime\05 Form Properties.md" tags="form,UI component properties,change option" root="true" />
<article name="Item Properties" sort="10 Item Properties" id="UI Components/Form/Change Properties at Runtime/Item Properties" file="c:\content\05 UI Components\Form\20 Change Properties at Runtime\10 Item Properties.md" tags="form,modify item,item property,change property" root="true" />
<article name="Editor Properties" sort="15 Editor Properties" id="UI Components/Form/Change Properties at Runtime/Editor Properties" file="c:\content\05 UI Components\Form\20 Change Properties at Runtime\15 Editor Properties.md" tags="form,get editor,change editor options" root="true" />
</article>
<article name="Handle the Value Change Event" sort="25 Handle the Value Change Event" id="UI Components/Form/Handle the Value Change Event" file="c:\content\05 UI Components\Form\25 Handle the Value Change Event.md" tags="form,value change,get value,field data changed,fieldDataChanged" root="true" />
<article name="Update Form Data Using the API" sort="30 Update Form Data Using the API" id="UI Components/Form/Update Form Data Using the API" file="c:\content\05 UI Components\Form\30 Update Form Data Using the API.md" tags="form,form data,formData,change form data,update data,update form data" root="true" />
<article name="Generate a Data Object from Form Items" sort="35 Generate a Data Object from Form Items" id="UI Components/Form/Generate a Data Object from Form Items" file="c:\content\05 UI Components\Form\35 Generate a Data Object from Form Items.md" tags="form,generate data,generate data object" root="true" />
<article name="Validate and Submit the Form" sort="40 Validate and Submit the Form" id="UI Components/Form/Validate and Submit the Form" file="c:\content\05 UI Components\Form\40 Validate and Submit the Form.md" tags="form,validation,validation rules,validate,validation summary,validation group,validationGroup,submit form,submit behavior" root="true" />
</article>
<article name="Funnel" sort="Funnel" id="UI Components/Funnel">
<article name="Overview" sort="00 Overview" id="UI Components/Funnel/Overview" file="c:\content\05 UI Components\Funnel\00 Overview.md" tags="dxfunnel" root="true" />
<article name="Data Binding" sort="03 Data Binding" id="UI Components/Funnel/Data Binding">
<article name="Simple Array" sort="05 Simple Array" id="UI Components/Funnel/Data Binding/Simple Array">
<article name="Array Only" sort="05 Array Only" id="UI Components/Funnel/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\Funnel\03 Data Binding\05 Simple Array\05 Array Only.md" root="true" />
<article name="ArrayStore" sort="10 ArrayStore" id="UI Components/Funnel/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\Funnel\03 Data Binding\05 Simple Array\10 ArrayStore.md" root="true" />
</article>
<article name="JSON Data" sort="10 JSON Data" id="UI Components/Funnel/Data Binding/JSON Data" file="c:\content\05 UI Components\Funnel\03 Data Binding\10 JSON Data.md" root="true" />
<article name="OData Service" sort="15 OData Service" id="UI Components/Funnel/Data Binding/OData Service" file="c:\content\05 UI Components\Funnel\03 Data Binding\15 OData Service.md" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/Funnel/Data Binding/Web API Service" file="c:\content\05 UI Components\Funnel\03 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/Funnel/Data Binding/PHP Service" file="c:\content\05 UI Components\Funnel\03 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/Funnel/Data Binding/MongoDB Service" file="c:\content\05 UI Components\Funnel\03 Data Binding\18 MongoDB Service.md" root="true" />
<article name="Custom Sources" sort="20 Custom Sources" id="UI Components/Funnel/Data Binding/Custom Sources" file="c:\content\05 UI Components\Funnel\03 Data Binding\20 Custom Sources.md" root="true" />
<article name="Update Data" sort="26 Update Data" id="UI Components/Funnel/Data Binding/Update Data" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\Update Data.md" root="true">
<article name="DevExtreme DataSource" sort="01 DevExtreme DataSource" id="UI Components/Funnel/Data Binding/Update Data/DevExtreme DataSource" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\01 DevExtreme DataSource.md" />
<article name="JavaScript Array" sort="05 JavaScript Array" id="UI Components/Funnel/Data Binding/Update Data/JavaScript Array" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\05 JavaScript Array\JavaScript Array.md">
<article name="jQuery" sort="05 jQuery" id="UI Components/Funnel/Data Binding/Update Data/JavaScript Array/jQuery" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\05 JavaScript Array\05 jQuery.md" />
<article name="Angular" sort="07 Angular" id="UI Components/Funnel/Data Binding/Update Data/JavaScript Array/Angular" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\05 JavaScript Array\07 Angular.md" />
<article name="AngularJS" sort="10 AngularJS" id="UI Components/Funnel/Data Binding/Update Data/JavaScript Array/AngularJS" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\05 JavaScript Array\10 AngularJS.md" />
<article name="Knockout" sort="20 Knockout" id="UI Components/Funnel/Data Binding/Update Data/JavaScript Array/Knockout" file="c:\content\05 UI Components\Funnel\03 Data Binding\26 Update Data\05 JavaScript Array\20 Knockout.md" />
</article>
</article>
</article>
<article name="Pyramid Chart" sort="10 Pyramid Chart" id="UI Components/Funnel/Pyramid Chart" file="c:\content\05 UI Components\Funnel\10 Pyramid Chart.md" root="true" />
<article name="Funnel Items" sort="14 Funnel Items" id="UI Components/Funnel/Funnel Items">
<article name="Overview" sort="00 Overview" id="UI Components/Funnel/Funnel Items/Overview" file="c:\content\05 UI Components\Funnel\14 Funnel Items\00 Overview.md" root="true" />
<article name="Hover" sort="10 Hover" id="UI Components/Funnel/Funnel Items/Hover" file="c:\content\05 UI Components\Funnel\14 Funnel Items\10 Hover\Hover.md" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Funnel/Funnel Items/Hover/User Interaction" file="c:\content\05 UI Components\Funnel\14 Funnel Items\10 Hover\05 User Interaction.md" />
<article name="API" sort="07 API" id="UI Components/Funnel/Funnel Items/Hover/API" file="c:\content\05 UI Components\Funnel\14 Funnel Items\10 Hover\07 API.md" />
<article name="Events" sort="10 Events" id="UI Components/Funnel/Funnel Items/Hover/Events" file="c:\content\05 UI Components\Funnel\14 Funnel Items\10 Hover\10 Events.md" />
</article>
<article name="Selection" sort="20 Selection" id="UI Components/Funnel/Funnel Items/Selection" file="c:\content\05 UI Components\Funnel\14 Funnel Items\20 Selection\Selection.md" root="true">
<article name="API" sort="01 API" id="UI Components/Funnel/Funnel Items/Selection/API" file="c:\content\05 UI Components\Funnel\14 Funnel Items\20 Selection\01 API.md" />
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Funnel/Funnel Items/Selection/User Interaction" file="c:\content\05 UI Components\Funnel\14 Funnel Items\20 Selection\05 User Interaction.md" />
<article name="Events" sort="10 Events" id="UI Components/Funnel/Funnel Items/Selection/Events" file="c:\content\05 UI Components\Funnel\14 Funnel Items\20 Selection\10 Events.md" />
</article>
<article name="Access a Funnel Item Using the API" sort="25 Access a Funnel Item Using the API" id="UI Components/Funnel/Funnel Items/Access a Funnel Item Using the API" file="c:\content\05 UI Components\Funnel\14 Funnel Items\25 Access a Funnel Item Using the API.md" root="true" />
</article>
<article name="Item Labels" sort="17 Item Labels" id="UI Components/Funnel/Item Labels">
<article name="Overview" sort="00 Overview" id="UI Components/Funnel/Item Labels/Overview" file="c:\content\05 UI Components\Funnel\17 Item Labels\00 Overview.md" root="true" />
<article name="Customize Labels" sort="05 Customize Labels" id="UI Components/Funnel/Item Labels/Customize Labels" file="c:\content\05 UI Components\Funnel\17 Item Labels\05 Customize Labels.md" root="true" />
<article name="Relocate Labels" sort="07 Relocate Labels" id="UI Components/Funnel/Item Labels/Relocate Labels" file="c:\content\05 UI Components\Funnel\17 Item Labels\07 Relocate Labels.md" root="true" />
</article>
<article name="Tooltips" sort="30 Tooltips" id="UI Components/Funnel/Tooltips">
<article name="Overview" sort="00 Overview" id="UI Components/Funnel/Tooltips/Overview" file="c:\content\05 UI Components\Funnel\30 Tooltips\00 Overview.md" root="true" />
<article name="Show and Hide a Tooltip" sort="10 Show and Hide a Tooltip" id="UI Components/Funnel/Tooltips/Show and Hide a Tooltip" file="c:\content\05 UI Components\Funnel\30 Tooltips\10 Show and Hide a Tooltip.md" root="true" />
</article>
<article name="Legend" sort="35 Legend" id="UI Components/Funnel/Legend">
<article name="Overview" sort="00 Overview" id="UI Components/Funnel/Legend/Overview" file="c:\content\05 UI Components\Funnel\35 Legend\00 Overview.md" root="true" />
<article name="Relocate the Legend" sort="10 Relocate the Legend" id="UI Components/Funnel/Legend/Relocate the Legend" file="c:\content\05 UI Components\Funnel\35 Legend\10 Relocate the Legend.md" root="true" />
<article name="Rearrange Legend Items" sort="20 Rearrange Legend Items" id="UI Components/Funnel/Legend/Rearrange Legend Items" file="c:\content\05 UI Components\Funnel\35 Legend\20 Rearrange Legend Items.md" root="true" />
<article name="User Interaction" sort="30 User Interaction" id="UI Components/Funnel/Legend/User Interaction" file="c:\content\05 UI Components\Funnel\35 Legend\30 User Interaction.md" root="true" />
</article>
<article name="Title and Subtitle" sort="58 Title and Subtitle" id="UI Components/Funnel/Title and Subtitle" file="c:\content\05 UI Components\Funnel\58 Title and Subtitle.md" root="true" />
<article name="Adaptive Layout" sort="89 Adaptive Layout" id="UI Components/Funnel/Adaptive Layout" file="c:\content\05 UI Components\Funnel\89 Adaptive Layout.md" root="true" />
<article name="Client-Side Exporting and Printing" sort="99 Client-Side Exporting and Printing" id="UI Components/Funnel/Client-Side Exporting and Printing" file="c:\content\05 UI Components\Funnel\99 Client-Side Exporting and Printing\Client-Side Exporting and Printing.md" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/Funnel/Client-Side Exporting and Printing/User Interaction" file="c:\content\05 UI Components\Funnel\99 Client-Side Exporting and Printing\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/Funnel/Client-Side Exporting and Printing/API" file="c:\content\05 UI Components\Funnel\99 Client-Side Exporting and Printing\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/Funnel/Client-Side Exporting and Printing/Events" file="c:\content\05 UI Components\Funnel\99 Client-Side Exporting and Printing\10 Events.md" />
</article>
</article>
<article name="Gallery" sort="Gallery" id="UI Components/Gallery">
<article name="Overview" sort="00 Overview" id="UI Components/Gallery/Overview" file="c:\content\05 UI Components\Gallery\00 Overview.md" tags="dxgallery,gallery,overview" root="true" />
<article name="Switch Between Images" sort="05 Switch Between Images" id="UI Components/Gallery/Switch Between Images" file="c:\content\05 UI Components\Gallery\05 Switch Between Images\Switch Between Images.md" tags="gallery,next item,previous item,go to,navigate,swipe,disable swiping,bullets navigation,dots navigation,indicator,navigation buttons,next and previous" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/Gallery/Switch Between Images/User Interaction" file="c:\content\05 UI Components\Gallery\05 Switch Between Images\05 User Interaction.md" />
<article name="API" sort="10 API" id="UI Components/Gallery/Switch Between Images/API" file="c:\content\05 UI Components\Gallery\05 Switch Between Images\10 API.md" />
</article>
<article name="Set the Initial Image" sort="10 Set the Initial Image" id="UI Components/Gallery/Set the Initial Image" file="c:\content\05 UI Components\Gallery\10 Set the Initial Image.md" tags="gallery,initial image,selected image,selectedIndex,selectedItem" root="true" />
<article name="Enable the Slideshow" sort="15 Enable the Slideshow" id="UI Components/Gallery/Enable the Slideshow" file="c:\content\05 UI Components\Gallery\15 Enable the Slideshow.md" tags="gallery,loop,slideshow,slideshowDelay" root="true" />
<article name="Animate the Image Change" sort="20 Animate the Image Change" id="UI Components/Gallery/Animate the Image Change" file="c:\content\05 UI Components\Gallery\20 Animate the Image Change.md" tags="gallery,animate,animation duration,disable animation" root="true" />
<article name="Transform and Combine Images" sort="25 Transform and Combine Images" id="UI Components/Gallery/Transform and Combine Images" file="c:\content\05 UI Components\Gallery\25 Transform and Combine Images.md" tags="gallery,item width,show several images,stretch image" root="true" />
<article name="Customize Item Appearance" sort="30 Customize Item Appearance" id="UI Components/Gallery/Customize Item Appearance" file="c:\content\05 UI Components\Gallery\30 Customize Item Appearance.md" tags="gallery,item appearance,customize,templates" root="true" />
<article name="Keyboard Support" sort="35 Keyboard Support" id="UI Components/Gallery/Keyboard Support" file="c:\content\05 UI Components\Gallery\35 Keyboard Support.md" tags="gallery,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="Gantt" sort="Gantt" id="UI Components/Gantt">
<article name="Getting Started with Gantt" sort="00 Getting Started with Gantt" id="UI Components/Gantt/Getting Started with Gantt" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\00 Getting Started with Gantt.md" tags="dxgantt" root="true">
<article name="Add the Gantt Component to a Page" sort="10 Add the Gantt Component to a Page" id="UI Components/Gantt/Getting Started with Gantt/Add the Gantt Component to a Page" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\10 Add the Gantt Component to a Page.md" />
<article name="Bind the Gantt to Data" sort="20 Bind the Gantt to Data" id="UI Components/Gantt/Getting Started with Gantt/Bind the Gantt to Data" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\20 Bind the Gantt to Data.md" />
<article name="Add Columns to the Gantt" sort="30 Add Columns to the Gantt" id="UI Components/Gantt/Getting Started with Gantt/Add Columns to the Gantt" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\30 Add Columns to the Gantt.md" />
<article name="Enable Editing" sort="40 Enable Editing" id="UI Components/Gantt/Getting Started with Gantt/Enable Editing" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\40 Enable Editing.md" />
<article name="Preselect a Task" sort="50 Preselect a Task" id="UI Components/Gantt/Getting Started with Gantt/Preselect a Task" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\50 Preselect a Task.md" />
<article name="Handle the Selection Change Event" sort="60 Handle the Selection Change Event" id="UI Components/Gantt/Getting Started with Gantt/Handle the Selection Change Event" file="c:\content\05 UI Components\Gantt\00 Getting Started with Gantt\60 Handle the Selection Change Event.md" />
</article>
<article name="Gantt Elements" sort="10 Gantt Elements" id="UI Components/Gantt/Gantt Elements" file="c:\content\05 UI Components\Gantt\10 Gantt Elements\00 Gantt Elements.md" root="true">
<article name="Task" sort="10 Task" id="UI Components/Gantt/Gantt Elements/Task" file="c:\content\05 UI Components\Gantt\10 Gantt Elements\10 Task.md" />
<article name="Dependency" sort="20 Dependency" id="UI Components/Gantt/Gantt Elements/Dependency" file="c:\content\05 UI Components\Gantt\10 Gantt Elements\20 Dependency.md" />
<article name="Resource" sort="30 Resource" id="UI Components/Gantt/Gantt Elements/Resource" file="c:\content\05 UI Components\Gantt\10 Gantt Elements\30 Resource.md" />
</article>
</article>
<article name="HtmlEditor" sort="HtmlEditor" id="UI Components/HtmlEditor">
<article name="Overview" sort="00 Overview" id="UI Components/HtmlEditor/Overview" file="c:\content\05 UI Components\HtmlEditor\00 Overview.md" tags="dxhtmleditor" root="true" />
<article name="Tags and Attributes" sort="05 Tags and Attributes" id="UI Components/HtmlEditor/Tags and Attributes" file="c:\content\05 UI Components\HtmlEditor\05 Tags and Attributes.md" root="true" />
<article name="Formats" sort="10 Formats" id="UI Components/HtmlEditor/Formats" file="c:\content\05 UI Components\HtmlEditor\10 Formats\10 Formats.md" root="true">
<article name="Format the Content Programmatically" sort="20 Format the Content Programmatically" id="UI Components/HtmlEditor/Formats/Format the Content Programmatically" file="c:\content\05 UI Components\HtmlEditor\10 Formats\20 Format the Content Programmatically.md" />
<article name="Customize Built-In Formats and Modules" sort="33 Customize Built-In Formats and Modules" id="UI Components/HtmlEditor/Formats/Customize Built-In Formats and Modules" file="c:\content\05 UI Components\HtmlEditor\10 Formats\33 Customize Built-In Formats and Modules\Customize Built-In Formats and Modules.md">
<article name="Modify" sort="10 Modify" id="UI Components/HtmlEditor/Formats/Customize Built-In Formats and Modules/Modify" file="c:\content\05 UI Components\HtmlEditor\10 Formats\33 Customize Built-In Formats and Modules\10 Modify.md" />
<article name="Extend" sort="20 Extend" id="UI Components/HtmlEditor/Formats/Customize Built-In Formats and Modules/Extend" file="c:\content\05 UI Components\HtmlEditor\10 Formats\33 Customize Built-In Formats and Modules\20 Extend.md" />
</article>
</article>
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/HtmlEditor/Keyboard Support" file="c:\content\05 UI Components\HtmlEditor\20 Keyboard Support.md" tags="HTML Editor,HtmlEditor,accessibility,keyboard shortcuts" root="true" />
<article name="Toolbar" sort="20 Toolbar" id="UI Components/HtmlEditor/Toolbar">
<article name="Predefined Items" sort="00 Predefined Items" id="UI Components/HtmlEditor/Toolbar/Predefined Items" file="c:\content\05 UI Components\HtmlEditor\20 Toolbar\00 Predefined Items\00 Predefined Items.md" root="true">
<article name="Customize Predefined Items" sort="10 Customize Predefined Items" id="UI Components/HtmlEditor/Toolbar/Predefined Items/Customize Predefined Items" file="c:\content\05 UI Components\HtmlEditor\20 Toolbar\00 Predefined Items\10 Customize Predefined Items.md" />
</article>
<article name="Add a Custom Item" sort="20 Add a Custom Item" id="UI Components/HtmlEditor/Toolbar/Add a Custom Item" file="c:\content\05 UI Components\HtmlEditor\20 Toolbar\20 Add a Custom Item.md" root="true" />
<article name="Relocate an Item" sort="30 Relocate an Item" id="UI Components/HtmlEditor/Toolbar/Relocate an Item" file="c:\content\05 UI Components\HtmlEditor\20 Toolbar\30 Relocate an Item.md" root="true" />
<article name="Relocate the Toolbar" sort="35 Relocate the Toolbar" id="UI Components/HtmlEditor/Toolbar/Relocate the Toolbar" file="c:\content\05 UI Components\HtmlEditor\20 Toolbar\35 Relocate the Toolbar.md" root="true" />
</article>
</article>
<article name="LinearGauge" sort="LinearGauge" id="UI Components/LinearGauge">
<article name="Visual Elements" sort="10 Visual Elements" id="UI Components/LinearGauge/Visual Elements" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\Visual Elements.md" root="true">
<article name="Value Indicator" sort="20 Value Indicator" id="UI Components/LinearGauge/Visual Elements/Value Indicator" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\20 Value Indicator.md" />
<article name="Subvalue Indicators" sort="30 Subvalue Indicators" id="UI Components/LinearGauge/Visual Elements/Subvalue Indicators" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\30 Subvalue Indicators.md" />
<article name="Scale Ticks" sort="40 Scale Ticks" id="UI Components/LinearGauge/Visual Elements/Scale Ticks" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\40 Scale Ticks.md" />
<article name="Scale Labels" sort="50 Scale Labels" id="UI Components/LinearGauge/Visual Elements/Scale Labels" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\50 Scale Labels.md" />
<article name="Range Container" sort="60 Range Container" id="UI Components/LinearGauge/Visual Elements/Range Container" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\60 Range Container.md" />
<article name="Tooltips" sort="70 Tooltips" id="UI Components/LinearGauge/Visual Elements/Tooltips" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\70 Tooltips.md" />
<article name="Title and Subtitle" sort="80 Title and Subtitle" id="UI Components/LinearGauge/Visual Elements/Title and Subtitle" file="c:\content\05 UI Components\LinearGauge\10 Visual Elements\80 Title and Subtitle.md" />
</article>
</article>
<article name="List" sort="List" id="UI Components/List">
<article name="Overview" sort="00 Overview" id="UI Components/List/Overview" file="c:\content\05 UI Components\List\00 Overview.md" tags="dxlist,list,overview" root="true" />
<article name="Data Binding" sort="03 Data Binding" id="UI Components/List/Data Binding">
<article name="Simple Array" sort="05 Simple Array" id="UI Components/List/Data Binding/Simple Array">
<article name="Array Only" sort="05 Array Only" id="UI Components/List/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\List\03 Data Binding\05 Simple Array\05 Array Only.md" tags="list,data binding,provide data,array,process data,query" root="true" />
<article name="ArrayStore" sort="10 ArrayStore" id="UI Components/List/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\List\03 Data Binding\05 Simple Array\10 ArrayStore.md" tags="list,data binding,provide data,ArrayStore,DataSource,process data" root="true" />
</article>
<article name="JSON Data" sort="10 JSON Data" id="UI Components/List/Data Binding/JSON Data" file="c:\content\05 UI Components\List\03 Data Binding\10 JSON Data.md" tags="list,data binding,provide data,json,jsonp" root="true" />
<article name="OData Service" sort="15 OData Service" id="UI Components/List/Data Binding/OData Service" file="c:\content\05 UI Components\List\03 Data Binding\15 OData Service.md" tags="list,data binding,provide data,odata,ODataStore,DataSource,process data" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/List/Data Binding/Web API Service" file="c:\content\05 UI Components\List\03 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/List/Data Binding/PHP Service" file="c:\content\05 UI Components\List\03 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/List/Data Binding/MongoDB Service" file="c:\content\05 UI Components\List\03 Data Binding\18 MongoDB Service.md" root="true" />
<article name="Custom Sources" sort="20 Custom Sources" id="UI Components/List/Data Binding/Custom Sources" file="c:\content\05 UI Components\List\03 Data Binding\20 Custom Sources.md" tags="list,data binding,provide data,custom data source,CustomStore,DataSource,load" root="true" />
<article name="Access the DataSource" sort="30 Access the DataSource" id="UI Components/List/Data Binding/Access the DataSource" file="c:\content\05 UI Components\List\03 Data Binding\30 Access the DataSource.md" tags="list,data binding,access data source,getDataSource,reload data" root="true" />
</article>
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/List/Customize Item Appearance" file="c:\content\05 UI Components\List\05 Customize Item Appearance.md" tags="list,item appearance,customize,templates,template" root="true" />
<article name="Paging" sort="08 Paging" id="UI Components/List/Paging" file="c:\content\05 UI Components\List\08 Paging.md" tags="list,paging,paginate,pageSize,pageLoadMode" root="true" />
<article name="Grouping" sort="14 Grouping" id="UI Components/List/Grouping">
<article name="In the Data Source" sort="01 In the Data Source" id="UI Components/List/Grouping/In the Data Source" file="c:\content\05 UI Components\List\14 Grouping\01 In the Data Source.md" tags="list,grouped,key,items,group items,map items" root="true" />
<article name="Customize Group Headers" sort="05 Customize Group Headers" id="UI Components/List/Grouping/Customize Group Headers" file="c:\content\05 UI Components\List\14 Grouping\05 Customize Group Headers.md" tags="list,group headers appearance,customize,templates,template" root="true" />
<article name="Expand and Collapse a Group" sort="10 Expand and Collapse a Group" id="UI Components/List/Grouping/Expand and Collapse a Group" file="c:\content\05 UI Components\List\14 Grouping\10 Expand and Collapse a Group.md" tags="list,expand,collapse,collapsibleGroups,collapseGroup,expandGroup" root="true" />
</article>
<article name="Scrolling" sort="20 Scrolling" id="UI Components/List/Scrolling" file="c:\content\05 UI Components\List\20 Scrolling\Scrolling.md" tags="list,swipe,disable swiping,scrollbar,scroll bar,scrollByContent,scrollByThumb,native scrolling,useNativeScrolling,disable scrolling,bounce effect,bounceEnabled,scroll to item,scroll to dom node,get content height,scroll to location,scroll to position,handle scroll" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/List/Scrolling/User Interaction" file="c:\content\05 UI Components\List\20 Scrolling\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/List/Scrolling/API" file="c:\content\05 UI Components\List\20 Scrolling\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/List/Scrolling/Events" file="c:\content\05 UI Components\List\20 Scrolling\10 Events.md" />
</article>
<article name="Selection" sort="25 Selection" id="UI Components/List/Selection" file="c:\content\05 UI Components\List\25 Selection\Selection.md" tags="list,enable selection,selection mode,selectionMode,show check boxes,showSelectionControls,select all mode,selectAllMode,select by key,selectedItemKeys,select by data object,selectedItems,select by index,select by dom node,selectItem,unselect item,deselect item,cancel the selection,unselectItem,check if item is selected,handle selection change,onSelectionChanged,handle select all change,onSelectAllValueChanged" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/List/Selection/User Interaction" file="c:\content\05 UI Components\List\25 Selection\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/List/Selection/API" file="c:\content\05 UI Components\List\25 Selection\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/List/Selection/Events" file="c:\content\05 UI Components\List\25 Selection\10 Events.md" />
</article>
<article name="Searching" sort="27 Searching" id="UI Components/List/Searching" file="c:\content\05 UI Components\List\27 Searching.md" tags="list,collection UI component,search,search mode,search expression" root="true" />
<article name="Item Reordering" sort="30 Item Reordering" id="UI Components/List/Item Reordering" file="c:\content\05 UI Components\List\30 Item Reordering\Item Reordering.md" tags="list,enable item reordering,allowItemReordering,reorder by index,reorder by dom node,reorderItem,handle item reorder,onItemReordered" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/List/Item Reordering/User Interaction" file="c:\content\05 UI Components\List\30 Item Reordering\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/List/Item Reordering/API" file="c:\content\05 UI Components\List\30 Item Reordering\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/List/Item Reordering/Events" file="c:\content\05 UI Components\List\30 Item Reordering\10 Events.md" />
</article>
<article name="Item Deletion" sort="35 Item Deletion" id="UI Components/List/Item Deletion" file="c:\content\05 UI Components\List\35 Item Deletion\Item Deletion.md" tags="list,enable delete,allowItemDeleting,delete mode,itemDeleteMode,delete by index,delete by dom node,deleteItem,handle item delete,onItemDeleting,onItemDeleted" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/List/Item Deletion/User Interaction" file="c:\content\05 UI Components\List\35 Item Deletion\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/List/Item Deletion/API" file="c:\content\05 UI Components\List\35 Item Deletion\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/List/Item Deletion/Events" file="c:\content\05 UI Components\List\35 Item Deletion\10 Events.md" />
</article>
<article name="Item Context Menu" sort="40 Item Context Menu" id="UI Components/List/Item Context Menu" file="c:\content\05 UI Components\List\40 Item Context Menu.md" tags="list,context menu,menuItems,context menu mode,menuMode" root="true" />
<article name="End-User Interaction" sort="45 End-User Interaction" id="UI Components/List/End-User Interaction">
<article name="Touch-Screen Gestures" sort="01 Touch-Screen Gestures" id="UI Components/List/End-User Interaction/Touch-Screen Gestures" file="c:\content\05 UI Components\List\45 End-User Interaction\01 Touch-Screen Gestures.md" tags="list,touch-screen gestures,swipe,slide,onItemSwipe,long tap,long press,tap hold,onItemHold,itemHoldTimeout,pull down to refresh,pull to refresh,pullRefreshEnabled,onPullRefresh" root="true" />
<article name="Universal Actions" sort="05 Universal Actions" id="UI Components/List/End-User Interaction/Universal Actions" file="c:\content\05 UI Components\List\45 End-User Interaction\05 Universal Actions.md" tags="list,item click,onItemClick" root="true" />
</article>
<article name="Localization" sort="50 Localization" id="UI Components/List/Localization" file="c:\content\05 UI Components\List\50 Localization.md" tags="list,localization,translation,localization keys,localize messages,localize texts" root="true" />
<article name="Keyboard Support" sort="70 Keyboard Support" id="UI Components/List/Keyboard Support" file="c:\content\05 UI Components\List\70 Keyboard Support.md" tags="list,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="LoadIndicator" sort="LoadIndicator" id="UI Components/LoadIndicator">
<article name="Overview" sort="00 Overview" id="UI Components/LoadIndicator/Overview" file="c:\content\05 UI Components\LoadIndicator\00 Overview.md" tags="dxloadindicator,loadIndicator,load indicator,loading indicator,overview,overlay" root="true" />
<article name="Show and Hide Using the API" sort="05 Show and Hide Using the API" id="UI Components/LoadIndicator/Show and Hide Using the API" file="c:\content\05 UI Components\LoadIndicator\05 Show and Hide Using the API.md" tags="loadIndicator,load indicator,loading indicator,overlay,show,hide,open,close,showing,shown,hiding,hidden" root="true" />
</article>
<article name="LoadPanel" sort="LoadPanel" id="UI Components/LoadPanel">
<article name="Overview" sort="00 Overview" id="UI Components/LoadPanel/Overview" file="c:\content\05 UI Components\LoadPanel\00 Overview.md" tags="dxloadpanel,loadPanel,load panel,overview,overlay" root="true" />
<article name="Show and Hide Using the API" sort="05 Show and Hide Using the API" id="UI Components/LoadPanel/Show and Hide Using the API" file="c:\content\05 UI Components\LoadPanel\05 Show and Hide Using the API.md" tags="loadPanel,load panel,overlay,show,hide,open,close,showing,shown,hiding,hidden" root="true" />
<article name="Customize the Appearance" sort="10 Customize the Appearance" id="UI Components/LoadPanel/Customize the Appearance">
<article name="Customize the Loading Indicator" sort="10 Customize the Loading Indicator" id="UI Components/LoadPanel/Customize the Appearance/Customize the Loading Indicator" file="c:\content\05 UI Components\LoadPanel\10 Customize the Appearance\10 Customize the Loading Indicator.md" tags="loadPanel,load panel,overlay,loading indicator,customize indicator,hide indicator" root="true" />
<article name="Change the Text" sort="20 Change the Text" id="UI Components/LoadPanel/Customize the Appearance/Change the Text" file="c:\content\05 UI Components\LoadPanel\10 Customize the Appearance\20 Change the Text.md" tags="loadPanel,load panel,overlay,load panel text" root="true" />
<article name="Hide the Pane" sort="30 Hide the Pane" id="UI Components/LoadPanel/Customize the Appearance/Hide the Pane" file="c:\content\05 UI Components\LoadPanel\10 Customize the Appearance\30 Hide the Pane.md" tags="loadPanel,load panel,overlay,load panel pane,hide pane" root="true" />
<article name="Color the Shading of the Background" sort="40 Color the Shading of the Background" id="UI Components/LoadPanel/Customize the Appearance/Color the Shading of the Background" file="c:\content\05 UI Components\LoadPanel\10 Customize the Appearance\40 Color the Shading of the Background.md" tags="loadPanel,load panel,overlay,load panel shading,background,shading color" root="true" />
</article>
<article name="Resize and Relocate" sort="15 Resize and Relocate" id="UI Components/LoadPanel/Resize and Relocate" file="c:\content\05 UI Components\LoadPanel\15 Resize and Relocate.md" tags="loadPanel,load panel,overlay,size,height,width,position" root="true" />
</article>
<article name="Lookup" sort="Lookup" id="UI Components/Lookup">
<article name="Overview" sort="00 Overview" id="UI Components/Lookup/Overview" file="c:\content\05 UI Components\Lookup\00 Overview.md" tags="dxlookup,lookup,overview,data source,value,display expression,displayExpr,valueExpr" root="true" />
<article name="Data Binding" sort="03 Data Binding" id="UI Components/Lookup/Data Binding">
<article name="Simple Array" sort="05 Simple Array" id="UI Components/Lookup/Data Binding/Simple Array">
<article name="Array Only" sort="05 Array Only" id="UI Components/Lookup/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\Lookup\03 Data Binding\05 Simple Array\05 Array Only.md" tags="lookup,data binding,provide data,array,process data,query" root="true" />
<article name="ArrayStore" sort="10 ArrayStore" id="UI Components/Lookup/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\Lookup\03 Data Binding\05 Simple Array\10 ArrayStore.md" tags="Lookup,data binding,provide data,ArrayStore,DataSource,process data" root="true" />
</article>
<article name="JSON Data" sort="10 JSON Data" id="UI Components/Lookup/Data Binding/JSON Data" file="c:\content\05 UI Components\Lookup\03 Data Binding\10 JSON Data.md" tags="Lookup,data binding,provide data,json,jsonp" root="true" />
<article name="OData Service" sort="15 OData Service" id="UI Components/Lookup/Data Binding/OData Service" file="c:\content\05 UI Components\Lookup\03 Data Binding\15 OData Service.md" tags="Lookup,data binding,provide data,odata,ODataStore,DataSource,process data" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/Lookup/Data Binding/Web API Service" file="c:\content\05 UI Components\Lookup\03 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/Lookup/Data Binding/PHP Service" file="c:\content\05 UI Components\Lookup\03 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/Lookup/Data Binding/MongoDB Service" file="c:\content\05 UI Components\Lookup\03 Data Binding\18 MongoDB Service.md" root="true" />
<article name="Custom Sources" sort="20 Custom Sources" id="UI Components/Lookup/Data Binding/Custom Sources" file="c:\content\05 UI Components\Lookup\03 Data Binding\20 Custom Sources.md" tags="lookup,data binding,provide data,custom data source,CustomStore,DataSource,load" root="true" />
<article name="Access the DataSource" sort="30 Access the DataSource" id="UI Components/Lookup/Data Binding/Access the DataSource" file="c:\content\05 UI Components\Lookup\03 Data Binding\30 Access the DataSource.md" tags="Lookup,data binding,access data source,getDataSource,reload data" root="true" />
</article>
<article name="Configure Search Parameters" sort="05 Configure Search Parameters" id="UI Components/Lookup/Configure Search Parameters" file="c:\content\05 UI Components\Lookup\05 Configure Search Parameters.md" tags="lookup,search,search mode,time interval,min search length,disable searching,placeholder,clean search parameters,searchExpr" root="true" />
<article name="Enable Grouping" sort="10 Enable Grouping" id="UI Components/Lookup/Enable Grouping" file="c:\content\05 UI Components\Lookup\10 Enable Grouping.md" tags="lookup,group,group template,customize" root="true" />
<article name="Enable Paging" sort="15 Enable Paging" id="UI Components/Lookup/Enable Paging" file="c:\content\05 UI Components\Lookup\15 Enable Paging.md" tags="lookup,paginate,page size,pageSize,loading mode" root="true" />
<article name="Customize the Appearance" sort="20 Customize the Appearance" id="UI Components/Lookup/Customize the Appearance">
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/Lookup/Customize the Appearance/Customize Item Appearance" file="c:\content\05 UI Components\Lookup\20 Customize the Appearance\05 Customize Item Appearance.md" tags="lookup,item appearance,customize,templates,template,field template" root="true" />
<article name="Customize the Drop-Down Menu" sort="08 Customize the Drop-Down Menu" id="UI Components/Lookup/Customize the Appearance/Customize the Drop-Down Menu" file="c:\content\05 UI Components\Lookup\20 Customize the Appearance\08 Customize the Drop-Down Menu.md" tags="lookup,drop-down menu,size,width,height,popover,popup,position,title,custom title template,title template" root="true" />
</article>
<article name="Handle the Value Change Event" sort="25 Handle the Value Change Event" id="UI Components/Lookup/Handle the Value Change Event" file="c:\content\05 UI Components\Lookup\25 Handle the Value Change Event.md" tags="lookup,change value,valueChangeEvent,valueChanged,apply mode,apply value,apply instantly,use buttons" root="true" />
<article name="Keyboard Support" sort="30 Keyboard Support" id="UI Components/Lookup/Keyboard Support" file="c:\content\05 UI Components\Lookup\30 Keyboard Support.md" tags="lookup,accessibility,keyboard shortcuts" root="true" />
<article name="Lookup vs SelectBox" sort="35 Lookup vs SelectBox" id="UI Components/Lookup/Lookup vs SelectBox" file="c:\content\05 UI Components\Lookup\35 Lookup vs SelectBox.md" root="true" />
</article>
<article name="Map" sort="Map" id="UI Components/Map">
<article name="Overview" sort="00 Overview" id="UI Components/Map/Overview" file="c:\content\05 UI Components\Map\00 Overview.md" tags="dxmap,map,center,central position,zoom level,controls" root="true" />
<article name="Zoom and Center the Map" sort="05 Zoom and Center the Map" id="UI Components/Map/Zoom and Center the Map" file="c:\content\05 UI Components\Map\05 Zoom and Center the Map.md" tags="map,center,central position,zoom level,center,zoom" root="true" />
<article name="Specify the Provider and Type" sort="10 Specify the Provider and Type" id="UI Components/Map/Specify the Provider and Type" file="c:\content\05 UI Components\Map\10 Specify the Provider and Type.md" tags="map,provider,bing,google,api key,map type,hybrid,road map,satellite" root="true" />
<article name="Specify the Size" sort="15 Specify the Size" id="UI Components/Map/Specify the Size" file="c:\content\05 UI Components\Map\15 Specify the Size.md" tags="map,size,height,width,css" root="true" />
<article name="Configure Markers" sort="20 Configure Markers" id="UI Components/Map/Configure Markers">
<article name="Add and Remove" sort="05 Add and Remove" id="UI Components/Map/Configure Markers/Add and Remove" file="c:\content\05 UI Components\Map\20 Configure Markers\05 Add and Remove.md" tags="map,markers,location,add marker,remove marker,add on click" root="true" />
<article name="Customize" sort="10 Customize" id="UI Components/Map/Configure Markers/Customize" file="c:\content\05 UI Components\Map\20 Configure Markers\10 Customize.md" tags="map,marker icon,customize marker,tooltip,marker click" root="true" />
<article name="Handle the Related Events" sort="15 Handle the Related Events" id="UI Components/Map/Configure Markers/Handle the Related Events" file="c:\content\05 UI Components\Map\20 Configure Markers\15 Handle the Related Events.md" tags="map,marker added,marker removed,markerAdded event,markerRemoved event" root="true" />
</article>
<article name="Configure Routes" sort="25 Configure Routes" id="UI Components/Map/Configure Routes">
<article name="Add and Remove" sort="05 Add and Remove" id="UI Components/Map/Configure Routes/Add and Remove" file="c:\content\05 UI Components\Map\25 Configure Routes\05 Add and Remove.md" tags="map,routes,location,add route,remove route" root="true" />
<article name="Customize" sort="10 Customize" id="UI Components/Map/Configure Routes/Customize" file="c:\content\05 UI Components\Map\25 Configure Routes\10 Customize.md" tags="map,route,opacity,thickness,weight,color,mode" root="true" />
<article name="Handle the Related Events" sort="15 Handle the Related Events" id="UI Components/Map/Configure Routes/Handle the Related Events" file="c:\content\05 UI Components\Map\25 Configure Routes\15 Handle the Related Events.md" tags="map,route added,Route removed,routeAdded event,routeRemoved event" root="true" />
</article>
</article>
<article name="Menu" sort="Menu" id="UI Components/Menu">
<article name="Overview" sort="00 Overview" id="UI Components/Menu/Overview" file="c:\content\05 UI Components\Menu\00 Overview.md" tags="dxmenu,menu,navigation,collection container,collection UI component,overview" root="true" />
<article name="Access the Clicked Item" sort="03 Access the Clicked Item" id="UI Components/Menu/Access the Clicked Item" file="c:\content\05 UI Components\Menu\03 Access the Clicked Item.md" tags="menu,access the clicked item,onItemClick,itemClick" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/Menu/Customize Item Appearance" file="c:\content\05 UI Components\Menu\05 Customize Item Appearance.md" tags="menu,item appearance,customize,templates" root="true" />
<article name="Change the Orientation" sort="10 Change the Orientation" id="UI Components/Menu/Change the Orientation" file="c:\content\05 UI Components\Menu\10 Change the Orientation.md" tags="menu,orientation,direction,position,padding" root="true" />
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/Menu/Keyboard Support" file="c:\content\05 UI Components\Menu\15 Keyboard Support.md" tags="menu,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="MultiView" sort="MultiView" id="UI Components/MultiView">
<article name="Overview" sort="00 Overview" id="UI Components/MultiView/Overview" file="c:\content\05 UI Components\MultiView\00 Overview.md" tags="dxmultiview,multi view,multiView,collection container,collection UI component,navigation,overview" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/MultiView/Customize Item Appearance" file="c:\content\05 UI Components\MultiView\05 Customize Item Appearance.md" tags="multi view,multiView,item appearance,customize,templates,template,custom template" root="true" />
<article name="Switch Between Views" sort="10 Switch Between Views" id="UI Components/MultiView/Switch Between Views" file="c:\content\05 UI Components\MultiView\10 Switch Between Views.md" tags="multi view,multiView,views,switch,swipe,animate" root="true" />
<article name="Loop the Views" sort="15 Loop the Views" id="UI Components/MultiView/Loop the Views" file="c:\content\05 UI Components\MultiView\15 Loop the Views.md" tags="multi view,multiView,views,loop" root="true" />
</article>
<article name="NavBar" sort="NavBar" id="UI Components/NavBar">
<article name="Overview" sort="00 Overview" id="UI Components/NavBar/Overview" file="c:\content\05 UI Components\NavBar\00 Overview.md" tags="dxnavbar,nav bar,navBar,navigation bar,collection container,collection UI component,navigation,overview" root="true" />
<article name="Customize Item Appearance" sort="05 Customize Item Appearance" id="UI Components/NavBar/Customize Item Appearance" file="c:\content\05 UI Components\NavBar\05 Customize Item Appearance.md" tags="nav bar,navBar,navigation bar,item appearance,customize,templates,template,custom template" root="true" />
<article name="Items Selection" sort="10 Items Selection" id="UI Components/NavBar/Items Selection" file="c:\content\05 UI Components\NavBar\10 Items Selection.md" tags="nav bar,navBar,navigation bar,select,selection,item,items,index" root="true" />
<article name="Keyboard Support" sort="15 Keyboard Support" id="UI Components/NavBar/Keyboard Support" file="c:\content\05 UI Components\NavBar\15 Keyboard Support.md" tags="nav bar,navBar,navigation bar,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="NumberBox" sort="NumberBox" id="UI Components/NumberBox">
<article name="Overview" sort="00 Overview" id="UI Components/NumberBox/Overview" file="c:\content\05 UI Components\NumberBox\00 Overview.md" tags="dxnumberbox,number box,numberBox,editor,overview" root="true" />
<article name="Handle the Value Change Event" sort="10 Handle the Value Change Event" id="UI Components/NumberBox/Handle the Value Change Event" file="c:\content\05 UI Components\NumberBox\10 Handle the Value Change Event.md" tags="number box,numberBox,editor,get value,set value,change value,valueChangeEvent,valueChanged" root="true" />
<article name="Control the Behavior" sort="15 Control the Behavior" id="UI Components/NumberBox/Control the Behavior" file="c:\content\05 UI Components\NumberBox\15 Control the Behavior.md" tags="number box,numberBox,editor,spin buttons,showSpinButtons,step" root="true" />
<article name="Keyboard Support" sort="20 Keyboard Support" id="UI Components/NumberBox/Keyboard Support" file="c:\content\05 UI Components\NumberBox\20 Keyboard Support.md" tags="number box,numberBox,navigation,accessibility,keyboard shortcuts" root="true" />
</article>
<article name="PieChart" sort="PieChart" id="UI Components/PieChart">
<article name="Overview" sort="00 Overview" id="UI Components/PieChart/Overview" file="c:\content\05 UI Components\PieChart\00 Overview.md" tags="dxpiechart" root="true" />
<article name="Data Binding" sort="03 Data Binding" id="UI Components/PieChart/Data Binding">
<article name="Simple Array" sort="05 Simple Array" id="UI Components/PieChart/Data Binding/Simple Array">
<article name="Array Only" sort="05 Array Only" id="UI Components/PieChart/Data Binding/Simple Array/Array Only" file="c:\content\05 UI Components\PieChart\03 Data Binding\05 Simple Array\05 Array Only.md" root="true" />
<article name="ArrayStore" sort="10 ArrayStore" id="UI Components/PieChart/Data Binding/Simple Array/ArrayStore" file="c:\content\05 UI Components\PieChart\03 Data Binding\05 Simple Array\10 ArrayStore.md" root="true" />
</article>
<article name="JSON Data" sort="10 JSON Data" id="UI Components/PieChart/Data Binding/JSON Data" file="c:\content\05 UI Components\PieChart\03 Data Binding\10 JSON Data.md" root="true" />
<article name="OData Service" sort="15 OData Service" id="UI Components/PieChart/Data Binding/OData Service" file="c:\content\05 UI Components\PieChart\03 Data Binding\15 OData Service.md" root="true" />
<article name="Web API Service" sort="16 Web API Service" id="UI Components/PieChart/Data Binding/Web API Service" file="c:\content\05 UI Components\PieChart\03 Data Binding\16 Web API Service.md" root="true" />
<article name="PHP Service" sort="17 PHP Service" id="UI Components/PieChart/Data Binding/PHP Service" file="c:\content\05 UI Components\PieChart\03 Data Binding\17 PHP Service.md" root="true" />
<article name="MongoDB Service" sort="18 MongoDB Service" id="UI Components/PieChart/Data Binding/MongoDB Service" file="c:\content\05 UI Components\PieChart\03 Data Binding\18 MongoDB Service.md" root="true" />
<article name="Custom Sources" sort="20 Custom Sources" id="UI Components/PieChart/Data Binding/Custom Sources" file="c:\content\05 UI Components\PieChart\03 Data Binding\20 Custom Sources.md" root="true" />
<article name="Bind Series to Data" sort="23 Bind Series to Data" id="UI Components/PieChart/Data Binding/Bind Series to Data" file="c:\content\05 UI Components\PieChart\03 Data Binding\23 Bind Series to Data\Bind Series to Data.md" root="true">
<article name="Directly" sort="05 Directly" id="UI Components/PieChart/Data Binding/Bind Series to Data/Directly" file="c:\content\05 UI Components\PieChart\03 Data Binding\23 Bind Series to Data\05 Directly.md" />
<article name="Using a Series Template" sort="10 Using a Series Template" id="UI Components/PieChart/Data Binding/Bind Series to Data/Using a Series Template" file="c:\content\05 UI Components\PieChart\03 Data Binding\23 Bind Series to Data\10 Using a Series Template.md" />
</article>
<article name="Update Data" sort="26 Update Data" id="UI Components/PieChart/Data Binding/Update Data" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\Update Data.md" root="true">
<article name="DevExtreme DataSource" sort="01 DevExtreme DataSource" id="UI Components/PieChart/Data Binding/Update Data/DevExtreme DataSource" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\01 DevExtreme DataSource.md" />
<article name="JavaScript Array" sort="05 JavaScript Array" id="UI Components/PieChart/Data Binding/Update Data/JavaScript Array" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\05 JavaScript Array\JavaScript Array.md">
<article name="jQuery" sort="05 jQuery" id="UI Components/PieChart/Data Binding/Update Data/JavaScript Array/jQuery" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\05 JavaScript Array\05 jQuery.md" />
<article name="Angular" sort="07 Angular" id="UI Components/PieChart/Data Binding/Update Data/JavaScript Array/Angular" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\05 JavaScript Array\07 Angular.md" />
<article name="AngularJS" sort="10 AngularJS" id="UI Components/PieChart/Data Binding/Update Data/JavaScript Array/AngularJS" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\05 JavaScript Array\10 AngularJS.md" />
<article name="Knockout" sort="20 Knockout" id="UI Components/PieChart/Data Binding/Update Data/JavaScript Array/Knockout" file="c:\content\05 UI Components\PieChart\03 Data Binding\26 Update Data\05 JavaScript Array\20 Knockout.md" />
</article>
</article>
</article>
<article name="Series" sort="10 Series" id="UI Components/PieChart/Series">
<article name="Overview" sort="00 Overview" id="UI Components/PieChart/Series/Overview" file="c:\content\05 UI Components\PieChart\10 Series\00 Overview.md" root="true" />
<article name="Hover" sort="10 Hover" id="UI Components/PieChart/Series/Hover" file="c:\content\05 UI Components\PieChart\10 Series\10 Hover\Hover.md" root="true">
<article name="User Interaction" sort="05 User Interaction" id="UI Components/PieChart/Series/Hover/User Interaction" file="c:\content\05 UI Components\PieChart\10 Series\10 Hover\05 User Interaction.md" />
<article name="API" sort="07 API" id="UI Components/PieChart/Series/Hover/API" file="c:\content\05 UI Components\PieChart\10 Series\10 Hover\07 API.md" />
<article name="Events" sort="10 Events" id="UI Components/PieChart/Series/Hover/Events" file="c:\content\05 UI Components\PieChart\10 Series\10 Hover\10 Events.md" />
</article>
<article name="Selection" sort="20 Selection" id="UI Components/PieChart/Series/Selection" file="c:\content\05 UI Components\PieChart\10 Series\20 Selection\Selection.md" root="true">
<article name="API" sort="01 API" id="UI Components/PieChart/Series/Selection/API" file="c:\content\05 UI Components\PieChart\10 Series\20 Selection\01 API.md" />
<article name="User Interaction" sort="05 User Interaction" id="UI Components/PieChart/Series/Selection/User Interaction" file="c:\content\05 UI Components\PieChart\10 Series\20 Selection\05 User Interaction.md" />
<article name="Events" sort="10 Events" id="UI Components/PieChart/Series/Selection/Events" file="c:\content\05 UI Components\PieChart\10 Series\20 Selection\10 Events.md" />
</article>
<article name="Access a Point Using the API" sort="45 Access a Point Using the API" id="UI Components/PieChart/Series/Access a Point Using the API" file="c:\content\05 UI Components\PieChart\10 Series\45 Access a Point Using the API.md" root="true" />
<article name="Show and Hide a Point" sort="50 Show and Hide a Point" id="UI Components/PieChart/Series/Show and Hide a Point" file="c:\content\05 UI Components\PieChart\10 Series\50 Show and Hide a Point.md" root="true" />
<article name="Group Smaller Points" sort="55 Group Smaller Points" id="UI Components/PieChart/Series/Group Smaller Points" file="c:\content\05 UI Components\PieChart\10 Series\55 Group Smaller Points.md" root="true" />
</article>
<article name="Point Labels" sort="15 Point Labels" id="UI Components/PieChart/Point Labels">
<article name="Overview" sort="00 Overview" id="UI Components/PieChart/Point Labels/Overview" file="c:\content\05 UI Components\PieChart\15 Point Labels\00 Overview.md" root="true" />
<article name="Customize Labels" sort="05 Customize Labels" id="UI Components/PieChart/Point Labels/Customize Labels" file="c:\content\05 UI Components\PieChart\15 Point Labels\05 Customize Labels.md" root="true" />
<article name="Relocate Labels" sort="07 Relocate Labels" id="UI Components/PieChart/Point Labels/Relocate Labels" file="c:\content\05 UI Components\PieChart\15 Point Labels\07 Relocate Labels.md" root="true" />
<article name="Resolve Overlapping" sort="10 Resolve Overlapping" id="UI Components/PieChart/Point Labels/Resolve Overlapping" file="c:\content\05 UI Components\PieChart\15 Point Labels\10 Resolve Overlapping.md" root="true" />
<article name="Access a Label Using the API" sort="15 Access a Label Using the API" id="UI Components/PieChart/Point Labels/Access a Label Using the API" file="c:\content\05 UI Components\PieChart\15 Point Labels\15 Access a Label Using the API.md" root="true" />
</article>
<article name="Tooltips" sort="30 Tooltips" id="UI Components/PieChart/Tooltips">
<article name="Overview" sort="00 Overview" id="UI Components/PieChart/Tooltips/Overview" file="c:\content\05 UI Components\PieChart\30 Tooltips\00 Overview.md" root="true" />
<article name="Show and Hide a Tooltip" sort="10 Show and Hide a Tooltip" id="UI Components/PieChart/Tooltips/Show and Hide a Tooltip" file="c:\content\05 UI Components\PieChart\30 Tooltips\10 Show and Hide a Tooltip.md" root="true" />
<article name="Handle Tooltip Events" sort="20 Handle Tooltip Events" id="UI Components/PieChart/Tooltips/Handle Tooltip Events" file="c:\content\05 UI Components\PieChart\30 Tooltips\20 Handle Tooltip Events.md" root="true" />
</article>
<article name="Legend" sort="35 Legend" id="UI Components/PieChart/Legend">
<article name="Overview" sort="00 Overview" id="UI Components/PieChart/Legend/Overview" file="c:\content\05 UI Components\PieChart\35 Legend\00 Overview.md" root="true" />
<article name="Relocate the Legend" sort="10 Relocate the Legend" id="UI Components/PieChart/Legend/Relocate the Legend" file="c:\content\05 UI Components\PieChart\35 Legend\10 Relocate the Legend.md" root="true" />
<article name="Rearrange Legend Items" sort="20 Rearrange Legend Items" id="UI Components/PieChart/Legend/Rearrange Legend Items" file="c:\content\05 UI Components\PieChart\35 Legend\20 Rearrange Legend Items.md" root="true" />
<article name="User Interaction" sort="30 User Interaction" id="UI Components/PieChart/Legend/User Interaction" file="c:\content\05 UI Components\PieChart\35 Legend\30 User Interaction.md" root="true" />
</article>
<article name="Title and Subtitle" sort="58 Title and Subtitle" id="UI Components/PieChart/Title and Subtitle" file="c:\content\05 UI Components\PieChart\58 Title and Subtitle.md" root="true" />
<article name="Adaptive Layout" sort="89 Adaptive Layout" id="UI Components/PieChart/Adaptive Layout" file="c:\content\05 UI Components\PieChart\89 Adaptive Layout.md" root="true" />
<article name="Rotate the Pie" sort="90 Rotate the Pie" id="UI Components/PieChart/Rotate the Pie" file="c:\content\05 UI Components\PieChart\90 Rotate the Pie.md" root="true" />
<article name="Equally-Sized Pies" sort="95 Equally-Sized Pies" id="UI Components/PieChart/Equally-Sized Pies" file="c:\content\05 UI Components\PieChart\95 Equally-Sized Pies.md" root="true" />
<article name="Client-Side Exporting and Printing" sort="99 Client-Side Exporting and Printing" id="UI Components/PieChart/Client-Side Exporting and Printing" file="c:\content\05 UI Components\PieChart\99 Client-Side Exporting and Printing\Client-Side Exporting and Printing.md" root="true">
<article name="User Interaction" sort="01 User Interaction" id="UI Components/PieChart/Client-Side Exporting and Printing/User Interaction" file="c:\content\05 UI Components\PieChart\99 Client-Side Exporting and Printing\01 User Interaction.md" />
<article name="API" sort="05 API" id="UI Components/PieChart/Client-Side Exporting and Printing/API" file="c:\content\05 UI Components\PieChart\99 Client-Side Exporting and Printing\05 API.md" />
<article name="Events" sort="10 Events" id="UI Components/PieChart/Client-Side Exporting and Printing/Events" file="c:\content\05 UI Components\PieChart\99 Client-Side Exporting and Printing\10 Events.md" />
</article>
</article>
<article name="PivotGrid" sort="PivotGrid" id="UI Components/PivotGrid">
<article name="Visual Elements" sort="010 Visual Elements" id="UI Components/PivotGrid/Visual Elements" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\Visual Elements.md" tags="dxpivotgrid" root="true">
<article name="Headers" sort="02 Headers" id="UI Components/PivotGrid/Visual Elements/Headers" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\02 Headers.md" />
<article name="Summary Values" sort="04 Summary Values" id="UI Components/PivotGrid/Visual Elements/Summary Values" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\04 Summary Values.md" />
<article name="Totals" sort="05 Totals" id="UI Components/PivotGrid/Visual Elements/Totals" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\05 Totals\Totals.md">
<article name="Total Rows or Columns" sort="02 Total Rows or Columns" id="UI Components/PivotGrid/Visual Elements/Totals/Total Rows or Columns" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\05 Totals\02 Total Rows or Columns.md" />
<article name="Grand Total Row and Column" sort="03 Grand Total Row and Column" id="UI Components/PivotGrid/Visual Elements/Totals/Grand Total Row and Column" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\05 Totals\03 Grand Total Row and Column.md" />
</article>
<article name="Field Chooser" sort="10 Field Chooser" id="UI Components/PivotGrid/Visual Elements/Field Chooser" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\10 Field Chooser\01 Field Chooser.md">
<article name="Field Management" sort="02 Field Management" id="UI Components/PivotGrid/Visual Elements/Field Chooser/Field Management" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\10 Field Chooser\02 Field Management.md" />
<article name="Foldering" sort="03 Foldering" id="UI Components/PivotGrid/Visual Elements/Field Chooser/Foldering" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\10 Field Chooser\03 Foldering.md" />
</article>
<article name="Field Panel" sort="15 Field Panel" id="UI Components/PivotGrid/Visual Elements/Field Panel" file="c:\content\05 UI Components\PivotGrid\010 Visual Elements\15 Field Panel.md" />
</article>
<article name="Fields and Areas" sort="020 Fields and Areas" id="UI Components/PivotGrid/Fields and Areas" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\Fields and Areas.md" root="true">
<article name="Fields" sort="10 Fields" id="UI Components/PivotGrid/Fields and Areas/Fields" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\10 Fields.md" />
<article name="Areas" sort="20 Areas" id="UI Components/PivotGrid/Fields and Areas/Areas" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\20 Areas.md" />
<article name="API" sort="30 API" id="UI Components/PivotGrid/Fields and Areas/API" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\30 API\API.md">
<article name="Get or Set Fields List" sort="20 Get or Set Fields List" id="UI Components/PivotGrid/Fields and Areas/API/Get or Set Fields List" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\30 API\20 Get or Set Fields List.md" />
<article name="Get or Set Field Properties" sort="30 Get or Set Field Properties" id="UI Components/PivotGrid/Fields and Areas/API/Get or Set Field Properties" file="c:\content\05 UI Components\PivotGrid\020 Fields and Areas\30 API\30 Get or Set Field Properties.md" />
</article>
</article>
<article name="Data Binding" sort="030 Data Binding" id="UI Components/PivotGrid/Data Binding" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Data Binding.md" root="true">
<article name="Provide Data" sort="10 Provide Data" id="UI Components/PivotGrid/Data Binding/Provide Data" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\10 Provide Data.md">
<article name="Using the Client-Side Processing" sort="20 Using the Client-Side Processing" id="UI Components/PivotGrid/Data Binding/Provide Data/Using the Client-Side Processing" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\20 Using the Client-Side Processing\10 Using the Client-Side Processing.md">
<article name="Using an ArrayStore" sort="15 Using an ArrayStore" id="UI Components/PivotGrid/Data Binding/Provide Data/Using the Client-Side Processing/Using an ArrayStore" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\20 Using the Client-Side Processing\15 Using an ArrayStore.md" />
<article name="Using a LocalStore" sort="20 Using a LocalStore" id="UI Components/PivotGrid/Data Binding/Provide Data/Using the Client-Side Processing/Using a LocalStore" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\20 Using the Client-Side Processing\20 Using a LocalStore.md" />
<article name="Using an ODataStore" sort="30 Using an ODataStore" id="UI Components/PivotGrid/Data Binding/Provide Data/Using the Client-Side Processing/Using an ODataStore" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\20 Using the Client-Side Processing\30 Using an ODataStore.md" />
<article name="Using a CustomStore" sort="40 Using a CustomStore" id="UI Components/PivotGrid/Data Binding/Provide Data/Using the Client-Side Processing/Using a CustomStore" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\20 Using the Client-Side Processing\40 Using a CustomStore.md" />
</article>
<article name="Using an OLAP" sort="30 Using an OLAP" id="UI Components/PivotGrid/Data Binding/Provide Data/Using an OLAP" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\10 Provide Data\30 Using an OLAP.md" />
</article>
<article name="Bind Data" sort="20 Bind Data" id="UI Components/PivotGrid/Data Binding/Bind Data" file="c:\content\05 UI Components\PivotGrid\030 Data Binding\20 Bind Data.md" />
</article>
<article name="Use CustomStore" sort="035 Use CustomStore" id="UI Components/PivotGrid/Use CustomStore" file="c:\content\05 UI Components\PivotGrid\035 Use CustomStore\Use CustomStore.md" root="true">
<article name="Local Operations" sort="10 Local Operations" id="UI Components/PivotGrid/Use CustomStore/Local Operations" file="c:\content\05 UI Components\PivotGrid\035 Use CustomStore\10 Local Operations.md" />
<article name="Remote Operations" sort="20 Remote Operations" id="UI Components/PivotGrid/Use CustomStore/Remote Operations" file="c:\content\05 UI Components\PivotGrid\035 Use CustomStore\20 Remote Operations.md" />
</article>
<article name="Summaries" sort="040 Summaries" id="UI Components/PivotGrid/Summaries" file="c:\content\05 UI Components\PivotGrid\040 Summaries\Summaries.md" root="true">
<article name="Custom Aggregate Function" sort="07 Custom Aggregate Function" id="UI Components/PivotGrid/Summaries/Custom Aggregate Function" file="c:\content\05 UI Components\PivotGrid\040 Summaries\07 Custom Aggregate Function\Custom Aggregate Function.md">
<article name="Client-Side Data Aggregation" sort="10 Client-Side Data Aggregation" id="UI Components/PivotGrid/Summaries/Custom Aggregate Function/Client-Side Data Aggregation" file="c:\content\05 UI Components\PivotGrid\040 Summaries\07 Custom Aggregate Function\10 Client-Side Data Aggregation.md" />
<article name="Server-Side Data Aggregation" sort="20 Server-Side Data Aggregation" id="UI Components/PivotGrid/Summaries/Custom Aggregate Function/Server-Side Data Aggregation" file="c:\content\05 UI Components\PivotGrid\040 Summaries\07 Custom Aggregate Function\20 Server-Side Data Aggregation.md" />
</article>
<article name="Predefined Summaries" sort="20 Predefined Summaries" id="UI Components/PivotGrid/Summaries/Predefined Summaries" file="c:\content\05 UI Components\PivotGrid\040 Summaries\20 Predefined Summaries.md" />
<article name="Custom Summaries" sort="30 Custom Summaries" id="UI Components/PivotGrid/Summaries/Custom Summaries" file="c:\content\05 UI Components\PivotGrid\040 Summaries\30 Custom Summaries.md" />
<article name="Runtime Summary Type Selection" sort="35 Runtime Summary Type Selection" id="UI Components/PivotGrid/Summaries/Runtime Summary Type Selection" file="c:\content\05 UI Components\PivotGrid\040 Summaries\35 Runtime Summary Type Selection.md" />
<article name="Summary Post-Processing" sort="40 Summary Post-Processing" id="UI Components/PivotGrid/Summaries/Summary Post-Processing" file="c:\content\05 UI Components\PivotGrid\040 Summaries\40 Summary Post-Processing.md" />
</article>
<article name="Grouping" sort="050 Grouping" id="UI Components/PivotGrid/Grouping" file="c:\content\05 UI Components\PivotGrid\050 Grouping\Grouping.md" root="true">
<article name="Data Grouping" sort="020 Data Grouping" id="UI Components/PivotGrid/Grouping/Data Grouping" file="c:\content\05 UI Components\PivotGrid\050 Grouping\020 Data Grouping\Data Grouping.md">
<article name="Selector customization" sort="010 Selector customization" id="UI Components/PivotGrid/Grouping/Data Grouping/Selector customization" file="c:\content\05 UI Components\PivotGrid\050 Grouping\020 Data Grouping\010 Selector customization\Selector customization.md">
<article name="Grouping numbers" sort="01 Grouping numbers" id="UI Components/PivotGrid/Grouping/Data Grouping/Selector customization/Grouping numbers" file="c:\content\05 UI Components\PivotGrid\050 Grouping\020 Data Grouping\010 Selector customization\01 Grouping numbers.md" />
<article name="Grouping dates" sort="02 Grouping dates" id="UI Components/PivotGrid/Grouping/Data Grouping/Selector customization/Grouping dates" file="c:\content\05 UI Components\PivotGrid\050 Grouping\020 Data Grouping\010 Selector customization\02 Grouping dates.md" />
</article>
<article name="Manual grouping" sort="020 Manual grouping" id="UI Components/PivotGrid/Grouping/Data Grouping/Manual grouping" file="c:\content\05 UI Components\PivotGrid\050 Grouping\020 Data Grouping\020 Manual grouping\Manual grouping.md" />
</article>
<article name="Fields Grouping" sort="030 Fields Grouping" id="UI Components/PivotGrid/Grouping/Fields Grouping" file="c:\content\05 UI Components\PivotGrid\050 Grouping\030 Fields Grouping.md" />
</article>
<article name="Sorting" sort="060 Sorting" id="UI Components/PivotGrid/Sorting" file="c:\content\05 UI Components\PivotGrid\060 Sorting\10 Sorting.md" root="true">
<article name="Sorting in the UI" sort="20 Sorting in the UI" id="UI Components/PivotGrid/Sorting/Sorting in the UI" file="c:\content\05 UI Components\PivotGrid\060 Sorting\20 Sorting in the UI\10 Sorting in the UI.md">
<article name="Sorting by Field Values" sort="20 Sorting by Field Values" id="UI Components/PivotGrid/Sorting/Sorting in the UI/Sorting by Field Values" file="c:\content\05 UI Components\PivotGrid\060 Sorting\20 Sorting in the UI\20 Sorting by Field Values.md" />
<article name="Sorting by Summary Values" sort="30 Sorting by Summary Values" id="UI Components/PivotGrid/Sorting/Sorting in the UI/Sorting by Summary Values" file="c:\content\05 UI Components\PivotGrid\060 Sorting\20 Sorting in the UI\30 Sorting by Summary Values.md" />
</article>
<article name="Sorting in Code" sort="30 Sorting in Code" id="UI Components/PivotGrid/Sorting/Sorting in Code" file="c:\content\05 UI Components\PivotGrid\060 Sorting\30 Sorting in Code\10 Sorting in Code.md">
<article name="Sorting by Field Values" sort="20 Sorting by Field Values" id="UI Components/PivotGrid/Sorting/Sorting in Code/Sorting by Field Values" file="c:\content\05 UI Components\PivotGrid\060 Sorting\30 Sorting in Code\20 Sorting by Field Values.md" />
<article name="Sorting by Summary Values" sort="30 Sorting by Summary Values" id="UI Components/PivotGrid/Sorting/Sorting in Code/Sorting by Summary Values" file="c:\content\05 UI Components\PivotGrid\060 Sorting\30 Sorting in Code\30 Sorting by Summary Values.md" />
</article>
<article name="Setting Initial Sorting" sort="40 Setting Initial Sorting" id="UI Components/PivotGrid/Sorting/Setting Initial Sorting" file="c:\content\05 UI Components\PivotGrid\060 Sorting\40 Setting Initial Sorting.md" />
</article>
<article name="Filtering" sort="080 Filtering" id="UI Components/PivotGrid/Filtering" file="c:\content\05 UI Components\PivotGrid\080 Filtering\Filtering.md" root="true">
<article name="Filtering in the UI" sort="020 Filtering in the UI" id="UI Components/PivotGrid/Filtering/Filtering in the UI" file="c:\content\05 UI Components\PivotGrid\080 Filtering\020 Filtering in the UI.md" />
<article name="Filtering in Code" sort="030 Filtering in Code" id="UI Components/PivotGrid/Filtering/Filtering in Code" file="c:\content\05 UI Components\PivotGrid\080 Filtering\030 Filtering in Code.md" />
</article>
<article name="Integration with Chart" sort="150 Integration with Chart" id="UI Components/PivotGrid/Integration with Chart" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\10 Integration with Chart.md" root="true">
<article name="Bind the Chart" sort="15 Bind the Chart" id="UI Components/PivotGrid/Integration with Chart/Bind the Chart" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\15 Bind the Chart.md" />
<article name="Convert Grid Fields into Chart Series" sort="20 Convert Grid Fields into Chart Series" id="UI Components/PivotGrid/Integration with Chart/Convert Grid Fields into Chart Series" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\20 Convert Grid Fields into Chart Series.md" />
<article name="Customize the Chart" sort="30 Customize the Chart" id="UI Components/PivotGrid/Integration with Chart/Customize the Chart" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\30 Customize the Chart\10 Customize the Chart.md">
<article name="Customize the Series" sort="20 Customize the Series" id="UI Components/PivotGrid/Integration with Chart/Customize the Chart/Customize the Series" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\30 Customize the Chart\20 Customize the Series.md" />
<article name="Customize the Value Axes and Panes" sort="30 Customize the Value Axes and Panes" id="UI Components/PivotGrid/Integration with Chart/Customize the Chart/Customize the Value Axes and Panes" file="c:\content\05 UI Components\PivotGrid\150 Integration with Chart\30 Customize the Chart\30 Customize the Value Axes and Panes.md" />
</article>
</article>