forked from academiadocodigo/TBGWebCharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interfaces.pas
1459 lines (1440 loc) · 67.5 KB
/
Interfaces.pas
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
unit Interfaces;
{$I TBGWebCharts.inc}
interface
uses
{$IF RTLVERSION > 22 }
{$IFDEF HAS_FMX}
{$IFDEF HAS_CHROMIUM}
{$DEFINE HAS_CALLBACK}
{$ENDIF}
{$ELSE}
{$DEFINE HAS_CALLBACK}
{$ENDIF}
{$ENDIF}
DB,
Generics.Collections,
{$IFDEF HAS_FMX}
FMX.StdCtrls,
FMX.WebBrowser,
{$ELSE}
{$IF RTLVERSION > 27 }
VCL.StdCtrls,
VCL.Buttons,
SHDocVw,
{$IFEND}
{$IF RTLVERSION < 28 }
StdCtrls,
Buttons,
SHDocVw,
{$IFEND}
{$ENDIF}
{$IFDEF HAS_CHROMIUM}
uCEFInterfaces,
{$IFDEF HAS_FMX}
uCEFFMXChromium,
uCEFFMXWindowParent,
{$ELSE}
uCEFChromium,
uCEFWindowParent,
{$ENDIF}
{$ENDIF}
System.SysUtils,
Classes,
Charts.Types, Colors.Bootstrap;
type
iWebCharts = interface;
iModelHTML = interface;
iModelHTMLChartsBar = interface;
iModelHTMLCharts = interface;
iModelHTMLChartsConfig = interface;
IModelRowsTitleConfig = interface;
IModelHTMLRows = interface;
iModelHTMLRowsTitle = interface;
IModelHTMLRowsTag = interface;
iModelHTMLChartsDoughnut = interface;
iModelHTMLChartsLines = interface;
iModelHTMLDataSet = interface;
iModelHTMLChartsLineStacked = interface;
iModelHTMLChartsPie = interface;
iModelLabellingConfig<T> = interface;
iModelHTMLChartsAxes = interface;
iModelHTMLChartsAxesTicks<T> = interface;
iModelHTMLChartsAxesParam = interface;
iModelHTMLChartsAxesParamRealTime = interface;
iModelHTMLChartsAxesGridLines<T> = interface;
iModelHTMLChatsAxesScaleLabel<T> = interface;
iModelHTMLLegendLabels<T> = interface;
iModelHTMLLegend = interface;
iModelHTMLTitle<T> = interface;
iModelHTMLScales = interface;
iModelHTMLTooltip<T> = interface;
iModelHTMLOptions = interface;
iModelHTMLChartsGeneric = interface;
iModelJumbotron = interface;
iModelAlerts = interface;
iModelAlertsClass = interface;
iModelListGroup = interface;
iModelListGroupClass = interface;
iModelPivotTable = interface;
iModelGenericList<T> = interface;
iModelPivotTableConfig = interface;
iModelPivotTableClass = interface;
iModelGenericStyle<T> = interface;
iModelGenericDataSet<T> = interface;
iModelJSCommand = interface;
iModelHTMLPlugins = interface;
iModelTableActionImage = Interface;
iModelTableAction = interface;
iModelBrowser = interface;
iModelGenericCoordinates<T> = interface;
iModelCredenciais = interface;
iModelDOMElement = interface;
iModelMaps = interface;
iModelGenericTitle<T> = interface;
iModelMapsGeneric = interface;
iModelMapsOptions = interface;
iModelMapsDraw = interface;
iModelMapsDrawCircle = interface;
iModelMapsDrawMarker = interface;
iModelMapsLayer = interface;
iModelMapsLayerHeatMap = interface;
iModelMapsDataSet<T> = interface;
iModelMapsInfoWindow<T> = interface;
iModelMapsRoutes = interface;
iModelMapsRoutesDirections = interface;
iModelMapsRoutesDirectionsPanel = interface;
{$IFDEF HAS_CHROMIUM}
iModelChromiumResources = interface;
iModelChromiumResourcesPages = interface;
iModelChromiumResourcesJSCallback = interface;
{$ENDIF}
iModelLiquidFillGauge = interface;
iModelLiquidFillGaugeConfig = interface;
iModelCardStyled = interface;
iModelCardStyledGeneric = interface;
iModelCardStyledText = interface;
iModelCardStyledShape = interface;
iModelCardStyledShapeClasses = interface;
iModelCardStyledCallback = interface;
iModelRichTextEditor = interface;
iModelRichTextEditorConfig = interface;
iModelRichTextEditorConfigPrintHeader = interface;
iModelGenericProgressBar<T> = interface;
iModelProgress = interface;
iModelProgressInfo = interface;
iModelProgressInfoText = interface;
iModelProgressInfoIcon = interface;
{$IFDEF FULL}
iModelTable = interface;
iModelTableDataSet = interface;
iModelTableOption = interface;
iModelTableData = interface;
iModelTableFeatures = interface;
iModelTableClass = interface;
IModelHTMLRowsDiv = interface;
iModelCardsDataSet = interface;
iModelCards = interface;
iModelChartEasyPie = interface;
iModelButtonClass = interface;
iModelButton = interface;
{$IFDEF HAS_CALLBACK}
iCallbackJS = interface;
{$ENDIF}
iModelImageDataSet = interface;
iModelImage = interface;
iModelImageClass = interface;
IModelHTMLRowsP = interface;
//iCacheControl = interface;
{$ENDIF}
iWebCharts = interface
['{D98D23CE-5E37-4941-89E3-92AF922ACE60}']
function NewProject : iModelHTML; overload;
function NewProject(Container : Boolean) : iModelHTML; overload;
function ContinuosProject : iModelHTML;
function AddResource(Value : String) : iWebCharts;
function BackgroundColor(Value : String) : iWebCharts;
function Container(Value : TTypeContainer) : iWebCharts;
function FontColor(Value : String) : iWebCharts;
function CDN(Value : Boolean) : iWebCharts;
function Credenciais : iModelCredenciais;
end;
iModelHTML = interface
['{6D5210CC-D750-4643-8685-48037F21E6AA}']
function GenerateHead : iModelHTML; overload;
function GenerateHead(Value : TList<String>) : iModelHTML; overload;
function GenerateFooter : iModelHTML;
function Jumpline : iModelHTML;
function Charts : iModelHTMLCharts;
function Rows : IModelHTMLRows;
function HTML(Value : String) : iModelHTML; overload;
function HTML : String; overload;
function ClearHTML : iModelHTML;
function WebBrowser(Value : TWebBrowser) : iModelHTML; overload;
{$IFDEF HAS_CHROMIUM}
{$IFDEF HAS_FMX}
function WebBrowser(Value : TFMXChromium) : iModelHTML; overload;
function WindowParent(Value: TFMXWindowParent) : iModelHTML; overload;
{$ELSE}
function WebBrowser(Value : TChromium) : iModelHTML; overload;
function WindowParent(Value: TCEFWindowParent) : iModelHTML; overload;
{$ENDIF}
function Maps : iModelMaps;
{$ENDIF}
function Generated : iModelHTML;
function Container(Value : Boolean) : iModelHTML;
function FolderDefaultRWC(Value : String) : iModelHTML;
function BackgroundColor( Value : String) : iModelHTML;
function FontColor ( Value : String) : iModelHTML;
function ContainerClass(Value : TTypeContainer) : iModelHTML;
function CDN(Value : Boolean) : iModelHTML;
function Jumbotron : iModelJumbotron;
function Alerts : iModelAlerts;
function ListGroup : iModelListGroup;
function PivotTable : iModelPivotTable;
function LiquiFillGauge : iModelLiquidFillGauge;
procedure ExecuteScript(Value : iModelJSCommand);
function ExecuteScriptResult(Value : iModelJSCommand) : string;
procedure ExecuteScriptCallback(Value: iModelJSCommand);
function Credenciais(Value : iModelCredenciais) : iModelHTML;
function DOMElement : iModelDomElement;
function RichTextEditor : iModelRichTextEditor;
function Print : iModelHTML;
function Progress : iModelProgress;
{$IFDEF FULL}
function Table : iModelTable;
function Cards : iModelCards;
function CardStyled : iModelCardStyled;
function ChartEasyPie : iModelChartEasyPie;
{$IFDEF HAS_CALLBACK}
function CallbackJS : iCallbackJS;
function Buttons : iModelButton;
{$ENDIF}
function Image : iModelImage;
//function CacheControl : iCacheControl;
{$ENDIF}
end;
iModelDomElement = interface
function Id(Value : string) : iModelDomElement;
function Html(Value : string) : iModelDomElement;
function Update : iModelDOMElement;
function &End : iModelHTML;
end;
iModelCredenciais = interface
['{FCE8B965-DB1B-42E6-B831-588BB955A88A}']
function APIGoogle(Value : string) : iModelCredenciais; overload;
function APIGoogle : string; overload;
function &End : iWebCharts;
end;
iModelBrowser = interface
['{90CE8FFC-31D4-423B-A585-5A6B5E01A3F8}']
procedure ExecuteScript(Value : iModelJSCommand);
function ExecuteScriptResult(Value : iModelJSCommand) : string;
procedure ExecuteScriptCallback(Value: iModelJSCommand);
function Generated(FHTML : string) : iModelBrowser;
end;
iModelMaps = interface
['{6FB8BE17-5803-418D-B9A6-2448DFE5B6F9}']
function MapType(Value : TTypeMaps) : iModelMapsGeneric;
function MapTitle : iModelGenericTitle<iModelMaps>;
function &End : iModelHTML;
end;
iModelGenericTitle<T> = interface
['{BBADD905-F041-4B05-8729-5F6ED7C3F286}']
function Text(Value : string) : iModelGenericTitle<T>; overload;
function FontSize(Value : Integer) : iModelGenericTitle<T>; overload;
function FontSize(Value : String) : iModelGenericTitle<T>; overload;
function TextAlignment(Value : string) : iModelGenericTitle<T>; overload;
function FontColorHEX(Value : string) : iModelGenericTitle<T>; overload;
function FontColor(Value : string) : iModelGenericTitle<T>; overload;
function FontFamily(Value : string) : iModelGenericTitle<T>; overload;
function Text : string; overload;
function FontSize : String; overload;
function TextAlignment : string; overload;
function FontColorHEX : string; overload;
function FontColor : string; overload;
function FontFamily : string; overload;
function Result : string;
function &End : T;
end;
iModelMapsGeneric = interface
['{9831E9BF-E318-4D65-9722-B1A8E9562AC3}']
function Name(Value : String) : iModelMapsGeneric; overload;
function Options : iModelMapsOptions;
function Height(Value : String) : iModelMapsGeneric;
function Width(Value : String) : iModelMapsGeneric;
function Draw : iModelMapsDraw;
function Layer : iModelMapsLayer;
function Routes : iModelMapsRoutes;
function Name : String; overload;
function &End : iModelMaps;
function GetGeoCodeResult(Value: TProc<String>) : iModelMapsGeneric;
function GetDirectionResult(Value: TProc<String>) : iModelMapsGeneric;
function ResultClass : string;
end;
iModelMapsOptions = interface
['{ADAAA471-ED18-411D-9855-04ABFCCBB9B6}']
function Center : iModelGenericCoordinates<iModelMapsOptions>;
function Zoom(Value : Integer) : iModelMapsOptions;
function FullScreenControl : iModelMapsOptions; overload;
function FullScreenControl(Value : Boolean) : iModelMapsOptions; overload;
function MapTypeControl : iModelMapsOptions; overload;
function MapTypeControl(Value : Boolean) : iModelMapsOptions; overload;
function StreetViewControl : iModelMapsOptions; overload;
function StreetViewControl(Value : Boolean) : iModelMapsOptions; overload;
function ZoomControl : iModelMapsOptions; overload;
function ZoomControl(Value : Boolean) : iModelMapsOptions; overload;
function RotateControl(Value : Boolean) : iModelMapsOptions; overload;
function Tilt(Value : Boolean) : iModelMapsOptions; overload;
function MapStyle(Value: TTypeMapStyle) : iModelMapsOptions;
function ResultScript : String;
function &End : iModelMapsGeneric;
end;
iModelMapsDraw = interface
['{00620760-9D3F-48FE-9FB4-91CB43C64F53}']
function Marker : iModelMapsDrawMarker;
function Circle : iModelMapsDrawCircle;
function ResultScript : String;
function &End : iModelMapsGeneric;
end;
iModelMapsDrawMarker = interface
['{03FDD2B8-7C64-41C1-A9B6-4284EBE6B997}']
function DataSet : iModelMapsDataSet<iModelMapsDrawMarker>;
function InfoWindow : iModelMapsInfoWindow<iModelMapsDrawMarker>;
function ResultScript(Value: string) : String;
function &End : iModelMapsDraw;
end;
iModelMapsDrawCircle = interface
['{14E21290-71DA-4BE7-919B-DA81B6E765E7}']
function DataSet : iModelMapsDataSet<iModelMapsDrawCircle>;
function StrokeColor(Value: string): iModelMapsDrawCircle;
function StrokeOpacity(Value : string) : iModelMapsDrawCircle;
function StrokeWeight(Value : Integer) : iModelMapsDrawCircle;
function FillColor(Value : string) : iModelMapsDrawCircle;
function FillOpacity(Value : string) : iModelMapsDrawCircle;
function Fator(Value : integer) : iModelMapsDrawCircle;
function InfoWindow : iModelMapsInfoWindow<iModelMapsDrawCircle>;
function ResultScript(MapName: string) : String;
function &End : iModelMapsDraw;
end;
iModelMapsLayer = interface
['{ACABBD56-A9D9-4D0B-85B1-6D115C218FAD}']
function HeatMap : iModelMapsLayerHeatMap;
function &End : iModelMapsGeneric;
function ResultScript : String;
end;
iModelMapsLayerHeatMap = interface
['{A46B4845-FF76-48D5-AB8A-C7F39D0FE34C}']
function DataSet : iModelMapsDataSet<iModelMapsLayerHeatMap>;
function Radius(Value : string) : iModelMapsLayerHeatMap;
function Opacity(Value : string) :iModelMapsLayerHeatMap;
function &End : iModelMapsLayer;
function ResultScript(MapName: string) : String;
end;
iModelMapsDataSet<T> = interface
['{F58E5C44-D904-4347-BC57-CF7889DB4DD1}']
function DataSet (Value : TDataSet) : iModelMapsDataSet<T>; overload;
function LatName(Value : String) : iModelMapsDataSet<T>; overload;
function LngName(Value : String) : iModelMapsDataSet<T>; overload;
function LabelName(Value : String) : iModelMapsDataSet<T>; overload;
function ValueName(Value : String) : iModelMapsDataSet<T>; overload;
function AddressName(Value : String) : iModelMapsDataSet<T>; overload;
function IdAddressName(Value : String) : iModelMapsDataSet<T>; overload;
function InfoName(Value : String) : iModelMapsDataSet<T>; overload;
function DataSet : TDataSet; overload;
function LatName : String; overload;
function LngName : String; overload;
function LabelName : String; overload;
function ValueName : String; overload;
function AddressName : String; overload;
function IdAddressName : String; overload;
function InfoName : String; overload;
function &End : T;
end;
iModelMapsInfoWindow<T> = interface
['{E850C6C0-C800-49A1-A582-725CEDE94178}']
function StartOpened(Value : boolean) : iModelMapsInfoWindow<T>; overload;
function MaxWidth(Value : integer) : iModelMapsInfoWindow<T>; overload;
function MinWidth(Value : integer) : iModelMapsInfoWindow<T>; overload;
function StartOpened : string; overload;
function MaxWidth : string; overload;
function MinWidth : string; overload;
function &End : T;
end;
iModelMapsRoutes = interface
['{26523E12-4DFB-482B-B549-DB3CFD2E8A96}']
function Directions : iModelMapsRoutesDirections;
function &End : iModelMapsGeneric;
function ResultScript : String;
end;
iModelMapsRoutesDirections = interface
['{BC86B376-85F0-4939-8A7B-169F54D6AA88}']
function DataSet : iModelMapsDataSet<iModelMapsRoutesDirections>;
function Origin(Value : string) : iModelMapsRoutesDirections;
function Destination(Value : string) : iModelMapsRoutesDirections;
function TravelMode(Value : TTypeMapTravelMode) : iModelMapsRoutesDirections;
function OptimizeWaypoints(Value : boolean) : iModelMapsRoutesDirections;
function Panel : iModelMapsRoutesDirectionsPanel;
function ResultScript(MapName: string) : String;
function &End : iModelMapsRoutes;
end;
iModelMapsRoutesDirectionsPanel = interface
['{12C3A169-AB02-494B-871B-C37259B4C023}']
function Width(Value : String) : iModelMapsRoutesDirectionsPanel; overload;
function Width : String; overload;
function FloatPos(Value : string) : iModelMapsRoutesDirectionsPanel; overload;
function FloatPos : string; overload;
function &End : iModelMapsRoutesDirections;
end;
{$IFDEF HAS_CHROMIUM}
iModelChromiumResourcesPages = interface
['{30782EC6-B430-4FC1-9B23-D06693BE23D4}']
function Add(HTML : String) : string;
function Get(Key : String) : ICefResourceHandler;
function Extract(Key : String) :ICefResourceHandler;
procedure Remove(Key : String);
end;
iModelChromiumResourcesJSCallback = interface
['{384A33CB-A7E7-40C3-88EA-F656605C0964}']
function Add(Proc : TProc<string>) : string;
function Get(Key : String) : TProc<string>;
function Extract(Key : String) :TProc<string>;
procedure Remove(Key : String);
end;
iModelChromiumResources = interface
['{16F507A0-D848-4491-AF0A-8AE73782FBB2}']
function Pages : iModelChromiumResourcesPages;
function JSCallback : iModelChromiumResourcesJSCallback;
end;
{$ENDIF}
iModelLiquidFillGauge = interface
['{9ECA3F3B-E741-4B9E-9FAE-46A52D195CD5}']
function Align(Value :string) : iModelLiquidFillGauge;
function Config : iModelLiquidFillGaugeConfig;
function Height(Value : string) : iModelLiquidFillGauge;
function Name(Value : string) : iModelLiquidFillGauge; overload;
function Name : string; overload;
function Title : iModelGenericTitle<iModelLiquidFillGauge>;
function Width(Value : string) : iModelLiquidFillGauge;
function Value(Value : string) : iModelLiquidFillGauge;
function UpdateValue : iModelLiquidFillGauge;
function &End : iModelHTML;
end;
iModelLiquidFillGaugeConfig = interface
['{A8E00200-7895-4E94-9492-7A5BE4863B04}']
function MinValue(Value : integer) : iModelLiquidFillGaugeConfig;
function MaxValue(Value : integer) : iModelLiquidFillGaugeConfig;
function CircleThickness(Value : Integer) : iModelLiquidFillGaugeConfig;
function CircleFillGap(Value : Integer) : iModelLiquidFillGaugeConfig;
function CircleColorHex(Value : string) : iModelLiquidFillGaugeConfig;
function CircleColor(Value : string) : iModelLiquidFillGaugeConfig;
function WaveHeight(Value : Integer) : iModelLiquidFillGaugeConfig;
function WaveCount(Value : Integer) : iModelLiquidFillGaugeConfig;
function WaveRiseTime(Value : Integer) : iModelLiquidFillGaugeConfig;
function WaveAnimateTime(Value : Integer) : iModelLiquidFillGaugeConfig;
function WaveRise(Value : Boolean) : iModelLiquidFillGaugeConfig;
function WaveHeightScaling(Value : Boolean) : iModelLiquidFillGaugeConfig;
function WaveAnimate(Value : Boolean) : iModelLiquidFillGaugeConfig;
function WaveColor(Value : string) : iModelLiquidFillGaugeConfig;
function WaveColorHex(Value : string) : iModelLiquidFillGaugeConfig;
function WaveOffset(Value : Integer) : iModelLiquidFillGaugeConfig;
function TextVertPosition(Value : Integer) : iModelLiquidFillGaugeConfig;
function TextSize(Value : Integer) : iModelLiquidFillGaugeConfig;
function ValueCountUp(Value : Boolean) : iModelLiquidFillGaugeConfig;
function DisplayPercent(Value : Boolean) : iModelLiquidFillGaugeConfig;
function TextColor(Value : string) : iModelLiquidFillGaugeConfig;
function TextColorHex(Value : string) : iModelLiquidFillGaugeConfig;
function WaveTextColor(Value : string) : iModelLiquidFillGaugeConfig;
function WaveTextColorHex(Value : string) : iModelLiquidFillGaugeConfig;
function ResultScript : String;
function &End : iModelLiquidFillGauge;
end;
iModelCardStyled = interface
['{9DB61CB7-D7D1-4E62-80AE-815CD0BC3717}']
function CardType(Value : TTypeCardStyled) : iModelCardStyledGeneric;
function &End : iModelHTML;
end;
iModelCardStyledGeneric = interface
['{3CE71864-DAF3-4C3A-8CEA-A715BBDDD85C}']
function BackgroundColor(Value : String) : iModelCardStyledGeneric;
function Body : iModelCardStyledText;
function Callback : iModelCardStyledCallback;
function Col(Value : Integer) : iModelCardStyledGeneric;
function Colmd(Value : Integer) : iModelCardStyledGeneric;
function Colxl(Value : Integer) : iModelCardStyledGeneric;
function DefaultFontColor(Value : string) : iModelCardStyledGeneric;
function Footer : iModelCardStyledText;
function HTML : String;
function Name( Value : String) : iModelCardStyledGeneric;
function Shape : iModelCardStyledShape;
function Progress : iModelGenericProgressBar<iModelCardStyledGeneric>;
function Title : iModelCardStyledText;
function &End : iModelCardStyled;
end;
iModelCardStyledCallback = interface
['{9F8311B1-92BC-49FC-BCDD-CC5DCED5C3FD}']
function MethodName(aValue : string) : iModelCardStyledCallback;
function ParamValue(aValue : string) : iModelCardStyledCallback;
function ResultClass : string;
function &End : iModelCardStyledGeneric;
end;
iModelCardStyledText = interface
['{C6A880DD-CA67-4335-9FD8-378A334CD59A}']
function Style : iModelGenericStyle<iModelCardStyledText>;
function Text(Value : String) : iModelCardStyledText; overload;
function Text : String; overload;
function &End : iModelCardStyledGeneric;
end;
iModelCardStyledShape = interface
['{DD59592F-FA79-4E15-84C4-C53143A0F1A6}']
function Icon(Value : String) : iModelCardStyledShape;
function ColAuto(Value : boolean) : iModelCardStyledShape;
function ResultClass : String;
function ShapeClass : iModelCardStyledShapeClasses;
function Style : iModelGenericStyle<iModelCardStyledShape>;
function Text(Value : String) : iModelCardStyledShape;
function &End : iModelCardStyledGeneric;
end;
iModelCardStyledShapeClasses = interface
['{B03205C4-5A8A-49D9-B37F-DBD47AAC999A}']
function ResultShapeClass : String;
function RoundedCircle : iModelCardStyledShapeClasses;
function Rounded : iModelCardStyledShapeClasses;
function Shadow : iModelCardStyledShapeClasses;
function &End : iModelCardStyledShape;
end;
iModelRichTextEditor = interface
['{B06FEC4A-D856-405A-BBCA-9DC9B1ABBD68}']
function Attributes : iModelRichTextEditorConfig;
function LoadContent(aValue : String) : iModelRichTextEditor;
function SaveContent(Value : TProc<String>) : iModelRichTextEditor;
function SaveContentHtml(Value : TProc<String>) : iModelRichTextEditor;
function SaveContentText(Value : TProc<String>) : iModelRichTextEditor;
function &End : iModelHTML;
end;
iModelRichTextEditorConfig = interface
['{F17E30E3-C930-4907-B79E-9A7D1DABFFF6}']
function Content(aValue : String) : iModelRichTextEditorConfig;
function Height(aValue : string) : iModelRichTextEditorConfig;
function Width(aValue : string) : iModelRichTextEditorConfig;
function Margin(aValue : string) : iModelRichTextEditorConfig;
function MaxHeight(aValue : string) : iModelRichTextEditorConfig;
function MaxWidth(aValue : string) : iModelRichTextEditorConfig;
function PlaceHolder(aValue : String) : iModelRichTextEditorConfig;
function PrintHeader : iModelRichTextEditorConfigPrintHeader;
function ReadOnly(aValue : Boolean) : iModelRichTextEditorConfig;
function ResultStyleContainer : String;
function ResultStyleEditor : String;
function ResultConfig : String;
function ResultContent : String;
function ResultPrintHeader : String;
function &End : iModelRichTextEditor;
end;
iModelRichTextEditorConfigPrintHeaderDiv = interface;
iModelRichTextEditorConfigPrintHeaderImage = interface;
iModelRichTextEditorConfigPrintHeaderTitle = interface;
iModelRichTextEditorConfigPrintHeader = interface
['{7011CAA5-ACA4-4CB6-A41C-61BCBDF083FA}']
function &Div : iModelRichTextEditorConfigPrintHeaderDiv;
function HTML : String;
function &End : iModelRichTextEditorConfig;
end;
iModelRichTextEditorConfigPrintHeaderDiv = interface
['{21CC0E25-6451-4E02-8CDE-0B5BF457586A}']
function Image : iModelRichTextEditorConfigPrintHeaderImage;
function Col(aValue : Integer) : iModelRichTextEditorConfigPrintHeaderDiv; overload;
function Col(aValue : String) : iModelRichTextEditorConfigPrintHeaderDiv; overload;
function Title : iModelRichTextEditorConfigPrintHeaderTitle;
function HTML : String;
function &End : iModelRichTextEditorConfigPrintHeader;
end;
iModelRichTextEditorConfigPrintHeaderImage = interface
['{D9AD1ABA-940A-4CBA-AA1D-2E1C2D2D234C}']
function HTML : String;
function Image (aValue : TCustomMemoryStream) : iModelRichTextEditorConfigPrintHeaderImage; overload;
function Image (aValue : String) : iModelRichTextEditorConfigPrintHeaderImage; overload;
function Style : iModelGenericStyle<iModelRichTextEditorConfigPrintHeaderImage>;
function &End : iModelRichTextEditorConfigPrintHeaderDiv;
end;
iModelRichTextEditorConfigPrintHeaderTitle = interface
['{35743850-BD83-49C4-A0DD-BCDBD70A9911}']
function HTML : String;
function Text (aValue : String) : iModelRichTextEditorConfigPrintHeaderTitle; overload;
function Style : iModelGenericStyle<iModelRichTextEditorConfigPrintHeaderTitle>;
function &End : iModelRichTextEditorConfigPrintHeaderDiv;
end;
iModelGenericProgressBar<T> = interface
['{7442EC82-63F9-44DF-A346-4529556F79EE}']
function Background(aValue : string) : iModelGenericProgressBar<T>;
function Color(aValue : string) : iModelGenericProgressBar<T>;
function DisplayLabel(aValue : Boolean) : iModelGenericProgressBar<T>;
function Height(aValue : Integer) : iModelGenericProgressBar<T>; overload;
function Height : string; overload;
function HTML : String;
function Sytle(aValue : TTypeBackgroundColor) : iModelGenericProgressBar<T>;
function Value(aValue : string) : iModelGenericProgressBar<T>;
function &End : T;
end;
iModelProgress = interface
['{5AEB894D-A80F-4FA2-89E8-EF4EAE6F11DB}']
function Height(aValue : integer) : iModelProgress;
function HTML : string;
function Info : iModelProgressInfo;
function ProgressBar : iModelGenericProgressBar<iModelProgress>;
function MarginTop(aValue : string) : iModelProgress;
function &End : iModelHTML;
end;
iModelProgressInfo = interface
['{33505BD6-334C-4B41-9043-AFE6495B5E2C}']
function Icon : iModelProgressInfoIcon;
function ResultClass : string;
function Title : iModelProgressInfoText;
function Value : iModelProgressInfoText;
function &End : iModelProgress;
end;
iModelProgressInfoText = interface
['{8EB4A93C-D5B6-42C0-A66C-9B2ECA5832F0}']
function Style : iModelGenericStyle<iModelProgressInfoText>;
function Text(Value : String) : iModelProgressInfoText; overload;
function Text : String; overload;
function &End : iModelProgressInfo;
end;
iModelProgressInfoIcon = interface
['{86914363-ED8C-46C6-912B-372855C175F0}']
function Icon(Value : String) : iModelProgressInfoIcon; overload;
function Icon : String; overload;
function Positive(Value : Boolean = true) : iModelProgressInfoIcon;
function Style : iModelGenericStyle<iModelProgressInfoIcon>;
function Up(Value : Boolean = true) : iModelProgressInfoIcon;
function &End : iModelProgressInfo;
end;
// iLabelLing = interface
// function Numeral(Value : String) : iLabelLing;
// function Result : String;
// end;
//
// iNumeral = interface
// function Result(Value : String) : String;
// end;
IModelHTMLRows = interface
['{684C6EA3-4C2D-4AA9-9A94-BF0A07B14A8B}']
function HTML(Value : String) : IModelHTMLRows; overload;
function HTML : String; overload;
function ID(Value : string) : IModelHTMLRows;
function Title : iModelHTMLRowsTitle;
function Tag : iModelHTMLRowsTag;
{$IFDEF FULL}
function _Div : IModelHTMLRowsDiv;
function _P : IModelHTMLRowsP;
{$ENDIF}
function &End : iModelHTML;
end;
IModelHTMLRowsTag = interface
['{15075847-E7A6-4F18-878D-A7DBCECABE94}']
function Add(Value : String) : IModelHTMLRowsTag;
function &End : IModelHTMLRows;
end;
iModelHTMLRowsTitle = interface
['{F2D34927-8232-4A18-944A-DB0ADAD1C903}']
function HTML(Value : String) : iModelHTMLRowsTitle; overload;
function HTML : String; overload;
function Configuracoes : IModelRowsTitleConfig;
function Config : IModelRowsTitleConfig;
function &End : IModelHTMLRows;
end;
IModelRowsTitleConfig = interface
['{87031018-5C12-42DF-895F-2602B87FE468}']
function H1(Value : String) : IModelRowsTitleConfig; overload;
function H1 : String; overload;
function H2(Value : String) : IModelRowsTitleConfig; overload;
function H2 : String; overload;
function H3(Value : String) : IModelRowsTitleConfig; overload;
function H3 : String; overload;
function H4(Value : String) : IModelRowsTitleConfig; overload;
function H4 : String; overload;
function H5(Value : String) : IModelRowsTitleConfig; overload;
function H5 : String; overload;
function &End : iModelHTMLRowsTitle;
end;
iModelHTMLCharts = interface
['{4CC23536-78BD-40F7-B4A8-D5625E849065}']
function _ChartType(Value : TTypeChart) : iModelHTMLChartsGeneric; overload;
function _ChartType : TTypeChart; overload;
function HTML(Value : String) : iModelHTMLCharts; overload;
function HTML : String; overload;
function &End : iModelHTML;
end;
iModelHTMLChartsGeneric = interface
['{83AA6A13-6102-4352-9503-FF9C4AA2C4C7}']
function HTML(Value : String) : iModelHTMLChartsGeneric; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
function UpdateRealTime : iModelHTMLChartsGeneric;
function UpdateChart : iModelHTMLChartsGeneric;
end;
iModelHTMLChartsDoughnut = interface
['{709FF228-7F8A-4E2B-8AB9-EFAEC9AEE1B4}']
function SemiCircule ( aValue : Boolean ) : iModelHTMLChartsDoughnut; overload;
function HTML(Value : String) : iModelHTMLChartsDoughnut; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
end;
iModelHTMLChartsBar = interface
['{25AE0278-2105-4223-86A9-41F289F75EAE}']
function HTML(Value : String) : iModelHTMLChartsBar; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
end;
iModelHTMLChartsLines = interface
['{10DCD4CF-984F-4952-919A-5259A13A9D8D}']
function HTML(Value : String) : iModelHTMLChartsLines; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
end;
iModelHTMLChartsLineStacked = interface
['{6A3F3157-8FB2-4D72-A33A-27A66BED2661}']
function HTML(Value : String) : iModelHTMLChartsLineStacked; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
end;
iModelHTMLChartsPie = interface
['{470E91C0-58DF-440E-AF3A-445746F0CFE0}']
function HTML(Value : String) : iModelHTMLChartsPie; overload;
function HTML : String; overload;
function Attributes : iModelHTMLChartsConfig;
function &End : iModelHTMLCharts;
end;
iModelHTMLChartsConfig = interface
['{B140654A-10FE-48A2-93B8-3D90743E3F1E}']
function Name(Value : String) : iModelHTMLChartsConfig; overload;
function Name : String; overload;
function IDChart : String;
function Labels(Value : String) : iModelHTMLChartsConfig; overload;
function Labels : String; overload;
function ColSpan(Value : Integer) : iModelHTMLChartsConfig; overload;
function ColSpan : Integer; overload;
function Width(Value : Integer) : iModelHTMLChartsConfig; overload;
function Width : Integer; overload;
function Heigth(Value : Integer) : iModelHTMLChartsConfig; overload;
function Heigth : Integer; overload;
function Data(Value : String) : iModelHTMLChartsConfig; overload;
function Data : String; overload;
function BackgroundColor(Value : String) : iModelHTMLChartsConfig; overload;
function BackgroundColor : String; overload;
function DataSet : iModelHTMLDataSet;
function ResultDataSet : String;
function ResultRealTimeInitialValue : String;
function ResultLabels : String;
function Stacked(Value : Boolean) : iModelHTMLChartsConfig; overload;
function Stacked : Boolean; overload;
function CallBackLink(Value : String) : iModelHTMLChartsConfig; overload;
function CallBackLink : String; overload;
function Labelling : iModelLabellingConfig<iModelHTMLChartsConfig>; overload;
function Options : iModelHTMLOptions;
function &End : iModelHTMLChartsGeneric;
end;
iModelHTMLOptions = interface
['{8984AFE4-EBFC-4C97-B7BC-D3DA8FFFB42B}']
function SemiCircule ( Value : Boolean ) : iModelHTMLOptions;
function Scales : iModelHTMLScales;
function Legend : iModelHTMLLegend;
function Title : iModelHTMLTitle<iModelHTMLOptions>;
function Tooltip : iModelHTMLTooltip<iModelHTMLOptions>;
function Plugins : iModelHtmlplugins;
function SkipEmptyData(Value : Boolean) : iModelHTMLOptions;
function HideLabelEmptyData(Value : Boolean) : iModelHTMLOptions;
function Result : String;
function &End : iModelHTMLChartsConfig;
end;
iModelHTMLPlugins = interface
['{55083212-FCFF-4AEC-A1ED-AEFC2C39BB5E}']
function Streaming(Value : Boolean) : iModelHTMLPlugins;
function Result : String;
function &End : iModelHTMLOptions;
end;
iModelHTMLScales = interface
['{5968D5D3-75C9-4F2C-9E66-3361A92D8DA4}']
function GeneratedAxes ( Value : Boolean ) : iModelHTMLScales;
function Axes : iModelHTMLChartsAxes;
function Result : String;
function &End : iModelHTMLOptions;
end;
iModelHTMLTooltip<T> = interface
['{5968D5D3-75C9-4F2C-9E66-3361A92D8DA4}']
function Format(Value : String) : iModelHTMLTooltip<T>;
function Enabled(Value : Boolean) : iModelHTMLTooltip<T>;
function ToolTipNoScales : iModelHTMLTooltip<T>;
function InteractionModeNearest : iModelHTMLTooltip<T>;
function InteractionModePoint : iModelHTMLTooltip<T>;
function InteractionModeIndex : iModelHTMLTooltip<T>;
function InteractionModeDataset : iModelHTMLTooltip<T>;
function InteractionModeX : iModelHTMLTooltip<T>;
function InteractionModeY : iModelHTMLTooltip<T>;
function Intersect(Value : Boolean) : iModelHTMLTooltip<T>;
function DisplayTitle(Value : Boolean) : iModelHTMLTooltip<T>;
function HideZeroValues(Value : boolean) : iModelHTMLTooltip<T>;
function Result : String;
function &End : T;
end;
iModelHTMLTitle<T> = interface
['{21A4474D-87C2-435B-9881-D385518C6EA6}']
function display ( Value : Boolean ) : iModelHTMLTitle<T>; overload;
function display : Boolean; overload;
function text ( Value : String ) : iModelHTMLTitle<T>; overload;
function text : string; overload;
function position ( Value : String ) : iModelHTMLTitle<T>; overload;
function position : String; overload;
function fontSize ( Value : Integer ) : iModelHTMLTitle<T>; overload;
function fontSize : Integer; overload;
function fontFamily ( Value : String ) : iModelHTMLTitle<T>; overload;
function fontFamily : String; overload;
function fontColorHEX ( Value : String ) : iModelHTMLTitle<T>; overload;
function fontColorHEX : String; overload;
function fontStyle ( Value : String ) : iModelHTMLTitle<T>; overload;
function fontStyle : String; overload;
function padding ( Value : Integer ) : iModelHTMLTitle<T>; overload;
function padding : Integer; overload;
function Result : String;
function &End : T;
end;
iModelHTMLLegend = interface
['{BC60AEB1-5404-4355-868A-D26BB5A2C773}']
function Labels : iModelHTMLLegendLabels<iModelHTMLLegend>;
function display ( Value : Boolean ) : iModelHTMLLegend; overload;
function display : Boolean; overload;
function position ( Value : String ) : iModelHTMLLegend; overload;
function position : String; overload;
function Result : String;
function &End : iModelHTMLOptions;
end;
iModelHTMLLegendLabels<T> = interface
['{796188B6-4031-43E8-ABF1-43D6C8E1B18D}']
function fontSize (Value : Integer) : iModelHTMLLegendLabels<T>; overload;
function fontSize : Integer; overload;
function fontStyle ( Value : String ) : iModelHTMLLegendLabels<T>; overload;
function fontStyle : String; overload;
function fontColorHEX ( Value : String ) : iModelHTMLLegendLabels<T>; overload;
function fontColorHEX : String; overload;
function fontFamily ( Value : String ) : iModelHTMLLegendLabels<T>; overload;
function fontFamily : String; overload;
function padding ( Value : Integer ) : iModelHTMLLegendLabels<T>; overload;
function padding : Integer; overload;
function Result : String;
function &End : T;
end;
iModelLabellingConfig<T> = interface
['{4BBEDE9F-9F02-4E92-AFA4-3B301DEC6672}']
function Format ( Value : String) : iModelLabellingConfig<T>; overload;
function Format : String; overload;
function RGBColor ( Value : String ) : iModelLabellingConfig<T>; overload;
function RGBColor : String; overload;
function FontSize ( Value : Integer) : iModelLabellingConfig<T>; overload;
function FontSize : Integer; overload;
function FontStyle (Value : String) : iModelLabellingConfig<T>; overload;
function FontStyle : String; overload;
function FontFamily (Value : String) : iModelLabellingConfig<T>; overload;
function FontFamily : String; overload;
function HideZeroValues(Value : boolean) : iModelLabellingConfig<T>; overload;
function Padding (Value : Integer) : iModelLabellingConfig<T>; overload;
function Padding : Integer; overload;
function PaddingX (Value : Integer) : iModelLabellingConfig<T>; overload;
function PaddingX : Integer; overload;
function Result : String;
function &End : T;
end;
iModelHTMLChartsAxes = interface
['{2E97CD69-FDAC-4A01-ADA6-0EA9F1FFFF7C}']
function xAxe : iModelHTMLChartsAxesParam;
function yAxe : iModelHTMLChartsAxesParam;
function Result : String;
function &End : iModelHTMLScales;
end;
iModelHTMLChartsAxesParam = interface
['{E4C5DE93-B372-4D75-ADD2-8A3D1F30223E}']
function Ticks : iModelHTMLChartsAxesTicks<iModelHTMLChartsAxesParam>;
function GridLines : iModelHTMLChartsAxesGridLines<iModelHTMLChartsAxesParam>;
function ScaleLabel : iModelHTMLChatsAxesScaleLabel<iModelHTMLChartsAxesParam>;
function Position (Value : String) : iModelHTMLChartsAxesParam; overload;
function Position : String; overload;
function OffSet (Value : Boolean) : iModelHTMLChartsAxesParam; overload;
function OffSet : Boolean; overload;
function _Type (Value : String) : iModelHTMLChartsAxesParam; overload;
function _Type : String; overload;
function RealTime : iModelHTMLChartsAxesParamRealTime;
function Stacked ( Value : Boolean ) : iModelHTMLChartsAxesParam; overload;
function Stacked : Boolean; overload;
function Result : String;
function &End : iModelHTMLChartsAxes;
end;
iModelHTMLChartsAxesParamRealTime = interface
['{448ECDC3-69C1-44F3-B5C5-6C2336F60321}']
function Duration (Value : Integer) : iModelHTMLChartsAxesParamRealTime;
function Ttl (Value : Integer) : iModelHTMLChartsAxesParamRealTime;
function Delay (Value : Integer) : iModelHTMLChartsAxesParamRealTime;
function Refresh (Value : Integer) : iModelHTMLChartsAxesParamRealTime;
function Result : String;
function &End : iModelHTMLChartsAxesParam;
end;
iModelHTMLChatsAxesScaleLabel<T> = interface
['{FC645855-267C-4876-8BE2-EE540732C6A5}']
function display (Value : Boolean) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function display : Boolean; overload;
function labelString ( Value : String ) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function labelString : String; overload;
function fontColorHEX ( Value : String ) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function fontColorHEX : String; overload;
function fontFamily ( Value : String ) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function fontFamily : String; overload;
function fontSize ( Value : Integer) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function fontSize : Integer; overload;
function fontStyle ( Value : String) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function fontStyle : String; overload;
function padding ( Value : Integer ) : iModelHTMLChatsAxesScaleLabel<T>; overload;
function padding : Integer; overload;
function Result : String;
function &End : T;
end;
iModelHTMLChartsAxesGridLines<T> = interface
['{F9043117-4398-478D-8EA2-8E5E065FB142}']
function display (Value : Boolean) : iModelHTMLChartsAxesGridLines<T>; overload;
function display : Boolean; overload;
function circular (Value : Boolean) : iModelHTMLChartsAxesGridLines<T>; overload;
function circular : Boolean; overload;
function colorRGBA ( Value : String ) : iModelHTMLChartsAxesGridLines<T>; overload;
function colorRGBA : String; overload;
function drawBorder ( Value : Boolean ) : iModelHTMLChartsAxesGridLines<T>; overload;
function drawBorder : Boolean; overload;
function drawOnChartArea ( Value : Boolean) : iModelHTMLChartsAxesGridLines<T>; overload;
function drawOnChartArea : Boolean; overload;
function drawTicks ( Value : Boolean) : iModelHTMLChartsAxesGridLines<T>; overload;
function drawTicks : Boolean; overload;
function tickMarkLength ( Value : Integer ) : iModelHTMLChartsAxesGridLines<T>; overload;
function tickMarkLength : Integer; overload;
function zeroLineWidth ( Value : Integer ) : iModelHTMLChartsAxesGridLines<T>; overload;
function zeroLineWidth : Integer; overload;
function zeroLineColorRGBA ( Value : String ) : iModelHTMLChartsAxesGridLines<T>; overload;
function zeroLineColorRGBA : String; overload;
function Result : String;
function &End : T;
end;
iModelHTMLChartsAxesTicks<T> = interface
['{C56445FE-00C6-47E1-8B38-F0FE57419A71}']
function fontColor (Value : String) : iModelHTMLChartsAxesTicks<T>; overload;
function fontColor : String; overload;
function fontSize (Value : integer) : iModelHTMLChartsAxesTicks<T>; overload;
function fontSize : integer; overload;
function fontFamily (Value : string) : iModelHTMLChartsAxesTicks<T>; overload;
function fontFamily : string; overload;
function autoSkip (Value : Boolean) : iModelHTMLChartsAxesTicks<T>; overload;
function autoSkip : Boolean; overload;
function autoSkipPadding (Value : Integer) : iModelHTMLChartsAxesTicks<T>; overload;
function autoSkipPadding : Integer; overload;
function labelOffset (Value : Integer) : iModelHTMLChartsAxesTicks<T>; overload;
function labelOffset : Integer; overload;
function maxRotation (Value : Integer) : iModelHTMLChartsAxesTicks<T>; overload;
function maxRotation : Integer; overload;
function minRotation (Value : Integer) : iModelHTMLChartsAxesTicks<T>; overload;
function minRotation : Integer; overload;
function mirror ( Value : Boolean) : iModelHTMLChartsAxesTicks<T>; overload;
function mirror : Boolean; overload;
function padding ( Value : Integer) : iModelHTMLChartsAxesTicks<T>; overload;
function padding : Integer; overload;
function format ( Value : String) : iModelHTMLChartsAxesTicks<T>; overload;
function format : String; overload;
function BeginAtZero (Value : Boolean) : iModelHTMLChartsAxesTicks<T>;
function Max ( Value : String) : iModelHTMLChartsAxesTicks<T>;
function Min( Value : String) : iModelHTMLChartsAxesTicks<T>;
function StepSize ( Value : String) : iModelHTMLChartsAxesTicks<T>;
function SuggestedMin ( Value : String) : iModelHTMLChartsAxesTicks<T>;
function SuggestedMax ( Value : String) : iModelHTMLChartsAxesTicks<T>;
function MaxTicksLimit ( Value : String) : iModelHTMLChartsAxesTicks<T>;
function Result : String;
function &End : T;
end;
iModelHTMLDataSet = interface
['{761961EF-0C2B-4B88-AC8F-B4806D530D07}']
function DataSet (Value : TDataSet) : iModelHTMLDataSet;
function RealTimeDataSet (Value : TDataSet) : iModelHTMLDataSet;
function LabelName(Value : String) : iModelHTMLDataSet;
function ValueName(Value : String) : iModelHTMLDataSet;
function RGBName(Value : String) : iModelHTMLDataSet;
function textLabel(Value : String) : iModelHTMLDataSet;
function BackgroundColor (Value : String) : iModelHTMLDataSet;
function BackgroundOpacity(Value : Integer) : iModelHTMLDataSet;
function BorderColor (Value : String) : iModelHTMLDataSet;
function BorderOpacity(Value : Integer) : iModelHTMLDataSet;
function BorderWidth (Value : Integer) : iModelHTMLDataSet;
function BorderDash (Lenght : Integer; Space : Integer) : iModelHTMLDataSet;
function Data (Value : String) : iModelHTMLDataSet;
function Fill (Value : Boolean) : iModelHTMLDataSet;
function LineTension (Value : Integer) : iModelHTMLDataSet;
function ResultScript : String;
function ResultLabels : String;
function RealTimeInitialValue : String;
function Types (Value : String) : iModelHTMLDataSet;
function Hidden(Value : Boolean) : iModelHTMLDataSet;
function HideZeroValuesControl(Value : Boolean) : iModelHTMLDataSet;
function &End : iModelHTMLChartsConfig;
end;
iModelHTMLFactory = interface
['{8CF35864-C906-4B8B-AC69-CD2F2001D906}']
function HTML : iModelHTML;
function Charts(Parent : iModelHTML) : iModelHTMLCharts;
function Rows(Parent : iModelHTML) : IModelHTMLRows;
function RowsTitle(Parent : IModelHTMLRows) : iModelHTMLRowsTitle;