-
Notifications
You must be signed in to change notification settings - Fork 13
/
CanvasControlLibrary.cs
2997 lines (2850 loc) · 120 KB
/
CanvasControlLibrary.cs
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
/*
Canvas Control Library Copyright 2012
Created by Akshay Srinivasan [akshay.srin@gmail.com]
This javascript code is provided as is with no warranty implied.
Akshay Srinivasan are not liable or responsible for any consequence of
using this code in your applications.
You are free to use it and/or change it for both commercial and non-commercial
applications as long as you give credit to Akshay Srinivasan the creator
of this code.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Text;
using System.Xml;
using System.Web.UI;
using System.Reflection;
using System.Collections;
/// <summary>
/// Summary description for CanvasControlLibrary
/// </summary>
public static class Sessions
{
public static List<CanvasControlLibrary.Session> SessionsData = new List<CanvasControlLibrary.Session>();
}
public class CanvasControlLibrary
{
public Session CurrentSessionObj;
public List<object> InputParams;
public class LightWeightDictionary
{
public class KeyValuePair{
public string Key;
public object Value;
public KeyValuePair(string key, object value)
{
Key = key;
Value = value;
}
}
List<KeyValuePair> KeyValuePairs;
public void Add(string key, object value)
{
KeyValuePair kvp = new KeyValuePair(key, value);
KeyValuePairs.Add(kvp);
}
public object GetValue(string key)
{
foreach (KeyValuePair kvp in KeyValuePairs)
{
if (kvp.Key == key)
{
return kvp.Value;
}
}
return null;
}
public void SetValue(string key, object value)
{
foreach (KeyValuePair kvp in KeyValuePairs)
{
if (kvp.Key == key)
{
kvp.Value = value;
}
}
}
public List<string> GetAllKeys()
{
List<string> keys = new List<string>();
foreach (KeyValuePair kvp in KeyValuePairs)
{
keys.Add(kvp.Key);
}
return keys;
}
public LightWeightDictionary()
{
KeyValuePairs = new List<KeyValuePair>();
}
}
public class Session
{
public Guid ID;
public LightWeightDictionary Data;
public Session()
{
ID = Guid.NewGuid();
Data = new LightWeightDictionary();
}
}
public List<CCLWindow> Windows = new List<CCLWindow>();
public class CCLWindow
{
public string WindowCount { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string Depth { get; set; }
public string CanvasID { get; set; }
public string ParentWindowID { get; set; }
public List<object> ChildWindowIDs { get; set; }
public string ControlType { get; set; }
public string ControlNameID { get; set; }
public string MultiWindowControlsMainWindowId { get; set; }
public string TabStopIndex { get; set; }
public CCLWindow()
{
ChildWindowIDs = new List<object>();
}
}
public List<CCLLabelProps> LabelPropsArray = new List<CCLLabelProps>();
public class CCLLabelProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string Text { get; set; }
public string TextHeight { get; set; }
public string TextFontString { get; set; }
public string TextColor { get; set; }
public string IsHyperlink { get; set; }
public string URL { get; set; }
public string NoBrowserHistory { get; set; }
public string IsNewBrowserWindow { get; set; }
public string NameOfNewBrowserWindow { get; set; }
public string WidthOfNewBrowserWindow { get; set; }
public string HeightOfNewBrowserWindow { get; set; }
public string NewBrowserWindowIsResizable { get; set; }
public string NewBrowserWindowHasScrollBars { get; set; }
public string NewBrowserWindowHasToolbar { get; set; }
public string NewBrowserWindowHasLocationOrURLOrAddressBox { get; set; }
public string NewBrowserWindowHasDirectoriesOrExtraButtons { get; set; }
public string NewBrowserWindowHasStatusBar { get; set; }
public string NewBrowserWindowHasMenuBar { get; set; }
public string NewBrowserWindowCopyHistory { get; set; }
public string BackGroundColor { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLButtonProps> ButtonPropsArray = new List<CCLButtonProps>();
public class CCLButtonProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string Text { get; set; }
public string EdgeRadius { get; set; }
public string BottomColorStart { get; set; }
public string BottomColorEnd { get; set; }
public string TopColorStart { get; set; }
public string TopColorEnd { get; set; }
public string TextHeight { get; set; }
public string TextFontString { get; set; }
public string TextColor { get; set; }
public string IsPressed { get; set; }
public string BorderColor { get; set; }
public string IsHyperlink { get; set; }
public string URL { get; set; }
public string NoBrowserHistory { get; set; }
public string IsNewBrowserWindow { get; set; }
public string NameOfNewBrowserWindow { get; set; }
public string WidthOfNewBrowserWindow { get; set; }
public string HeightOfNewBrowserWindow { get; set; }
public string NewBrowserWindowIsResizable { get; set; }
public string NewBrowserWindowHasScrollBars { get; set; }
public string NewBrowserWindowHasToolbar { get; set; }
public string NewBrowserWindowHasLocationOrURLOrAddressBox { get; set; }
public string NewBrowserWindowHasDirectoriesOrExtraButtons { get; set; }
public string NewBrowserWindowHasStatusBar { get; set; }
public string NewBrowserWindowHasMenuBar { get; set; }
public string NewBrowserWindowCopyHistory { get; set; }
public object Tag { get; set; }
public string Theme { get; set; }
public string HasGloss { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLScrollBarProps> ScrollBarPropsArray = new List<CCLScrollBarProps>();
public class CCLScrollBarProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Len { get; set; }
public string SelectedID { get; set; }
public string MaxItems { get; set; }
public string Alignment { get; set; }
public string MouseDownState { get; set; }
public object Tag { get; set; }
public string OwnedByWindowID { get; set; }
}
public List<CCLGridProps> GridPropsArray = new List<CCLGridProps>();
public class CCLGridProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> RowData { get; set; }
public List<object> HeaderData { get; set; }
public string RowDataTextColor { get; set; }
public string RowDataTextFontString { get; set; }
public string HeaderDataTextColor { get; set; }
public string HeaderDataTextHeight { get; set; }
public string HeaderDataTextFontString { get; set; }
public string CellClickFunction { get; set; }
public string DataRowHeight { get; set; }
public List<object> ColumnWidthArray { get; set; }
public string HeaderRowHeight { get; set; }
public string HasBorder { get; set; }
public string BorderColor { get; set; }
public string BorderLineWidth { get; set; }
public string VScrollBarWindowId { get; set; }
public string HScrollBarWindowId { get; set; }
public string HeaderBackgroundStartColor { get; set; }
public string HeaderBackgroundEndColor { get; set; }
public string AltRowBgColorStart1 { get; set; }
public string AltRowBgColorEnd1 { get; set; }
public string AltRowBgColorStart2 { get; set; }
public string AltRowBgColorEnd2 { get; set; }
public object Tag { get; set; }
public string HasSelectedRow { get; set; }
public string SelectedRowBgColor { get; set; }
public string HasSelectedCell { get; set; }
public string SelectedCellBgColor { get; set; }
public string SelectedRow { get; set; }
public string SelectedCell { get; set; }
public string HasSorting { get; set; }
public List<object> SortableColumnsArray { get; set; }
public string HasSortImages { get; set; }
public List<object> SortImageURLsArray { get; set; }
public string SortImageShowIndex { get; set; }
public List<object> SortedData { get; set; }
public string CustomSortFunction { get; set; }
public string HasFilters { get; set; }
public List<object> FilterColumnsArray { get; set; }
public string HasFilterImageIcon { get; set; }
public string FilterImageIconURL { get; set; }
public List<object> FilteredData { get; set; }
public List<object> SortClickExtents { get; set; }
public string HasUIDs { get; set; }
public List<object> OrigUIDs { get; set; }
public List<object> SortedUIDs { get; set; }
public string TabStopIndex { get; set; }
public CCLGridProps()
{
RowData = new List<object>();
HeaderData = new List<object>();
ColumnWidthArray = new List<object>();
SortableColumnsArray = new List<object>();
SortImageURLsArray = new List<object>();
SortedData = new List<object>();
FilterColumnsArray = new List<object>();
FilteredData = new List<object>();
SortClickExtents = new List<object>();
OrigUIDs = new List<object>();
SortedUIDs = new List<object>();
}
}
List<CCLComboBoxProps> ComboBoxPropsArray = new List<CCLComboBoxProps>();
public class CCLComboBoxProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string TextAreaWindowID { get; set; }
public string ButtonWindowID { get; set; }
public string ListAreaWindowID { get; set; }
public string VScrollBarWindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string SelectedID { get; set; }
public string TextAreaTextColor { get; set; }
public string TextAreaTextHeight { get; set; }
public string TextAreaFontString { get; set; }
public string ListAreaTextColor { get; set; }
public string ListAreaTextHeight { get; set; }
public string ListAreaFontString { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLComboBoxProps()
{
Data = new List<object>();
}
}
public List<CCLCheckBoxProps> CheckBoxPropsArray = new List<CCLCheckBoxProps>();
public class CCLCheckBoxProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Status { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLRadioButtonGroupProps> RadioButtonGroupPropsArray = new List<CCLRadioButtonGroupProps>();
public class CCLRadioButtonGroupProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string Alignment { get; set; }
public string GroupName { get; set; }
public List<object> Labels { get; set; }
public string SelectedID { get; set; }
public string LabelTextColor { get; set; }
public string LabelFontString { get; set; }
public string Radius { get; set; }
public List<object> ButtonExtents { get; set; }
public string LabelTextHeight { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLRadioButtonGroupProps()
{
Labels = new List<object>();
ButtonExtents = new List<object>();
}
}
public List<CCLImageProps> ImagePropsArray = new List<CCLImageProps>();
public class CCLImageProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string ImageURL { get; set; }
public string ClickFunction { get; set; }
public string AlreadyDrawnImage { get; set; }
public string IsHyperlink { get; set; }
public string URL { get; set; }
public string NoBrowserHistory { get; set; }
public string IsNewBrowserWindow { get; set; }
public string NameOfNewBrowserWindow { get; set; }
public string WidthOfNewBrowserWindow { get; set; }
public string HeightOfNewBrowserWindow { get; set; }
public string NewBrowserWindowIsResizable { get; set; }
public string NewBrowserWindowHasScrollBars { get; set; }
public string NewBrowserWindowHasToolbar { get; set; }
public string NewBrowserWindowHasLocationOrURLOrAddressBox { get; set; }
public string NewBrowserWindowHasDirectoriesOrExtraButtons { get; set; }
public string NewBrowserWindowHasStatusBar { get; set; }
public string NewBrowserWindowHasMenuBar { get; set; }
public string NewBrowserWindowCopyHistory { get; set; }
public object Tag { get; set; }
public string Tile { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLTreeViewProps> TreeViewPropsArray = new List<CCLTreeViewProps>();
public class CCLTreeViewProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string VScrollBarWindowID { get; set; }
public string HScrollBarWindowID { get; set; }
public string TextColor { get; set; }
public string TextFontString { get; set; }
public string TextHeight { get; set; }
public string ClickNodeFunction { get; set; }
public object Tag { get; set; }
public string HasIcons { get; set; }
public string IconWidth { get; set; }
public string IconHeight { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLCalenderProps> CalenderPropsArray = new List<CCLCalenderProps>();
public class CCLCalenderProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string VisibleMonth { get; set; }
public string VisibleYear { get; set; }
public string SelectedDay { get; set; }
public string DayCellWidth { get; set; }
public string DayCellHeight { get; set; }
public string HeaderHeight { get; set; }
public string TextHeaderColor { get; set; }
public string TextHeaderHeight { get; set; }
public string TextHeaderFontString { get; set; }
public string DayDateActiveColor { get; set; }
public string DayDateActiveTextHeight { get; set; }
public string DayDateActiveTextFontString { get; set; }
public string DayDateInactiveTextColor { get; set; }
public string DayDateInactiveTextHeight { get; set; }
public string DayDateInactiveTextFontString { get; set; }
public string SelectedDayTextColor { get; set; }
public string SelectedDayTextHeight { get; set; }
public string SelectedDayTextFontString { get; set; }
public string SelectedDayHighLightColor { get; set; }
public string TodayTextColor { get; set; }
public string TodayTextHeight { get; set; }
public string TodayTextFontString { get; set; }
public string TodayHighLightColor { get; set; }
public string OnDayClickFunction { get; set; }
public string HeaderBackgroundColor { get; set; }
public string BodyBackgroundColor { get; set; }
public string MouseOverHightLightColor { get; set; }
public string MouseHoverDate { get; set; }
public List<object> ButtonClickExtents { get; set; }
public List<object> DateClickExtents { get; set; }
public string DayLabelTextColor { get; set; }
public string DayLabelTextHeight { get; set; }
public string DayLabelTextFontString { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLCalenderProps()
{
ButtonClickExtents = new List<object>();
DateClickExtents = new List<object>();
}
}
public List<CCLProgressBarProps> ProgressBarPropsArray = new List<CCLProgressBarProps>();
public class CCLProgressBarProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string Color { get; set; }
public string MaxValue { get; set; }
public string MinValue { get; set; }
public string CurrentValue { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLSliderProps> SliderPropsArray = new List<CCLSliderProps>();
public class CCLSliderProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string HandleWidth { get; set; }
public string HandleHeight { get; set; }
public string MaxValue { get; set; }
public string MinValue { get; set; }
public string CurrentValue { get; set; }
public string MouseDownState { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLDatePickerProps> DatePrickerPropsArray = new List<CCLDatePickerProps>();
public class CCLDatePickerProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string TextBoxAreaWindowID { get; set; }
public string ButtonWindowID { get; set; }
public string CalenderWindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string TextBoxAreaTextColor { get; set; }
public string TextBoxAreaTextHeight { get; set; }
public string TextBoxAreaTextFontString { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLPanelProps> PanelPropsArray = new List<CCLPanelProps>();
public class CCLPanelProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string ExpandedWidth { get; set; }
public string ExpandedHeight { get; set; }
public string CollapsedWidth { get; set; }
public string CollapsedHeight { get; set; }
public string IsCollapsable { get; set; }
public string HasBorder { get; set; }
public string BorderColor { get; set; }
public string HasBackgroundGradient { get; set; }
public string BackgroundStartColor { get; set; }
public string BackgroundEndColor { get; set; }
public string HeaderHeight { get; set; }
public string HeaderBackgroundStartColor { get; set; }
public string HeaderBackgroundEndColor { get; set; }
public string ExpandCollapseButtonColor { get; set; }
public string IsExpanded { get; set; }
public string ExpandCollapseButtonRadius { get; set; }
public string PanelLabel { get; set; }
public string PanelLabelTextColor { get; set; }
public string PanelLabelTextHeight { get; set; }
public string PanelLabelTextFontString { get; set; }
public string OriginalWidth { get; set; }
public string OriginalHeight { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
}
public List<CCLBarGraphProps> BarGraphPropsArray = new List<CCLBarGraphProps>();
public class CCLBarGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string MaxValue { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string BarWidth { get; set; }
public List<object> BarLabelsWithBoundingBoxes { get; set; }
public string H { get; set; }
public string AxisLabelsTextHeight { get; set; }
public string AxisLabelsTextFontString { get; set; }
public string AxisLabelsTextColor { get; set; }
public string MarginLeft { get; set; }
public string GapBetweenBars { get; set; }
public string BarClickFunction { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string HasLegend { get; set; }
public string MarginRight { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLBarGraphProps()
{
Data = new List<object>();
BarLabelsWithBoundingBoxes = new List<object>();
}
}
public List<CCLPieChartProps> PieChartPropsArray = new List<CCLPieChartProps>();
public class CCLPieChartProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string CurrentRadius { get; set; }
public string TotalValue { get; set; }
public string LabelTextColor { get; set; }
public string LabelTextHeight { get; set; }
public string LabelTextFontString { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string DeltaI { get; set; }
public string DeltaX { get; set; }
public string DeltaY { get; set; }
public string SliceClickFunction { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLPieChartProps()
{
Data = new List<object>();
}
}
public List<CCLLineGraphProps> LineGraphPropsArray = new List<CCLLineGraphProps>();
public class CCLLineGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string XMaxValue { get; set; }
public string NumMarksX { get; set; }
public string YMaxValue { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string AxisLabelsTextColor { get; set; }
public string AxisLabelsTextHeight { get; set; }
public string AxisLabelsTextFontString { get; set; }
public string H { get; set; }
public string HMax { get; set; }
public List<object> LineXYs { get; set; }
public string ClickFunction { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string MarginLeft { get; set; }
public string IsLabeledXValues { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLLineGraphProps()
{
Data = new List<object>();
LineXYs = new List<object>();
}
}
public List<CCLGaugeChartProps> GaugeChartPropsArray = new List<CCLGaugeChartProps>();
public class CCLGaugeChartProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string H { get; set; }
public string CenterX { get; set; }
public string CenterY { get; set; }
public string GaugeRadius { get; set; }
public string GaugeLabelTextColor { get; set; }
public string GaugeLabelTextHeight { get; set; }
public string GaugeLabelTextFontString { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLGaugeChartProps()
{
Data = new List<object>();
}
}
public List<CCLRadarGraphProps> RadarGraphPropsArray = new List<CCLRadarGraphProps>();
public class CCLRadarGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string MaxValue { get; set; }
public string ColorStr { get; set; }
public string NumMarks { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string H { get; set; }
public string MarkLabelTextColor { get; set; }
public string MarkLabelTextHeight { get; set; }
public string MarkLabelTextFontString { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLRadarGraphProps()
{
Data = new List<object>();
}
}
public List<CCLLineAreaGraphProps> LineAreaGraphPropsArray = new List<CCLLineAreaGraphProps>();
public class CCLLineAreaGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string XMaxValue { get; set; }
public string YMaxValue { get; set; }
public string NumMarksX { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string AxisLabelsColor { get; set; }
public string AxisLabelsHeight { get; set; }
public string AxisLabelsFontString { get; set; }
public string H { get; set; }
public string MarginLeft { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string IsLabledOnXAxis { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLLineAreaGraphProps()
{
Data = new List<object>();
}
}
public List<CCLCandlesticksGraphProps> CandlesticksGraphPropsArray = new List<CCLCandlesticksGraphProps>();
public class CCLCandlesticksGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public List<object> XMarksLabelData { get; set; }
public string XMarksWidth { get; set; }
public string YMaxValue { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleColor { get; set; }
public string TitleHeight { get; set; }
public string TitleFontString { get; set; }
public string CandleBodyWidth { get; set; }
public string CandleBodyColor { get; set; }
public string CandleLineColor { get; set; }
public string MarginLeft { get; set; }
public string AxisLabelsColor { get; set; }
public string AxisLabelsHeight { get; set; }
public string AxisLabelsFontString { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLCandlesticksGraphProps()
{
Data = new List<object>();
XMarksLabelData = new List<object>();
}
}
public List<CCLDoughnutChartProps> DoughnutChartPropsArray = new List<CCLDoughnutChartProps>();
public class CCLDoughnutChartProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string Title { get; set; }
public string TitleColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleFontString { get; set; }
public string InnerRadius { get; set; }
public string CurrentRadius { get; set; }
public string TotalValue { get; set; }
public string MarginSides { get; set; }
public string LabelColor { get; set; }
public string LabelHeight { get; set; }
public string LabelFontString { get; set; }
public string LegendWidth { get; set; }
public string LegendHeight { get; set; }
public string LegendFontString { get; set; }
public string AnimationCompleted { get; set; }
public string DeltaI { get; set; }
public string DeltaX { get; set; }
public string DeltaY { get; set; }
public string SliceClickFunction { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLDoughnutChartProps()
{
Data = new List<object>();
}
}
public List<CCLBarsMixedWithLabeledLineGraphProps> BarsMixedWithLabeledLineGraphPropsArray = new List<CCLBarsMixedWithLabeledLineGraphProps>();
public class CCLBarsMixedWithLabeledLineGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string MaxValue { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleTextColor { get; set; }
public string TitleTextHeight { get; set; }
public string TitleTextFontString { get; set; }
public string BarWidth { get; set; }
public List<object> BarLabelsWithBoundingBoxes { get; set; }
public string H { get; set; }
public string AxisLabelsTextHeight { get; set; }
public string AxisLabelsTextFontString { get; set; }
public string AxisLabelsTextColor { get; set; }
public string MarginLeft { get; set; }
public string GapBetweenBars { get; set; }
public string BarClickFunction { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string HasLegend { get; set; }
public string MarginRight { get; set; }
public List<object> LinesData { get; set; }
public List<object> LineXYs { get; set; }
public string LineClickFunction { get; set; }
public string YMaxValue { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLBarsMixedWithLabeledLineGraphProps()
{
Data = new List<object>();
BarLabelsWithBoundingBoxes = new List<object>();
LinesData = new List<object>();
LineXYs = new List<object>();
}
}
public List<CCLStackedBarGraphProps> StackedBarGraphPropsArray = new List<CCLStackedBarGraphProps>();
public class CCLStackedBarGraphProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> Data { get; set; }
public string MaxValue { get; set; }
public string NumMarksY { get; set; }
public string Title { get; set; }
public string TitleColor { get; set; }
public string TitleHeight { get; set; }
public string TitleFontString { get; set; }
public string BarWidth { get; set; }
public string GapBetweenBarSets { get; set; }
public string H { get; set; }
public string AxisLabelsColor { get; set; }
public string AxisLabelsHeight { get; set; }
public string AxisLabelsFontString { get; set; }
public List<object> BarLabelsWithBoundingBoxes { get; set; }
public string BarClickFunction { get; set; }
public string AlreadyUnregisteredAnimation { get; set; }
public string MarginLeft { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLStackedBarGraphProps()
{
BarLabelsWithBoundingBoxes = new List<object>();
}
}
public List<CCLTabProps> TabPropsArray = new List<CCLTabProps>();
public class CCLTabProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public List<object> TabLabels { get; set; }
public string TabLabelColor { get; set; }
public string TabLabelHeight { get; set; }
public string TabLabelFontString { get; set; }
public List<object> PanelWindowIDs { get; set; }
public string SelectedTabID { get; set; }
public string TabLabelGradientStartColor { get; set; }
public string TabLabelGradientEndColor { get; set; }
public List<object> TabLabelHitAreas { get; set; }
public string GapBetweenTabs { get; set; }
public string SelectedTabBorderColor { get; set; }
public string SelectedTabBorderLineWidth { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLTabProps()
{
TabLabels = new List<object>();
PanelWindowIDs = new List<object>();
TabLabelHitAreas = new List<object>();
}
}
public List<CCLImageMapProps> ImageMapPropsArray = new List<CCLImageMapProps>();
public class CCLImageMapProps
{
public string CanvasID { get; set; }
public string WindowID { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Width { get; set; }
public string Height { get; set; }
public string ImgUrl { get; set; }
public List<object> PinXYs { get; set; }
public string PinClickFunction { get; set; }
public string HasZoom { get; set; }
public string ImageTopLeftXOffset { get; set; }
public string ImageTopLeftYOffset { get; set; }
public string MovingMap { get; set; }
public string LastMovingX { get; set; }
public string LastMovingY { get; set; }
public string Scale { get; set; }
public string ScaleIncrementFactor { get; set; }
public object Tag { get; set; }
public string TabStopIndex { get; set; }
public CCLImageMapProps()
{
PinXYs = new List<object>();