duheng
2024-04-22 a549072a040749f7c732c83d2d0f138614ac08e5
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
namespace IStation.WinFrmUI 
{
    partial class ViewElecPriceByDayDlg
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        #region Windows Form Designer generated code
 
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn chartControlCommandGalleryItemGroup2DColumn3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn();
            DevExpress.XtraCharts.UI.CreateBarChartItem createBarChartItem3 = new DevExpress.XtraCharts.UI.CreateBarChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem createFullStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem createSideBySideFullStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem createSideBySideStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBarChartItem createStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateWaterfallChartItem createWaterfallChartItem3 = new DevExpress.XtraCharts.UI.CreateWaterfallChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn chartControlCommandGalleryItemGroup3DColumn3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn();
            DevExpress.XtraCharts.UI.CreateBar3DChartItem createBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem createFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateManhattanBarChartItem createManhattanBarChartItem3 = new DevExpress.XtraCharts.UI.CreateManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem createSideBySideFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem createSideBySideStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem createStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn chartControlCommandGalleryItemGroupCylinderColumn3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn();
            DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem createCylinderBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem createCylinderFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem createCylinderManhattanBarChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem createCylinderSideBySideFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem createCylinderSideBySideStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem createCylinderStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn chartControlCommandGalleryItemGroupConeColumn3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn();
            DevExpress.XtraCharts.UI.CreateConeBar3DChartItem createConeBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateConeBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem createConeFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem createConeManhattanBarChartItem3 = new DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem createConeSideBySideFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem createConeSideBySideStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem createConeStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn chartControlCommandGalleryItemGroupPyramidColumn3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn();
            DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem createPyramidBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem createPyramidFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem createPyramidManhattanBarChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem createPyramidSideBySideFullStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem createPyramidSideBySideStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem createPyramidStackedBar3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine chartControlCommandGalleryItemGroup2DLine3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine();
            DevExpress.XtraCharts.UI.CreateLineChartItem createLineChartItem3 = new DevExpress.XtraCharts.UI.CreateLineChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem createFullStackedLineChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateScatterLineChartItem createScatterLineChartItem3 = new DevExpress.XtraCharts.UI.CreateScatterLineChartItem();
            DevExpress.XtraCharts.UI.CreateSplineChartItem createSplineChartItem3 = new DevExpress.XtraCharts.UI.CreateSplineChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLineChartItem createStackedLineChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateStepLineChartItem createStepLineChartItem3 = new DevExpress.XtraCharts.UI.CreateStepLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine chartControlCommandGalleryItemGroup3DLine3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine();
            DevExpress.XtraCharts.UI.CreateLine3DChartItem createLine3DChartItem3 = new DevExpress.XtraCharts.UI.CreateLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem createFullStackedLine3DChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateSpline3DChartItem createSpline3DChartItem3 = new DevExpress.XtraCharts.UI.CreateSpline3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem createStackedLine3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepLine3DChartItem createStepLine3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStepLine3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie chartControlCommandGalleryItemGroup2DPie3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie();
            DevExpress.XtraCharts.UI.CreatePieChartItem createPieChartItem3 = new DevExpress.XtraCharts.UI.CreatePieChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnutChartItem createDoughnutChartItem3 = new DevExpress.XtraCharts.UI.CreateDoughnutChartItem();
            DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem createNestedDoughnutChartItem3 = new DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie chartControlCommandGalleryItemGroup3DPie3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie();
            DevExpress.XtraCharts.UI.CreatePie3DChartItem createPie3DChartItem3 = new DevExpress.XtraCharts.UI.CreatePie3DChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem createDoughnut3DChartItem3 = new DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar chartControlCommandGalleryItemGroup2DBar3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar();
            DevExpress.XtraCharts.UI.CreateRotatedBarChartItem createRotatedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRotatedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem createRotatedFullStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem createRotatedSideBySideFullStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem createRotatedSideBySideStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem createRotatedStackedBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea chartControlCommandGalleryItemGroup2DArea3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea();
            DevExpress.XtraCharts.UI.CreateAreaChartItem createAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem createFullStackedAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem createFullStackedSplineAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedStepAreaChartItem createFullStackedStepAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedStepAreaChartItem();
            DevExpress.XtraCharts.UI.CreateSplineAreaChartItem createSplineAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedAreaChartItem createStackedAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedStepAreaChartItem createStackedStepAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedStepAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem createStackedSplineAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStepAreaChartItem createStepAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateStepAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea chartControlCommandGalleryItemGroup3DArea3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea();
            DevExpress.XtraCharts.UI.CreateArea3DChartItem createArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem createFullStackedArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem createFullStackedSplineArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem createSplineArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem createStackedArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem createStackedSplineArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepArea3DChartItem createStepArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateStepArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint chartControlCommandGalleryItemGroupPoint3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint();
            DevExpress.XtraCharts.UI.CreatePointChartItem createPointChartItem3 = new DevExpress.XtraCharts.UI.CreatePointChartItem();
            DevExpress.XtraCharts.UI.CreateBubbleChartItem createBubbleChartItem3 = new DevExpress.XtraCharts.UI.CreateBubbleChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel chartControlCommandGalleryItemGroupFunnel3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel();
            DevExpress.XtraCharts.UI.CreateFunnelChartItem createFunnelChartItem3 = new DevExpress.XtraCharts.UI.CreateFunnelChartItem();
            DevExpress.XtraCharts.UI.CreateFunnel3DChartItem createFunnel3DChartItem3 = new DevExpress.XtraCharts.UI.CreateFunnel3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial chartControlCommandGalleryItemGroupFinancial3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial();
            DevExpress.XtraCharts.UI.CreateStockChartItem createStockChartItem3 = new DevExpress.XtraCharts.UI.CreateStockChartItem();
            DevExpress.XtraCharts.UI.CreateCandleStickChartItem createCandleStickChartItem3 = new DevExpress.XtraCharts.UI.CreateCandleStickChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar chartControlCommandGalleryItemGroupRadar3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar();
            DevExpress.XtraCharts.UI.CreateRadarPointChartItem createRadarPointChartItem3 = new DevExpress.XtraCharts.UI.CreateRadarPointChartItem();
            DevExpress.XtraCharts.UI.CreateRadarLineChartItem createRadarLineChartItem3 = new DevExpress.XtraCharts.UI.CreateRadarLineChartItem();
            DevExpress.XtraCharts.UI.CreateRadarAreaChartItem createRadarAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateRadarAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRadarRangeAreaChartItem createRadarRangeAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateRadarRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateScatterRadarLineChartItem createScatterRadarLineChartItem3 = new DevExpress.XtraCharts.UI.CreateScatterRadarLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar chartControlCommandGalleryItemGroupPolar3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar();
            DevExpress.XtraCharts.UI.CreatePolarPointChartItem createPolarPointChartItem3 = new DevExpress.XtraCharts.UI.CreatePolarPointChartItem();
            DevExpress.XtraCharts.UI.CreatePolarLineChartItem createPolarLineChartItem3 = new DevExpress.XtraCharts.UI.CreatePolarLineChartItem();
            DevExpress.XtraCharts.UI.CreatePolarAreaChartItem createPolarAreaChartItem3 = new DevExpress.XtraCharts.UI.CreatePolarAreaChartItem();
            DevExpress.XtraCharts.UI.CreatePolarRangeAreaChartItem createPolarRangeAreaChartItem3 = new DevExpress.XtraCharts.UI.CreatePolarRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateScatterPolarLineChartItem createScatterPolarLineChartItem3 = new DevExpress.XtraCharts.UI.CreateScatterPolarLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange chartControlCommandGalleryItemGroupRange3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange();
            DevExpress.XtraCharts.UI.CreateRangeBarChartItem createRangeBarChartItem3 = new DevExpress.XtraCharts.UI.CreateRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem createSideBySideRangeBarChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateRangeAreaChartItem createRangeAreaChartItem3 = new DevExpress.XtraCharts.UI.CreateRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem createRangeArea3DChartItem3 = new DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt chartControlCommandGalleryItemGroupGantt3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt();
            DevExpress.XtraCharts.UI.CreateGanttChartItem createGanttChartItem3 = new DevExpress.XtraCharts.UI.CreateGanttChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem createSideBySideGanttChartItem3 = new DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupBoxPlot chartControlCommandGalleryItemGroupBoxPlot3 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupBoxPlot();
            DevExpress.XtraCharts.UI.CreateBoxPlotChartItem createBoxPlotChartItem3 = new DevExpress.XtraCharts.UI.CreateBoxPlotChartItem();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem50 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ViewElecPriceByDayDlg));
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem51 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem52 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem53 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem54 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem55 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem56 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem57 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem58 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem59 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem60 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem61 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem62 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem63 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem64 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem65 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem66 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem67 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem68 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem69 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem70 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem71 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem72 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem73 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem74 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem75 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem76 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem77 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem78 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem79 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem80 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem81 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem82 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem83 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem84 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem85 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem86 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem87 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem88 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem89 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem90 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem91 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem92 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem93 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem94 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem95 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem96 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem97 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChangePaletteGalleryItem changePaletteGalleryItem98 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn chartControlCommandGalleryItemGroup2DColumn4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn();
            DevExpress.XtraCharts.UI.CreateBarChartItem createBarChartItem4 = new DevExpress.XtraCharts.UI.CreateBarChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem createFullStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem createSideBySideFullStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem createSideBySideStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBarChartItem createStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateWaterfallChartItem createWaterfallChartItem4 = new DevExpress.XtraCharts.UI.CreateWaterfallChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn chartControlCommandGalleryItemGroup3DColumn4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn();
            DevExpress.XtraCharts.UI.CreateBar3DChartItem createBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem createFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateManhattanBarChartItem createManhattanBarChartItem4 = new DevExpress.XtraCharts.UI.CreateManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem createSideBySideFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem createSideBySideStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem createStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn chartControlCommandGalleryItemGroupCylinderColumn4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn();
            DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem createCylinderBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem createCylinderFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem createCylinderManhattanBarChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem createCylinderSideBySideFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem createCylinderSideBySideStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem createCylinderStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn chartControlCommandGalleryItemGroupConeColumn4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn();
            DevExpress.XtraCharts.UI.CreateConeBar3DChartItem createConeBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateConeBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem createConeFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem createConeManhattanBarChartItem4 = new DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem createConeSideBySideFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem createConeSideBySideStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem createConeStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn chartControlCommandGalleryItemGroupPyramidColumn4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn();
            DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem createPyramidBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem createPyramidFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem createPyramidManhattanBarChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem createPyramidSideBySideFullStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem createPyramidSideBySideStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem createPyramidStackedBar3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine chartControlCommandGalleryItemGroup2DLine4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine();
            DevExpress.XtraCharts.UI.CreateLineChartItem createLineChartItem4 = new DevExpress.XtraCharts.UI.CreateLineChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem createFullStackedLineChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateScatterLineChartItem createScatterLineChartItem4 = new DevExpress.XtraCharts.UI.CreateScatterLineChartItem();
            DevExpress.XtraCharts.UI.CreateSplineChartItem createSplineChartItem4 = new DevExpress.XtraCharts.UI.CreateSplineChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLineChartItem createStackedLineChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedLineChartItem();
            DevExpress.XtraCharts.UI.CreateStepLineChartItem createStepLineChartItem4 = new DevExpress.XtraCharts.UI.CreateStepLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine chartControlCommandGalleryItemGroup3DLine4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine();
            DevExpress.XtraCharts.UI.CreateLine3DChartItem createLine3DChartItem4 = new DevExpress.XtraCharts.UI.CreateLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem createFullStackedLine3DChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateSpline3DChartItem createSpline3DChartItem4 = new DevExpress.XtraCharts.UI.CreateSpline3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem createStackedLine3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepLine3DChartItem createStepLine3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStepLine3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie chartControlCommandGalleryItemGroup2DPie4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie();
            DevExpress.XtraCharts.UI.CreatePieChartItem createPieChartItem4 = new DevExpress.XtraCharts.UI.CreatePieChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnutChartItem createDoughnutChartItem4 = new DevExpress.XtraCharts.UI.CreateDoughnutChartItem();
            DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem createNestedDoughnutChartItem4 = new DevExpress.XtraCharts.UI.CreateNestedDoughnutChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie chartControlCommandGalleryItemGroup3DPie4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie();
            DevExpress.XtraCharts.UI.CreatePie3DChartItem createPie3DChartItem4 = new DevExpress.XtraCharts.UI.CreatePie3DChartItem();
            DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem createDoughnut3DChartItem4 = new DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar chartControlCommandGalleryItemGroup2DBar4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar();
            DevExpress.XtraCharts.UI.CreateRotatedBarChartItem createRotatedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRotatedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem createRotatedFullStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem createRotatedSideBySideFullStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem createRotatedSideBySideStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem();
            DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem createRotatedStackedBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea chartControlCommandGalleryItemGroup2DArea4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea();
            DevExpress.XtraCharts.UI.CreateAreaChartItem createAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem createFullStackedAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem createFullStackedSplineAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedStepAreaChartItem createFullStackedStepAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedStepAreaChartItem();
            DevExpress.XtraCharts.UI.CreateSplineAreaChartItem createSplineAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedAreaChartItem createStackedAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedStepAreaChartItem createStackedStepAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedStepAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem createStackedSplineAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem();
            DevExpress.XtraCharts.UI.CreateStepAreaChartItem createStepAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateStepAreaChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea chartControlCommandGalleryItemGroup3DArea4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea();
            DevExpress.XtraCharts.UI.CreateArea3DChartItem createArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem createFullStackedArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem createFullStackedSplineArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem createSplineArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem createStackedArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem createStackedSplineArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem();
            DevExpress.XtraCharts.UI.CreateStepArea3DChartItem createStepArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateStepArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint chartControlCommandGalleryItemGroupPoint4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint();
            DevExpress.XtraCharts.UI.CreatePointChartItem createPointChartItem4 = new DevExpress.XtraCharts.UI.CreatePointChartItem();
            DevExpress.XtraCharts.UI.CreateBubbleChartItem createBubbleChartItem4 = new DevExpress.XtraCharts.UI.CreateBubbleChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel chartControlCommandGalleryItemGroupFunnel4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel();
            DevExpress.XtraCharts.UI.CreateFunnelChartItem createFunnelChartItem4 = new DevExpress.XtraCharts.UI.CreateFunnelChartItem();
            DevExpress.XtraCharts.UI.CreateFunnel3DChartItem createFunnel3DChartItem4 = new DevExpress.XtraCharts.UI.CreateFunnel3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial chartControlCommandGalleryItemGroupFinancial4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial();
            DevExpress.XtraCharts.UI.CreateStockChartItem createStockChartItem4 = new DevExpress.XtraCharts.UI.CreateStockChartItem();
            DevExpress.XtraCharts.UI.CreateCandleStickChartItem createCandleStickChartItem4 = new DevExpress.XtraCharts.UI.CreateCandleStickChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar chartControlCommandGalleryItemGroupRadar4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar();
            DevExpress.XtraCharts.UI.CreateRadarPointChartItem createRadarPointChartItem4 = new DevExpress.XtraCharts.UI.CreateRadarPointChartItem();
            DevExpress.XtraCharts.UI.CreateRadarLineChartItem createRadarLineChartItem4 = new DevExpress.XtraCharts.UI.CreateRadarLineChartItem();
            DevExpress.XtraCharts.UI.CreateRadarAreaChartItem createRadarAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateRadarAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRadarRangeAreaChartItem createRadarRangeAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateRadarRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateScatterRadarLineChartItem createScatterRadarLineChartItem4 = new DevExpress.XtraCharts.UI.CreateScatterRadarLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar chartControlCommandGalleryItemGroupPolar4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar();
            DevExpress.XtraCharts.UI.CreatePolarPointChartItem createPolarPointChartItem4 = new DevExpress.XtraCharts.UI.CreatePolarPointChartItem();
            DevExpress.XtraCharts.UI.CreatePolarLineChartItem createPolarLineChartItem4 = new DevExpress.XtraCharts.UI.CreatePolarLineChartItem();
            DevExpress.XtraCharts.UI.CreatePolarAreaChartItem createPolarAreaChartItem4 = new DevExpress.XtraCharts.UI.CreatePolarAreaChartItem();
            DevExpress.XtraCharts.UI.CreatePolarRangeAreaChartItem createPolarRangeAreaChartItem4 = new DevExpress.XtraCharts.UI.CreatePolarRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateScatterPolarLineChartItem createScatterPolarLineChartItem4 = new DevExpress.XtraCharts.UI.CreateScatterPolarLineChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange chartControlCommandGalleryItemGroupRange4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange();
            DevExpress.XtraCharts.UI.CreateRangeBarChartItem createRangeBarChartItem4 = new DevExpress.XtraCharts.UI.CreateRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem createSideBySideRangeBarChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem();
            DevExpress.XtraCharts.UI.CreateRangeAreaChartItem createRangeAreaChartItem4 = new DevExpress.XtraCharts.UI.CreateRangeAreaChartItem();
            DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem createRangeArea3DChartItem4 = new DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt chartControlCommandGalleryItemGroupGantt4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt();
            DevExpress.XtraCharts.UI.CreateGanttChartItem createGanttChartItem4 = new DevExpress.XtraCharts.UI.CreateGanttChartItem();
            DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem createSideBySideGanttChartItem4 = new DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem();
            DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupBoxPlot chartControlCommandGalleryItemGroupBoxPlot4 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupBoxPlot();
            DevExpress.XtraCharts.UI.CreateBoxPlotChartItem createBoxPlotChartItem4 = new DevExpress.XtraCharts.UI.CreateBoxPlotChartItem();
            this.commandBarGalleryDropDown1 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown2 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown3 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown4 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown5 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown6 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown7 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown8 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown9 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown10 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown11 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown12 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown13 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown14 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.commandBarGalleryDropDown15 = new DevExpress.XtraBars.Commands.CommandBarGalleryDropDown(this.components);
            this.bindingSourceGrid = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // commandBarGalleryDropDown1
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroup2DColumn3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBarChartItem3,
            createFullStackedBarChartItem3,
            createSideBySideFullStackedBarChartItem3,
            createSideBySideStackedBarChartItem3,
            createStackedBarChartItem3,
            createWaterfallChartItem3});
            chartControlCommandGalleryItemGroup3DColumn3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBar3DChartItem3,
            createFullStackedBar3DChartItem3,
            createManhattanBarChartItem3,
            createSideBySideFullStackedBar3DChartItem3,
            createSideBySideStackedBar3DChartItem3,
            createStackedBar3DChartItem3});
            chartControlCommandGalleryItemGroupCylinderColumn3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createCylinderBar3DChartItem3,
            createCylinderFullStackedBar3DChartItem3,
            createCylinderManhattanBarChartItem3,
            createCylinderSideBySideFullStackedBar3DChartItem3,
            createCylinderSideBySideStackedBar3DChartItem3,
            createCylinderStackedBar3DChartItem3});
            chartControlCommandGalleryItemGroupConeColumn3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createConeBar3DChartItem3,
            createConeFullStackedBar3DChartItem3,
            createConeManhattanBarChartItem3,
            createConeSideBySideFullStackedBar3DChartItem3,
            createConeSideBySideStackedBar3DChartItem3,
            createConeStackedBar3DChartItem3});
            chartControlCommandGalleryItemGroupPyramidColumn3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPyramidBar3DChartItem3,
            createPyramidFullStackedBar3DChartItem3,
            createPyramidManhattanBarChartItem3,
            createPyramidSideBySideFullStackedBar3DChartItem3,
            createPyramidSideBySideStackedBar3DChartItem3,
            createPyramidStackedBar3DChartItem3});
            this.commandBarGalleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DColumn3,
            chartControlCommandGalleryItemGroup3DColumn3,
            chartControlCommandGalleryItemGroupCylinderColumn3,
            chartControlCommandGalleryItemGroupConeColumn3,
            chartControlCommandGalleryItemGroupPyramidColumn3});
            this.commandBarGalleryDropDown1.Manager = null;
            this.commandBarGalleryDropDown1.Name = "commandBarGalleryDropDown1";
            // 
            // commandBarGalleryDropDown2
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroup2DLine3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLineChartItem3,
            createFullStackedLineChartItem3,
            createScatterLineChartItem3,
            createSplineChartItem3,
            createStackedLineChartItem3,
            createStepLineChartItem3});
            chartControlCommandGalleryItemGroup3DLine3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLine3DChartItem3,
            createFullStackedLine3DChartItem3,
            createSpline3DChartItem3,
            createStackedLine3DChartItem3,
            createStepLine3DChartItem3});
            this.commandBarGalleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DLine3,
            chartControlCommandGalleryItemGroup3DLine3});
            this.commandBarGalleryDropDown2.Manager = null;
            this.commandBarGalleryDropDown2.Name = "commandBarGalleryDropDown2";
            // 
            // commandBarGalleryDropDown3
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroup2DPie3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPieChartItem3,
            createDoughnutChartItem3,
            createNestedDoughnutChartItem3});
            chartControlCommandGalleryItemGroup3DPie3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPie3DChartItem3,
            createDoughnut3DChartItem3});
            this.commandBarGalleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DPie3,
            chartControlCommandGalleryItemGroup3DPie3});
            this.commandBarGalleryDropDown3.Manager = null;
            this.commandBarGalleryDropDown3.Name = "commandBarGalleryDropDown3";
            // 
            // commandBarGalleryDropDown4
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroup2DBar3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRotatedBarChartItem3,
            createRotatedFullStackedBarChartItem3,
            createRotatedSideBySideFullStackedBarChartItem3,
            createRotatedSideBySideStackedBarChartItem3,
            createRotatedStackedBarChartItem3});
            this.commandBarGalleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DBar3});
            this.commandBarGalleryDropDown4.Manager = null;
            this.commandBarGalleryDropDown4.Name = "commandBarGalleryDropDown4";
            // 
            // commandBarGalleryDropDown5
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroup2DArea3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createAreaChartItem3,
            createFullStackedAreaChartItem3,
            createFullStackedSplineAreaChartItem3,
            createFullStackedStepAreaChartItem3,
            createSplineAreaChartItem3,
            createStackedAreaChartItem3,
            createStackedStepAreaChartItem3,
            createStackedSplineAreaChartItem3,
            createStepAreaChartItem3});
            chartControlCommandGalleryItemGroup3DArea3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createArea3DChartItem3,
            createFullStackedArea3DChartItem3,
            createFullStackedSplineArea3DChartItem3,
            createSplineArea3DChartItem3,
            createStackedArea3DChartItem3,
            createStackedSplineArea3DChartItem3,
            createStepArea3DChartItem3});
            this.commandBarGalleryDropDown5.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DArea3,
            chartControlCommandGalleryItemGroup3DArea3});
            this.commandBarGalleryDropDown5.Manager = null;
            this.commandBarGalleryDropDown5.Name = "commandBarGalleryDropDown5";
            // 
            // commandBarGalleryDropDown6
            // 
            // 
            // 
            // 
            chartControlCommandGalleryItemGroupPoint3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPointChartItem3,
            createBubbleChartItem3});
            chartControlCommandGalleryItemGroupFunnel3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createFunnelChartItem3,
            createFunnel3DChartItem3});
            chartControlCommandGalleryItemGroupFinancial3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createStockChartItem3,
            createCandleStickChartItem3});
            chartControlCommandGalleryItemGroupRadar3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRadarPointChartItem3,
            createRadarLineChartItem3,
            createRadarAreaChartItem3,
            createRadarRangeAreaChartItem3,
            createScatterRadarLineChartItem3});
            chartControlCommandGalleryItemGroupPolar3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPolarPointChartItem3,
            createPolarLineChartItem3,
            createPolarAreaChartItem3,
            createPolarRangeAreaChartItem3,
            createScatterPolarLineChartItem3});
            chartControlCommandGalleryItemGroupRange3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRangeBarChartItem3,
            createSideBySideRangeBarChartItem3,
            createRangeAreaChartItem3,
            createRangeArea3DChartItem3});
            chartControlCommandGalleryItemGroupGantt3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createGanttChartItem3,
            createSideBySideGanttChartItem3});
            chartControlCommandGalleryItemGroupBoxPlot3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBoxPlotChartItem3});
            this.commandBarGalleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroupPoint3,
            chartControlCommandGalleryItemGroupFunnel3,
            chartControlCommandGalleryItemGroupFinancial3,
            chartControlCommandGalleryItemGroupRadar3,
            chartControlCommandGalleryItemGroupPolar3,
            chartControlCommandGalleryItemGroupRange3,
            chartControlCommandGalleryItemGroupGantt3,
            chartControlCommandGalleryItemGroupBoxPlot3});
            this.commandBarGalleryDropDown6.Manager = null;
            this.commandBarGalleryDropDown6.Name = "commandBarGalleryDropDown6";
            // 
            // commandBarGalleryDropDown7
            // 
            // 
            // 
            // 
            changePaletteGalleryItem50.Caption = "Apex";
            changePaletteGalleryItem50.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image")));
            changePaletteGalleryItem50.Tag = "Apex";
            changePaletteGalleryItem51.Caption = "Aspect";
            changePaletteGalleryItem51.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image1")));
            changePaletteGalleryItem51.Tag = "Aspect";
            changePaletteGalleryItem52.Caption = "Black and White";
            changePaletteGalleryItem52.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image2")));
            changePaletteGalleryItem52.Tag = "Black and White";
            changePaletteGalleryItem53.Caption = "Blue";
            changePaletteGalleryItem53.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image3")));
            changePaletteGalleryItem53.Tag = "Blue";
            changePaletteGalleryItem54.Caption = "Blue Green";
            changePaletteGalleryItem54.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image4")));
            changePaletteGalleryItem54.Tag = "Blue Green";
            changePaletteGalleryItem55.Caption = "Blue II";
            changePaletteGalleryItem55.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image5")));
            changePaletteGalleryItem55.Tag = "Blue II";
            changePaletteGalleryItem56.Caption = "Blue Warm";
            changePaletteGalleryItem56.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image6")));
            changePaletteGalleryItem56.Tag = "Blue Warm";
            changePaletteGalleryItem57.Caption = "Chameleon";
            changePaletteGalleryItem57.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image7")));
            changePaletteGalleryItem57.Tag = "Chameleon";
            changePaletteGalleryItem58.Caption = "Civic";
            changePaletteGalleryItem58.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image8")));
            changePaletteGalleryItem58.Tag = "Civic";
            changePaletteGalleryItem59.Caption = "Concourse";
            changePaletteGalleryItem59.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image9")));
            changePaletteGalleryItem59.Tag = "Concourse";
            changePaletteGalleryItem60.Caption = "Default";
            changePaletteGalleryItem60.Checked = true;
            changePaletteGalleryItem60.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image10")));
            changePaletteGalleryItem60.Tag = "Default";
            changePaletteGalleryItem61.Caption = "Equity";
            changePaletteGalleryItem61.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image11")));
            changePaletteGalleryItem61.Tag = "Equity";
            changePaletteGalleryItem62.Caption = "Flow";
            changePaletteGalleryItem62.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image12")));
            changePaletteGalleryItem62.Tag = "Flow";
            changePaletteGalleryItem63.Caption = "Foundry";
            changePaletteGalleryItem63.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image13")));
            changePaletteGalleryItem63.Tag = "Foundry";
            changePaletteGalleryItem64.Caption = "Grayscale";
            changePaletteGalleryItem64.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image14")));
            changePaletteGalleryItem64.Tag = "Grayscale";
            changePaletteGalleryItem65.Caption = "Green";
            changePaletteGalleryItem65.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image15")));
            changePaletteGalleryItem65.Tag = "Green";
            changePaletteGalleryItem66.Caption = "Green Yellow";
            changePaletteGalleryItem66.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image16")));
            changePaletteGalleryItem66.Tag = "Green Yellow";
            changePaletteGalleryItem67.Caption = "In A Fog";
            changePaletteGalleryItem67.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image17")));
            changePaletteGalleryItem67.Tag = "In A Fog";
            changePaletteGalleryItem68.Caption = "Marquee";
            changePaletteGalleryItem68.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image18")));
            changePaletteGalleryItem68.Tag = "Marquee";
            changePaletteGalleryItem69.Caption = "Median";
            changePaletteGalleryItem69.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image19")));
            changePaletteGalleryItem69.Tag = "Median";
            changePaletteGalleryItem70.Caption = "Metro";
            changePaletteGalleryItem70.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image20")));
            changePaletteGalleryItem70.Tag = "Metro";
            changePaletteGalleryItem71.Caption = "Mixed";
            changePaletteGalleryItem71.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image21")));
            changePaletteGalleryItem71.Tag = "Mixed";
            changePaletteGalleryItem72.Caption = "Module";
            changePaletteGalleryItem72.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image22")));
            changePaletteGalleryItem72.Tag = "Module";
            changePaletteGalleryItem73.Caption = "Nature Colors";
            changePaletteGalleryItem73.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image23")));
            changePaletteGalleryItem73.Tag = "Nature Colors";
            changePaletteGalleryItem74.Caption = "Northern Lights";
            changePaletteGalleryItem74.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image24")));
            changePaletteGalleryItem74.Tag = "Northern Lights";
            changePaletteGalleryItem75.Caption = "Office";
            changePaletteGalleryItem75.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image25")));
            changePaletteGalleryItem75.Tag = "Office";
            changePaletteGalleryItem76.Caption = "Office 2013";
            changePaletteGalleryItem76.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image26")));
            changePaletteGalleryItem76.Tag = "Office 2013";
            changePaletteGalleryItem77.Caption = "Opulent";
            changePaletteGalleryItem77.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image27")));
            changePaletteGalleryItem77.Tag = "Opulent";
            changePaletteGalleryItem78.Caption = "Orange";
            changePaletteGalleryItem78.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image28")));
            changePaletteGalleryItem78.Tag = "Orange";
            changePaletteGalleryItem79.Caption = "Orange Red";
            changePaletteGalleryItem79.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image29")));
            changePaletteGalleryItem79.Tag = "Orange Red";
            changePaletteGalleryItem80.Caption = "Oriel";
            changePaletteGalleryItem80.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image30")));
            changePaletteGalleryItem80.Tag = "Oriel";
            changePaletteGalleryItem81.Caption = "Origin";
            changePaletteGalleryItem81.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image31")));
            changePaletteGalleryItem81.Tag = "Origin";
            changePaletteGalleryItem82.Caption = "Paper";
            changePaletteGalleryItem82.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image32")));
            changePaletteGalleryItem82.Tag = "Paper";
            changePaletteGalleryItem83.Caption = "Pastel Kit";
            changePaletteGalleryItem83.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image33")));
            changePaletteGalleryItem83.Tag = "Pastel Kit";
            changePaletteGalleryItem84.Caption = "Red";
            changePaletteGalleryItem84.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image34")));
            changePaletteGalleryItem84.Tag = "Red";
            changePaletteGalleryItem85.Caption = "Red Orange";
            changePaletteGalleryItem85.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image35")));
            changePaletteGalleryItem85.Tag = "Red Orange";
            changePaletteGalleryItem86.Caption = "Red Violet";
            changePaletteGalleryItem86.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image36")));
            changePaletteGalleryItem86.Tag = "Red Violet";
            changePaletteGalleryItem87.Caption = "Slipstream";
            changePaletteGalleryItem87.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image37")));
            changePaletteGalleryItem87.Tag = "Slipstream";
            changePaletteGalleryItem88.Caption = "Solstice";
            changePaletteGalleryItem88.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image38")));
            changePaletteGalleryItem88.Tag = "Solstice";
            changePaletteGalleryItem89.Caption = "Technic";
            changePaletteGalleryItem89.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image39")));
            changePaletteGalleryItem89.Tag = "Technic";
            changePaletteGalleryItem90.Caption = "Terracotta Pie";
            changePaletteGalleryItem90.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image40")));
            changePaletteGalleryItem90.Tag = "Terracotta Pie";
            changePaletteGalleryItem91.Caption = "The Trees";
            changePaletteGalleryItem91.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image41")));
            changePaletteGalleryItem91.Tag = "The Trees";
            changePaletteGalleryItem92.Caption = "Trek";
            changePaletteGalleryItem92.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image42")));
            changePaletteGalleryItem92.Tag = "Trek";
            changePaletteGalleryItem93.Caption = "Urban";
            changePaletteGalleryItem93.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image43")));
            changePaletteGalleryItem93.Tag = "Urban";
            changePaletteGalleryItem94.Caption = "Verve";
            changePaletteGalleryItem94.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image44")));
            changePaletteGalleryItem94.Tag = "Verve";
            changePaletteGalleryItem95.Caption = "Violet";
            changePaletteGalleryItem95.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image45")));
            changePaletteGalleryItem95.Tag = "Violet";
            changePaletteGalleryItem96.Caption = "Violet II";
            changePaletteGalleryItem96.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image46")));
            changePaletteGalleryItem96.Tag = "Violet II";
            changePaletteGalleryItem97.Caption = "Yellow";
            changePaletteGalleryItem97.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image47")));
            changePaletteGalleryItem97.Tag = "Yellow";
            changePaletteGalleryItem98.Caption = "Yellow Orange";
            changePaletteGalleryItem98.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("resource.Image48")));
            changePaletteGalleryItem98.Tag = "Yellow Orange";
            galleryItemGroup2.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            changePaletteGalleryItem50,
            changePaletteGalleryItem51,
            changePaletteGalleryItem52,
            changePaletteGalleryItem53,
            changePaletteGalleryItem54,
            changePaletteGalleryItem55,
            changePaletteGalleryItem56,
            changePaletteGalleryItem57,
            changePaletteGalleryItem58,
            changePaletteGalleryItem59,
            changePaletteGalleryItem60,
            changePaletteGalleryItem61,
            changePaletteGalleryItem62,
            changePaletteGalleryItem63,
            changePaletteGalleryItem64,
            changePaletteGalleryItem65,
            changePaletteGalleryItem66,
            changePaletteGalleryItem67,
            changePaletteGalleryItem68,
            changePaletteGalleryItem69,
            changePaletteGalleryItem70,
            changePaletteGalleryItem71,
            changePaletteGalleryItem72,
            changePaletteGalleryItem73,
            changePaletteGalleryItem74,
            changePaletteGalleryItem75,
            changePaletteGalleryItem76,
            changePaletteGalleryItem77,
            changePaletteGalleryItem78,
            changePaletteGalleryItem79,
            changePaletteGalleryItem80,
            changePaletteGalleryItem81,
            changePaletteGalleryItem82,
            changePaletteGalleryItem83,
            changePaletteGalleryItem84,
            changePaletteGalleryItem85,
            changePaletteGalleryItem86,
            changePaletteGalleryItem87,
            changePaletteGalleryItem88,
            changePaletteGalleryItem89,
            changePaletteGalleryItem90,
            changePaletteGalleryItem91,
            changePaletteGalleryItem92,
            changePaletteGalleryItem93,
            changePaletteGalleryItem94,
            changePaletteGalleryItem95,
            changePaletteGalleryItem96,
            changePaletteGalleryItem97,
            changePaletteGalleryItem98});
            this.commandBarGalleryDropDown7.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup2});
            this.commandBarGalleryDropDown7.Manager = null;
            this.commandBarGalleryDropDown7.Name = "commandBarGalleryDropDown7";
            // 
            // commandBarGalleryDropDown8
            // 
            // 
            // 
            // 
            createBarChartItem4.Caption = "Clustered Column";
            createBarChartItem4.Description = "Compare values across categories by using vertical rectangles.\r\n\r\nUse it when the" +
    " order of categories is not important or for displaying item counts such as a hi" +
    "stogram.";
            createBarChartItem4.Hint = "Compare values across categories by using vertical rectangles.\r\n\r\nUse it when the" +
    " order of categories is not important or for displaying item counts such as a hi" +
    "stogram.";
            createFullStackedBarChartItem4.Caption = "100% Stacked Column";
            createFullStackedBarChartItem4.Description = "Compare the percentage that each value contributes to a total across categories b" +
    "y using vertical rectangles.\r\n\r\nUse it to emphasize the proportion of each data " +
    "series.";
            createFullStackedBarChartItem4.Hint = "Compare the percentage that each value contributes to a total across categories b" +
    "y using vertical rectangles.\r\n\r\nUse it to emphasize the proportion of each data " +
    "series.";
            createSideBySideFullStackedBarChartItem4.Caption = "Clustered 100% Stacked Column";
            createSideBySideFullStackedBarChartItem4.Description = "Combine the advantages of both the 100% Stacked Column and Clustered Column chart" +
    " types, so that you can stack different columns, and combine them into groups ac" +
    "ross the same axis value.";
            createSideBySideFullStackedBarChartItem4.Hint = "Combine the advantages of both the 100% Stacked Column and Clustered Column chart" +
    " types, so that you can stack different columns, and combine them into groups ac" +
    "ross the same axis value.";
            createSideBySideStackedBarChartItem4.Caption = "Clustered Stacked Column";
            createSideBySideStackedBarChartItem4.Description = "Combine the advantages of both the Stacked Column and Clustered Column chart type" +
    "s, so that you can stack different columns, and combine them into groups across " +
    "the same axis value.";
            createSideBySideStackedBarChartItem4.Hint = "Combine the advantages of both the Stacked Column and Clustered Column chart type" +
    "s, so that you can stack different columns, and combine them into groups across " +
    "the same axis value.";
            createStackedBarChartItem4.Caption = "Stacked Column";
            createStackedBarChartItem4.Description = "Compare the contribution of each value to a total across categories by using vert" +
    "ical rectangles.\r\n\r\nUse it to emphasize the total across series for one category" +
    ".";
            createStackedBarChartItem4.Hint = "Compare the contribution of each value to a total across categories by using vert" +
    "ical rectangles.\r\n\r\nUse it to emphasize the total across series for one category" +
    ".";
            createWaterfallChartItem4.Caption = "Waterfall";
            createWaterfallChartItem4.Description = "A Waterfall chart displays a sequence of bars that indicate positive or negative " +
    "changes.";
            createWaterfallChartItem4.Hint = "A Waterfall chart displays a sequence of bars that indicate positive or negative " +
    "changes.";
            chartControlCommandGalleryItemGroup2DColumn4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBarChartItem4,
            createFullStackedBarChartItem4,
            createSideBySideFullStackedBarChartItem4,
            createSideBySideStackedBarChartItem4,
            createStackedBarChartItem4,
            createWaterfallChartItem4});
            createBar3DChartItem4.Caption = "3-D Clustered Column";
            createBar3DChartItem4.Description = "Compare values across categories and display clustered columns in 3-D format.";
            createBar3DChartItem4.Hint = "Compare values across categories and display clustered columns in 3-D format.";
            createFullStackedBar3DChartItem4.Caption = "100% Stacked Column in 3-D";
            createFullStackedBar3DChartItem4.Description = "Compare the percentage each value contributes to a total across categories and di" +
    "splay 100% stacked columns in 3-D format.";
            createFullStackedBar3DChartItem4.Hint = "Compare the percentage each value contributes to a total across categories and di" +
    "splay 100% stacked columns in 3-D format.";
            createManhattanBarChartItem4.Caption = "3-D Column";
            createManhattanBarChartItem4.Description = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            createManhattanBarChartItem4.Hint = "Compare values across categories and across series on three axes.\r\n\r\nUse it when " +
    "the categories and series are equally important.";
            createSideBySideFullStackedBar3DChartItem4.Caption = "Clustered 100% Stacked Column in 3-D";
            createSideBySideFullStackedBar3DChartItem4.Description = "Combine the advantages of both the 100% Stacked Column and Clustered Column chart" +
    " types in 3-D format, so that you can stack different columns, and combine them " +
    "into groups across the same axis value.";
            createSideBySideFullStackedBar3DChartItem4.Hint = "Combine the advantages of both the 100% Stacked Column and Clustered Column chart" +
    " types in 3-D format, so that you can stack different columns, and combine them " +
    "into groups across the same axis value.";
            createSideBySideStackedBar3DChartItem4.Caption = "Clustered Stacked Column in 3-D";
            createSideBySideStackedBar3DChartItem4.Description = "Combine the advantages of both the Stacked Column and Clustered Column chart type" +
    "s in 3-D format, so that you can stack different columns, and combine them into " +
    "groups across the same axis value.";
            createSideBySideStackedBar3DChartItem4.Hint = "Combine the advantages of both the Stacked Column and Clustered Column chart type" +
    "s in 3-D format, so that you can stack different columns, and combine them into " +
    "groups across the same axis value.";
            createStackedBar3DChartItem4.Caption = "Stacked Column in 3-D";
            createStackedBar3DChartItem4.Description = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            createStackedBar3DChartItem4.Hint = "Compare the contribution of each value to a total across categories and display s" +
    "tacked columns in 3-D format.";
            chartControlCommandGalleryItemGroup3DColumn4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBar3DChartItem4,
            createFullStackedBar3DChartItem4,
            createManhattanBarChartItem4,
            createSideBySideFullStackedBar3DChartItem4,
            createSideBySideStackedBar3DChartItem4,
            createStackedBar3DChartItem4});
            createCylinderBar3DChartItem4.Caption = "Clustered Cylinder";
            createCylinderBar3DChartItem4.Description = "Compare values across categories.";
            createCylinderBar3DChartItem4.Hint = "Compare values across categories.";
            createCylinderFullStackedBar3DChartItem4.Caption = "100% Stacked Cylinder";
            createCylinderFullStackedBar3DChartItem4.Description = "Compare the percentage each value contributes to a total across categories.";
            createCylinderFullStackedBar3DChartItem4.Hint = "Compare the percentage each value contributes to a total across categories.";
            createCylinderManhattanBarChartItem4.Caption = "3-D Cylinder";
            createCylinderManhattanBarChartItem4.Description = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            createCylinderManhattanBarChartItem4.Hint = "Compare values across categories and across series and display a cylinder chart o" +
    "n three axes.";
            createCylinderSideBySideFullStackedBar3DChartItem4.Caption = "Clustered 100% Stacked Cylinder";
            createCylinderSideBySideFullStackedBar3DChartItem4.Description = "Combine the advantages of both the 100% Stacked Cylinder and Clustered Cylinder c" +
    "hart types, so that you can stack different cylinders, and combine them into gro" +
    "ups across the same axis value.";
            createCylinderSideBySideFullStackedBar3DChartItem4.Hint = "Combine the advantages of both the 100% Stacked Cylinder and Clustered Cylinder c" +
    "hart types, so that you can stack different cylinders, and combine them into gro" +
    "ups across the same axis value.";
            createCylinderSideBySideStackedBar3DChartItem4.Caption = "Clustered Stacked Cylinder";
            createCylinderSideBySideStackedBar3DChartItem4.Description = "Combine the advantages of both the Stacked Cylinder and Clustered Cylinder chart " +
    "types, so that you can stack different cylinders, and combine them into groups a" +
    "cross the same axis value.";
            createCylinderSideBySideStackedBar3DChartItem4.Hint = "Combine the advantages of both the Stacked Cylinder and Clustered Cylinder chart " +
    "types, so that you can stack different cylinders, and combine them into groups a" +
    "cross the same axis value.";
            createCylinderStackedBar3DChartItem4.Caption = "Stacked Cylinder";
            createCylinderStackedBar3DChartItem4.Description = "Compare the contribution of each value to a total across categories.";
            createCylinderStackedBar3DChartItem4.Hint = "Compare the contribution of each value to a total across categories.";
            chartControlCommandGalleryItemGroupCylinderColumn4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createCylinderBar3DChartItem4,
            createCylinderFullStackedBar3DChartItem4,
            createCylinderManhattanBarChartItem4,
            createCylinderSideBySideFullStackedBar3DChartItem4,
            createCylinderSideBySideStackedBar3DChartItem4,
            createCylinderStackedBar3DChartItem4});
            createConeBar3DChartItem4.Caption = "Clustered Cone";
            createConeBar3DChartItem4.Description = "Compare values across categories.";
            createConeBar3DChartItem4.Hint = "Compare values across categories.";
            createConeFullStackedBar3DChartItem4.Caption = "100% Stacked Cone";
            createConeFullStackedBar3DChartItem4.Description = "Compare the percentage each value contributes to a total across categories.";
            createConeFullStackedBar3DChartItem4.Hint = "Compare the percentage each value contributes to a total across categories.";
            createConeManhattanBarChartItem4.Caption = "3-D Cone";
            createConeManhattanBarChartItem4.Description = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            createConeManhattanBarChartItem4.Hint = "Compare values across categories and across series and display a cone chart on th" +
    "ree axes.";
            createConeSideBySideFullStackedBar3DChartItem4.Caption = "Clustered 100% Stacked Cone";
            createConeSideBySideFullStackedBar3DChartItem4.Description = "Combine the advantages of both the 100% Stacked Cone and Clustered Cone chart typ" +
    "es, so that you can stack different cones, and combine them into groups across t" +
    "he same axis value.";
            createConeSideBySideFullStackedBar3DChartItem4.Hint = "Combine the advantages of both the 100% Stacked Cone and Clustered Cone chart typ" +
    "es, so that you can stack different cones, and combine them into groups across t" +
    "he same axis value.";
            createConeSideBySideStackedBar3DChartItem4.Caption = "Clustered Stacked Cone";
            createConeSideBySideStackedBar3DChartItem4.Description = "Combine the advantages of both the Stacked Cone and Clustered Cone chart types, s" +
    "o that you can stack different cones, and combine them into groups across the sa" +
    "me axis value.";
            createConeSideBySideStackedBar3DChartItem4.Hint = "Combine the advantages of both the Stacked Cone and Clustered Cone chart types, s" +
    "o that you can stack different cones, and combine them into groups across the sa" +
    "me axis value.";
            createConeStackedBar3DChartItem4.Caption = "Stacked Cone";
            createConeStackedBar3DChartItem4.Description = "Compare the contribution of each value to a total across categories.";
            createConeStackedBar3DChartItem4.Hint = "Compare the contribution of each value to a total across categories.";
            chartControlCommandGalleryItemGroupConeColumn4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createConeBar3DChartItem4,
            createConeFullStackedBar3DChartItem4,
            createConeManhattanBarChartItem4,
            createConeSideBySideFullStackedBar3DChartItem4,
            createConeSideBySideStackedBar3DChartItem4,
            createConeStackedBar3DChartItem4});
            createPyramidBar3DChartItem4.Caption = "Clustered Pyramid";
            createPyramidBar3DChartItem4.Description = "Compare values across categories.";
            createPyramidBar3DChartItem4.Hint = "Compare values across categories.";
            createPyramidFullStackedBar3DChartItem4.Caption = "100% Stacked Pyramid";
            createPyramidFullStackedBar3DChartItem4.Description = "Compare the percentage each value contributes to a total across categories.";
            createPyramidFullStackedBar3DChartItem4.Hint = "Compare the percentage each value contributes to a total across categories.";
            createPyramidManhattanBarChartItem4.Caption = "3-D Pyramid";
            createPyramidManhattanBarChartItem4.Description = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            createPyramidManhattanBarChartItem4.Hint = "Compare values across categories and across series and display a pyramid chart on" +
    " three axes.";
            createPyramidSideBySideFullStackedBar3DChartItem4.Caption = "Clustered 100% Stacked Pyramid";
            createPyramidSideBySideFullStackedBar3DChartItem4.Description = "Combine the advantages of both the 100% Stacked Pyramid and Clustered Pyramid cha" +
    "rt types, so that you can stack different pyramids, and combine them into groups" +
    " across the same axis value.";
            createPyramidSideBySideFullStackedBar3DChartItem4.Hint = "Combine the advantages of both the 100% Stacked Pyramid and Clustered Pyramid cha" +
    "rt types, so that you can stack different pyramids, and combine them into groups" +
    " across the same axis value.";
            createPyramidSideBySideStackedBar3DChartItem4.Caption = "Clustered Stacked Pyramid";
            createPyramidSideBySideStackedBar3DChartItem4.Description = "Combine the advantages of both the Stacked Pyramid and Clustered Pyramid chart ty" +
    "pes, so that you can stack different pyramids, and combine them into groups acro" +
    "ss the same axis value.";
            createPyramidSideBySideStackedBar3DChartItem4.Hint = "Combine the advantages of both the Stacked Pyramid and Clustered Pyramid chart ty" +
    "pes, so that you can stack different pyramids, and combine them into groups acro" +
    "ss the same axis value.";
            createPyramidStackedBar3DChartItem4.Caption = "Stacked Pyramid";
            createPyramidStackedBar3DChartItem4.Description = "Compare the contribution of each value to a total across categories.";
            createPyramidStackedBar3DChartItem4.Hint = "Compare the contribution of each value to a total across categories.";
            chartControlCommandGalleryItemGroupPyramidColumn4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPyramidBar3DChartItem4,
            createPyramidFullStackedBar3DChartItem4,
            createPyramidManhattanBarChartItem4,
            createPyramidSideBySideFullStackedBar3DChartItem4,
            createPyramidSideBySideStackedBar3DChartItem4,
            createPyramidStackedBar3DChartItem4});
            this.commandBarGalleryDropDown8.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DColumn4,
            chartControlCommandGalleryItemGroup3DColumn4,
            chartControlCommandGalleryItemGroupCylinderColumn4,
            chartControlCommandGalleryItemGroupConeColumn4,
            chartControlCommandGalleryItemGroupPyramidColumn4});
            this.commandBarGalleryDropDown8.Manager = null;
            this.commandBarGalleryDropDown8.Name = "commandBarGalleryDropDown8";
            // 
            // commandBarGalleryDropDown9
            // 
            // 
            // 
            // 
            createLineChartItem4.Caption = "Line";
            createLineChartItem4.Description = "Displays trend overtime (dates, years) or ordered categories. Useful when there a" +
    "re many data points and the order is important.";
            createLineChartItem4.Hint = "Displays trend overtime (dates, years) or ordered categories. Useful when there a" +
    "re many data points and the order is important.";
            createFullStackedLineChartItem4.Caption = "100% Stacked Line";
            createFullStackedLineChartItem4.Description = "Displays the trend of the percentage each value contributes over time or ordered " +
    "categories.";
            createFullStackedLineChartItem4.Hint = "Displays the trend of the percentage each value contributes over time or ordered " +
    "categories.";
            createScatterLineChartItem4.Caption = "Scatter Line";
            createScatterLineChartItem4.Description = "Displays series points in the same order as they appear in the collection.";
            createScatterLineChartItem4.Hint = "Displays series points in the same order as they appear in the collection.";
            createSplineChartItem4.Caption = "Spline";
            createSplineChartItem4.Description = "Plot a fitted curve through each data point in a series.";
            createSplineChartItem4.Hint = "Plot a fitted curve through each data point in a series.";
            createStackedLineChartItem4.Caption = "Stacked Line";
            createStackedLineChartItem4.Description = "Displays the trend of the contribution of each value over time or ordered categor" +
    "ies.";
            createStackedLineChartItem4.Hint = "Displays the trend of the contribution of each value over time or ordered categor" +
    "ies.";
            createStepLineChartItem4.Caption = "Step Line";
            createStepLineChartItem4.Description = "Show to what extent values have changed for different points in the same series.";
            createStepLineChartItem4.Hint = "Show to what extent values have changed for different points in the same series.";
            chartControlCommandGalleryItemGroup2DLine4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLineChartItem4,
            createFullStackedLineChartItem4,
            createScatterLineChartItem4,
            createSplineChartItem4,
            createStackedLineChartItem4,
            createStepLineChartItem4});
            createLine3DChartItem4.Caption = "3-D Line";
            createLine3DChartItem4.Description = "Displays each row or column of data as a 3-D ribbon on three axes.";
            createLine3DChartItem4.Hint = "Displays each row or column of data as a 3-D ribbon on three axes.";
            createFullStackedLine3DChartItem4.Caption = "100% Stacked Line in 3-D";
            createFullStackedLine3DChartItem4.Description = "Displays all series stacked and is useful when it is necessary to compare how muc" +
    "h each series adds to the total aggregate value for specific arguments (as perce" +
    "nts).";
            createFullStackedLine3DChartItem4.Hint = "Displays all series stacked and is useful when it is necessary to compare how muc" +
    "h each series adds to the total aggregate value for specific arguments (as perce" +
    "nts).";
            createSpline3DChartItem4.Caption = "3-D Spline";
            createSpline3DChartItem4.Description = "Plot a fitted curve through each data point in a series.";
            createSpline3DChartItem4.Hint = "Plot a fitted curve through each data point in a series.";
            createStackedLine3DChartItem4.Caption = "Stacked Line in 3-D";
            createStackedLine3DChartItem4.Description = "Displays all points from different series in a stacked manner and is useful when " +
    "it is necessary to compare how much each series adds to the total aggregate valu" +
    "e for specific arguments.";
            createStackedLine3DChartItem4.Hint = "Displays all points from different series in a stacked manner and is useful when " +
    "it is necessary to compare how much each series adds to the total aggregate valu" +
    "e for specific arguments.";
            createStepLine3DChartItem4.Caption = "Step Line in 3-D";
            createStepLine3DChartItem4.Description = "Show to what extent values have changed for different points in the same series.";
            createStepLine3DChartItem4.Hint = "Show to what extent values have changed for different points in the same series.";
            chartControlCommandGalleryItemGroup3DLine4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createLine3DChartItem4,
            createFullStackedLine3DChartItem4,
            createSpline3DChartItem4,
            createStackedLine3DChartItem4,
            createStepLine3DChartItem4});
            this.commandBarGalleryDropDown9.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DLine4,
            chartControlCommandGalleryItemGroup3DLine4});
            this.commandBarGalleryDropDown9.Manager = null;
            this.commandBarGalleryDropDown9.Name = "commandBarGalleryDropDown9";
            // 
            // commandBarGalleryDropDown10
            // 
            // 
            // 
            // 
            createPieChartItem4.Caption = "Pie";
            createPieChartItem4.Description = "Displays the contribution of each value to a total.\r\n\r\nUse it when the values can" +
    " be added together or when you have only one data series and all values are posi" +
    "tive.";
            createPieChartItem4.Hint = "Displays the contribution of each value to a total.\r\n\r\nUse it when the values can" +
    " be added together or when you have only one data series and all values are posi" +
    "tive.";
            createDoughnutChartItem4.Caption = "Doughnut";
            createDoughnutChartItem4.Description = "Displays the contribution of each value to a total like a pie chart, but it can c" +
    "ontain multiple series.";
            createDoughnutChartItem4.Hint = "Displays the contribution of each value to a total like a pie chart, but it can c" +
    "ontain multiple series.";
            createNestedDoughnutChartItem4.Caption = "Nested Doughnut";
            createNestedDoughnutChartItem4.Description = "Displays the contribution of each value to a total while comparing series with on" +
    "e doughnut nested in another one.";
            createNestedDoughnutChartItem4.Hint = "Displays the contribution of each value to a total while comparing series with on" +
    "e doughnut nested in another one.";
            chartControlCommandGalleryItemGroup2DPie4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPieChartItem4,
            createDoughnutChartItem4,
            createNestedDoughnutChartItem4});
            createPie3DChartItem4.Caption = "Pie in 3-D";
            createPie3DChartItem4.Description = "Displays the contribution of each value to a total.";
            createPie3DChartItem4.Hint = "Displays the contribution of each value to a total.";
            createDoughnut3DChartItem4.Caption = "Doughnut in 3-D";
            createDoughnut3DChartItem4.Description = "Compare the percentage values of different point arguments in the same series, an" +
    "d illustrate these values as easy to understand pie slices, but with a hole in i" +
    "ts center.";
            createDoughnut3DChartItem4.Hint = "Compare the percentage values of different point arguments in the same series, an" +
    "d illustrate these values as easy to understand pie slices, but with a hole in i" +
    "ts center.";
            chartControlCommandGalleryItemGroup3DPie4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPie3DChartItem4,
            createDoughnut3DChartItem4});
            this.commandBarGalleryDropDown10.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DPie4,
            chartControlCommandGalleryItemGroup3DPie4});
            this.commandBarGalleryDropDown10.Manager = null;
            this.commandBarGalleryDropDown10.Name = "commandBarGalleryDropDown10";
            // 
            // commandBarGalleryDropDown11
            // 
            // 
            // 
            // 
            createRotatedBarChartItem4.Caption = "Bar";
            createRotatedBarChartItem4.Description = "Insert a bar chart.\r\n\r\nBar charts are the best chart type for comparing multiple " +
    "values.";
            createRotatedBarChartItem4.Hint = "Insert a bar chart.\r\n\r\nBar charts are the best chart type for comparing multiple " +
    "values.";
            createRotatedFullStackedBarChartItem4.Caption = "100% Stacked Bar";
            createRotatedFullStackedBarChartItem4.Description = resources.GetString("createRotatedFullStackedBarChartItem4.Description");
            createRotatedFullStackedBarChartItem4.Hint = resources.GetString("createRotatedFullStackedBarChartItem4.Hint");
            createRotatedSideBySideFullStackedBarChartItem4.Caption = "Clustered 100% Stacked Bar";
            createRotatedSideBySideFullStackedBarChartItem4.Description = "Combine the advantages of both the 100% Stacked Bar and Clustered Bar chart types" +
    ", so you can stack different bars, and combine them into groups across the same " +
    "axis value.";
            createRotatedSideBySideFullStackedBarChartItem4.Hint = "Combine the advantages of both the 100% Stacked Bar and Clustered Bar chart types" +
    ", so you can stack different bars, and combine them into groups across the same " +
    "axis value.";
            createRotatedSideBySideStackedBarChartItem4.Caption = "Clustered Stacked Bar";
            createRotatedSideBySideStackedBarChartItem4.Description = "Combine the advantages of both the Stacked Bar and Clustered Bar chart types, so " +
    "that you can stack different bars, and combine them into groups across the same " +
    "axis value.";
            createRotatedSideBySideStackedBarChartItem4.Hint = "Combine the advantages of both the Stacked Bar and Clustered Bar chart types, so " +
    "that you can stack different bars, and combine them into groups across the same " +
    "axis value.";
            createRotatedStackedBarChartItem4.Caption = "Stacked Bar";
            createRotatedStackedBarChartItem4.Description = "Compare the contribution of each value to a total across categories by using hori" +
    "zontal rectangles.";
            createRotatedStackedBarChartItem4.Hint = "Compare the contribution of each value to a total across categories by using hori" +
    "zontal rectangles.";
            chartControlCommandGalleryItemGroup2DBar4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRotatedBarChartItem4,
            createRotatedFullStackedBarChartItem4,
            createRotatedSideBySideFullStackedBarChartItem4,
            createRotatedSideBySideStackedBarChartItem4,
            createRotatedStackedBarChartItem4});
            this.commandBarGalleryDropDown11.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DBar4});
            this.commandBarGalleryDropDown11.Manager = null;
            this.commandBarGalleryDropDown11.Name = "commandBarGalleryDropDown11";
            // 
            // commandBarGalleryDropDown12
            // 
            // 
            // 
            // 
            createAreaChartItem4.Caption = "Area";
            createAreaChartItem4.Description = "Displays the trend of values over time or categories.";
            createAreaChartItem4.Hint = "Displays the trend of values over time or categories.";
            createFullStackedAreaChartItem4.Caption = "100% Stacked Area";
            createFullStackedAreaChartItem4.Description = "Displays the trend of the percentage each value contributes over time or categori" +
    "es.\r\n\r\nUse it to emphasize the trend in the proportion of each series.";
            createFullStackedAreaChartItem4.Hint = "Displays the trend of the percentage each value contributes over time or categori" +
    "es.\r\n\r\nUse it to emphasize the trend in the proportion of each series.";
            createFullStackedSplineAreaChartItem4.Caption = "100% Stacked Spline Area";
            createFullStackedSplineAreaChartItem4.Description = "Behave similar to 100% Stacked Area, but plot a fitted curve through each data po" +
    "int in a series.";
            createFullStackedSplineAreaChartItem4.Hint = "Behave similar to 100% Stacked Area, but plot a fitted curve through each data po" +
    "int in a series.";
            createFullStackedStepAreaChartItem4.Caption = "100% Stacked Step Area";
            createFullStackedStepAreaChartItem4.Description = "Behaves similarly to the 100% Stacked Area Chart but connects data points using h" +
    "orizontal and vertical lines.";
            createFullStackedStepAreaChartItem4.Hint = "Behaves similarly to the 100% Stacked Area Chart but connects data points using h" +
    "orizontal and vertical lines.";
            createSplineAreaChartItem4.Caption = "Spline Area";
            createSplineAreaChartItem4.Description = "Behave similar to Area Chart but plot a fitted curve through each data point in a" +
    " series.";
            createSplineAreaChartItem4.Hint = "Behave similar to Area Chart but plot a fitted curve through each data point in a" +
    " series.";
            createStackedAreaChartItem4.Caption = "Stacked Area";
            createStackedAreaChartItem4.Description = "Displays the trend of the contribution of each value over time or categories.\r\n\r\n" +
    "Use it to emphasize the trend in the total across series for one category.";
            createStackedAreaChartItem4.Hint = "Displays the trend of the contribution of each value over time or categories.\r\n\r\n" +
    "Use it to emphasize the trend in the total across series for one category.";
            createStackedStepAreaChartItem4.Caption = "Stacked Step Area";
            createStackedStepAreaChartItem4.Description = "Behaves similarly to the Stacked Area Chart but connects data points using horizo" +
    "ntal and vertical lines.";
            createStackedStepAreaChartItem4.Hint = "Behaves similarly to the Stacked Area Chart but connects data points using horizo" +
    "ntal and vertical lines.";
            createStackedSplineAreaChartItem4.Caption = "Stacked Spline Area";
            createStackedSplineAreaChartItem4.Description = "Behave similar to Stacked Area Chart but plot a fitted curve through each data po" +
    "int in a series.";
            createStackedSplineAreaChartItem4.Hint = "Behave similar to Stacked Area Chart but plot a fitted curve through each data po" +
    "int in a series.";
            createStepAreaChartItem4.Caption = "Step Area";
            createStepAreaChartItem4.Description = "Show how much values have changed for different points of the same series.";
            createStepAreaChartItem4.Hint = "Show how much values have changed for different points of the same series.";
            chartControlCommandGalleryItemGroup2DArea4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createAreaChartItem4,
            createFullStackedAreaChartItem4,
            createFullStackedSplineAreaChartItem4,
            createFullStackedStepAreaChartItem4,
            createSplineAreaChartItem4,
            createStackedAreaChartItem4,
            createStackedStepAreaChartItem4,
            createStackedSplineAreaChartItem4,
            createStepAreaChartItem4});
            createArea3DChartItem4.Caption = "3-D Area";
            createArea3DChartItem4.Description = resources.GetString("createArea3DChartItem4.Description");
            createArea3DChartItem4.Hint = resources.GetString("createArea3DChartItem4.Hint");
            createFullStackedArea3DChartItem4.Caption = "100% Stacked Area in 3-D";
            createFullStackedArea3DChartItem4.Description = resources.GetString("createFullStackedArea3DChartItem4.Description");
            createFullStackedArea3DChartItem4.Hint = resources.GetString("createFullStackedArea3DChartItem4.Hint");
            createFullStackedSplineArea3DChartItem4.Caption = "100% Stacked Spline Area in 3-D";
            createFullStackedSplineArea3DChartItem4.Description = "Behave similar to 100% Stacked Area Chart in 3D, but plot a fitted curve through " +
    "each data point in a series.";
            createFullStackedSplineArea3DChartItem4.Hint = "Behave similar to 100% Stacked Area Chart in 3D, but plot a fitted curve through " +
    "each data point in a series.";
            createSplineArea3DChartItem4.Caption = "Spline Area in 3-D";
            createSplineArea3DChartItem4.Description = "Behave similar to 3D Area Chart, but plot a fitted curve through each data point " +
    "in a series.";
            createSplineArea3DChartItem4.Hint = "Behave similar to 3D Area Chart, but plot a fitted curve through each data point " +
    "in a series.";
            createStackedArea3DChartItem4.Caption = "Stacked Area in 3-D";
            createStackedArea3DChartItem4.Description = "Displays series as areas on a diagram, so that the value of each data point is ag" +
    "gregated with the underlying data points\' values.";
            createStackedArea3DChartItem4.Hint = "Displays series as areas on a diagram, so that the value of each data point is ag" +
    "gregated with the underlying data points\' values.";
            createStackedSplineArea3DChartItem4.Caption = "Stacked Spline Area in 3-D";
            createStackedSplineArea3DChartItem4.Description = "Behave similar to Stacked Area in 3D chart, but plot a fitted curve through each " +
    "data point in a series.";
            createStackedSplineArea3DChartItem4.Hint = "Behave similar to Stacked Area in 3D chart, but plot a fitted curve through each " +
    "data point in a series.";
            createStepArea3DChartItem4.Caption = "Step Area in 3-D";
            createStepArea3DChartItem4.Description = "Show to what extent values have changed for different points in the same series.";
            createStepArea3DChartItem4.Hint = "Show to what extent values have changed for different points in the same series.";
            chartControlCommandGalleryItemGroup3DArea4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createArea3DChartItem4,
            createFullStackedArea3DChartItem4,
            createFullStackedSplineArea3DChartItem4,
            createSplineArea3DChartItem4,
            createStackedArea3DChartItem4,
            createStackedSplineArea3DChartItem4,
            createStepArea3DChartItem4});
            this.commandBarGalleryDropDown12.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroup2DArea4,
            chartControlCommandGalleryItemGroup3DArea4});
            this.commandBarGalleryDropDown12.Manager = null;
            this.commandBarGalleryDropDown12.Name = "commandBarGalleryDropDown12";
            // 
            // commandBarGalleryDropDown13
            // 
            // 
            // 
            // 
            createPointChartItem4.Caption = "Point";
            createPointChartItem4.Description = "Use it when it\'s necessary to show stand-alone data points on the same chart plot" +
    ".";
            createPointChartItem4.Hint = "Use it when it\'s necessary to show stand-alone data points on the same chart plot" +
    ".";
            createBubbleChartItem4.Caption = "Bubble";
            createBubbleChartItem4.Description = "Resemble a Scatter chart, but compare sets of three values instead of two. The th" +
    "ird value determines the size of the bubble marker.";
            createBubbleChartItem4.Hint = "Resemble a Scatter chart, but compare sets of three values instead of two. The th" +
    "ird value determines the size of the bubble marker.";
            chartControlCommandGalleryItemGroupPoint4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPointChartItem4,
            createBubbleChartItem4});
            createFunnelChartItem4.Caption = "Funnel";
            createFunnelChartItem4.Description = resources.GetString("createFunnelChartItem4.Description");
            createFunnelChartItem4.Hint = resources.GetString("createFunnelChartItem4.Hint");
            createFunnel3DChartItem4.Caption = "3-D Funnel";
            createFunnel3DChartItem4.Description = resources.GetString("createFunnel3DChartItem4.Description");
            createFunnel3DChartItem4.Hint = resources.GetString("createFunnel3DChartItem4.Hint");
            chartControlCommandGalleryItemGroupFunnel4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createFunnelChartItem4,
            createFunnel3DChartItem4});
            createStockChartItem4.Caption = "Stock";
            createStockChartItem4.Description = resources.GetString("createStockChartItem4.Description");
            createStockChartItem4.Hint = resources.GetString("createStockChartItem4.Hint");
            createCandleStickChartItem4.Caption = "Candle Stick";
            createCandleStickChartItem4.Description = resources.GetString("createCandleStickChartItem4.Description");
            createCandleStickChartItem4.Hint = resources.GetString("createCandleStickChartItem4.Hint");
            chartControlCommandGalleryItemGroupFinancial4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createStockChartItem4,
            createCandleStickChartItem4});
            createRadarPointChartItem4.Caption = "Radar Point";
            createRadarPointChartItem4.Description = "Show points from two or more different series on the same points arguments on a c" +
    "ircular grid that has multiple axes along which data can be plotted.";
            createRadarPointChartItem4.Hint = "Show points from two or more different series on the same points arguments on a c" +
    "ircular grid that has multiple axes along which data can be plotted.";
            createRadarLineChartItem4.Caption = "Radar Line";
            createRadarLineChartItem4.Description = "Show trends for several series and compare their values for the same points argum" +
    "ents on a circular grid that has multiple axes along which data can be plotted.";
            createRadarLineChartItem4.Hint = "Show trends for several series and compare their values for the same points argum" +
    "ents on a circular grid that has multiple axes along which data can be plotted.";
            createRadarAreaChartItem4.Caption = "Radar Area";
            createRadarAreaChartItem4.Description = "Displays series as filled area on a circular grid that has multiple axes along wh" +
    "ich data can be plotted.";
            createRadarAreaChartItem4.Hint = "Displays series as filled area on a circular grid that has multiple axes along wh" +
    "ich data can be plotted.";
            createRadarRangeAreaChartItem4.Caption = "Radar Range Area";
            createRadarRangeAreaChartItem4.Description = resources.GetString("createRadarRangeAreaChartItem4.Description");
            createRadarRangeAreaChartItem4.Hint = resources.GetString("createRadarRangeAreaChartItem4.Hint");
            createScatterRadarLineChartItem4.Caption = "Scatter Radar Line";
            createScatterRadarLineChartItem4.Description = resources.GetString("createScatterRadarLineChartItem4.Description");
            createScatterRadarLineChartItem4.Hint = resources.GetString("createScatterRadarLineChartItem4.Hint");
            chartControlCommandGalleryItemGroupRadar4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRadarPointChartItem4,
            createRadarLineChartItem4,
            createRadarAreaChartItem4,
            createRadarRangeAreaChartItem4,
            createScatterRadarLineChartItem4});
            createPolarPointChartItem4.Caption = "Polar Point";
            createPolarPointChartItem4.Description = "Show points from two or more different series on the same circular diagram on the" +
    " basis of angles.";
            createPolarPointChartItem4.Hint = "Show points from two or more different series on the same circular diagram on the" +
    " basis of angles.";
            createPolarLineChartItem4.Caption = "Polar Line";
            createPolarLineChartItem4.Description = "Show trends for several series and compare their values for the same points argum" +
    "ents on a circular diagram on the basis of angles.";
            createPolarLineChartItem4.Hint = "Show trends for several series and compare their values for the same points argum" +
    "ents on a circular diagram on the basis of angles.";
            createPolarAreaChartItem4.Caption = "Polar Area";
            createPolarAreaChartItem4.Description = "Displays series as filled area on a circular diagram on the basis of angles.";
            createPolarAreaChartItem4.Hint = "Displays series as filled area on a circular diagram on the basis of angles.";
            createPolarRangeAreaChartItem4.Caption = "Polar Range Area";
            createPolarRangeAreaChartItem4.Description = resources.GetString("createPolarRangeAreaChartItem4.Description");
            createPolarRangeAreaChartItem4.Hint = resources.GetString("createPolarRangeAreaChartItem4.Hint");
            createScatterPolarLineChartItem4.Caption = "Scatter Polar Line";
            createScatterPolarLineChartItem4.Description = resources.GetString("createScatterPolarLineChartItem4.Description");
            createScatterPolarLineChartItem4.Hint = resources.GetString("createScatterPolarLineChartItem4.Hint");
            chartControlCommandGalleryItemGroupPolar4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createPolarPointChartItem4,
            createPolarLineChartItem4,
            createPolarAreaChartItem4,
            createPolarRangeAreaChartItem4,
            createScatterPolarLineChartItem4});
            createRangeBarChartItem4.Caption = "Range Column";
            createRangeBarChartItem4.Description = "Displays vertical columns along the Y-axis (the axis of values). Each column repr" +
    "esents a range of data for each argument value.";
            createRangeBarChartItem4.Hint = "Displays vertical columns along the Y-axis (the axis of values). Each column repr" +
    "esents a range of data for each argument value.";
            createSideBySideRangeBarChartItem4.Caption = "Clustered Range Column";
            createSideBySideRangeBarChartItem4.Description = "Show activity columns from different series grouped by their arguments. Each colu" +
    "mn represents a range of data with two values for each argument value.";
            createSideBySideRangeBarChartItem4.Hint = "Show activity columns from different series grouped by their arguments. Each colu" +
    "mn represents a range of data with two values for each argument value.";
            createRangeAreaChartItem4.Caption = "Range Area";
            createRangeAreaChartItem4.Description = resources.GetString("createRangeAreaChartItem4.Description");
            createRangeAreaChartItem4.Hint = resources.GetString("createRangeAreaChartItem4.Hint");
            createRangeArea3DChartItem4.Caption = "Range Area in 3-D";
            createRangeArea3DChartItem4.Description = resources.GetString("createRangeArea3DChartItem4.Description");
            createRangeArea3DChartItem4.Hint = resources.GetString("createRangeArea3DChartItem4.Hint");
            chartControlCommandGalleryItemGroupRange4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createRangeBarChartItem4,
            createSideBySideRangeBarChartItem4,
            createRangeAreaChartItem4,
            createRangeArea3DChartItem4});
            createGanttChartItem4.Caption = "Gantt";
            createGanttChartItem4.Description = "Track different activities during the time frame.";
            createGanttChartItem4.Hint = "Track different activities during the time frame.";
            createSideBySideGanttChartItem4.Caption = "Clustered Gantt";
            createSideBySideGanttChartItem4.Description = resources.GetString("createSideBySideGanttChartItem4.Description");
            createSideBySideGanttChartItem4.Hint = resources.GetString("createSideBySideGanttChartItem4.Hint");
            chartControlCommandGalleryItemGroupGantt4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createGanttChartItem4,
            createSideBySideGanttChartItem4});
            createBoxPlotChartItem4.Caption = "BoxPlot";
            createBoxPlotChartItem4.Description = resources.GetString("createBoxPlotChartItem4.Description");
            createBoxPlotChartItem4.Hint = resources.GetString("createBoxPlotChartItem4.Hint");
            chartControlCommandGalleryItemGroupBoxPlot4.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
            createBoxPlotChartItem4});
            this.commandBarGalleryDropDown13.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            chartControlCommandGalleryItemGroupPoint4,
            chartControlCommandGalleryItemGroupFunnel4,
            chartControlCommandGalleryItemGroupFinancial4,
            chartControlCommandGalleryItemGroupRadar4,
            chartControlCommandGalleryItemGroupPolar4,
            chartControlCommandGalleryItemGroupRange4,
            chartControlCommandGalleryItemGroupGantt4,
            chartControlCommandGalleryItemGroupBoxPlot4});
            this.commandBarGalleryDropDown13.Manager = null;
            this.commandBarGalleryDropDown13.Name = "commandBarGalleryDropDown13";
            // 
            // commandBarGalleryDropDown14
            // 
            this.commandBarGalleryDropDown14.Manager = null;
            this.commandBarGalleryDropDown14.Name = "commandBarGalleryDropDown14";
            // 
            // commandBarGalleryDropDown15
            // 
            this.commandBarGalleryDropDown15.Manager = null;
            this.commandBarGalleryDropDown15.Name = "commandBarGalleryDropDown15";
            // 
            // ViewElecPriceByDayDlg
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(666, 388);
            this.IsMdiContainer = true;
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name = "ViewElecPriceByDayDlg";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "电价信息";
            this.Load += new System.EventHandler(this.ViewElecPriceByDayDlg_Load);
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.commandBarGalleryDropDown15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSourceGrid)).EndInit();
            this.ResumeLayout(false);
 
        }
 
        #endregion
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown1;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown2;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown3;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown4;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown5;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown6;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown7;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown8;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown9;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown10;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown11;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown12;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown13;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown14;
        private DevExpress.XtraBars.Commands.CommandBarGalleryDropDown commandBarGalleryDropDown15;
        private System.Windows.Forms.BindingSource bindingSourceGrid;
    }
}