@genesislcap/g2plot-chart 14.375.1-FUI-2457.1 → 14.375.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/custom-elements.json +757 -757
  2. package/package.json +14 -14
@@ -580,613 +580,144 @@
580
580
  },
581
581
  {
582
582
  "kind": "javascript-module",
583
- "path": "src/models/area-chart.ts",
583
+ "path": "src/chart-datasource/chart-datasource.ts",
584
584
  "declarations": [
585
585
  {
586
- "kind": "function",
587
- "name": "AreaChart",
588
- "parameters": [
586
+ "kind": "variable",
587
+ "name": "defaultChartFields",
588
+ "type": {
589
+ "text": "string"
590
+ },
591
+ "default": "'groupBy value'",
592
+ "description": "The first and second default chart fields when it's a dual axes chart.",
593
+ "privacy": "public"
594
+ },
595
+ {
596
+ "kind": "variable",
597
+ "name": "defaultSeriesChartField",
598
+ "type": {
599
+ "text": "string"
600
+ },
601
+ "default": "'series'",
602
+ "description": "The third default chart field when it's a triple axes chart.",
603
+ "privacy": "public"
604
+ },
605
+ {
606
+ "kind": "class",
607
+ "description": "The Genesis Datasource for the `g2plot-chart` component.",
608
+ "name": "ChartDatasource",
609
+ "members": [
589
610
  {
590
- "name": "container",
611
+ "kind": "field",
612
+ "name": "chartFields",
591
613
  "type": {
592
- "text": "HTMLElement"
593
- }
614
+ "text": "string"
615
+ },
616
+ "default": "'groupBy value'",
617
+ "description": "Default value is 'groupBy value'. Can be customized but order matters.\n\n[Mandatory] First is always the xField/colorField\n[Mandatory] Second is always the yField/angleField\n[Optional] Third is always the seriesField",
618
+ "privacy": "public"
594
619
  },
595
620
  {
596
- "name": "config",
621
+ "kind": "field",
622
+ "name": "serverFields",
597
623
  "type": {
598
- "text": "AreaOptions"
599
- }
600
- }
601
- ]
602
- }
603
- ],
604
- "exports": [
605
- {
606
- "kind": "js",
607
- "name": "AreaChart",
608
- "declaration": {
609
- "name": "AreaChart",
610
- "module": "src/models/area-chart.ts"
611
- }
612
- }
613
- ]
614
- },
615
- {
616
- "kind": "javascript-module",
617
- "path": "src/models/bar-chart.ts",
618
- "declarations": [
619
- {
620
- "kind": "function",
621
- "name": "BarChart",
622
- "parameters": [
624
+ "text": "string"
625
+ },
626
+ "description": "Can be customized but order matters.\n\n[Mandatory] First will be associated to the first value in 'chartFields' (xField/colorField)\n[Mandatory] Second will be associated to the second value in 'chartFields' (yField/angleField)\n[Optional] Third will be associated to the third value in 'chartFields' (seriesField)",
627
+ "privacy": "public"
628
+ },
623
629
  {
624
- "name": "container",
630
+ "kind": "field",
631
+ "name": "isStack",
625
632
  "type": {
626
- "text": "HTMLElement"
627
- }
633
+ "text": "boolean"
634
+ },
635
+ "default": "false",
636
+ "description": "If true, will enable stacked chart to effectively portray comparisons of total values across several categories.",
637
+ "privacy": "public"
628
638
  },
629
639
  {
630
- "name": "config",
640
+ "kind": "field",
641
+ "name": "isGroup",
631
642
  "type": {
632
- "text": "BarOptions"
633
- }
634
- }
635
- ]
636
- }
637
- ],
638
- "exports": [
639
- {
640
- "kind": "js",
641
- "name": "BarChart",
642
- "declaration": {
643
- "name": "BarChart",
644
- "module": "src/models/bar-chart.ts"
645
- }
646
- }
647
- ]
648
- },
649
- {
650
- "kind": "javascript-module",
651
- "path": "src/models/column-chart.ts",
652
- "declarations": [
653
- {
654
- "kind": "function",
655
- "name": "ColumnChart",
656
- "parameters": [
643
+ "text": "boolean"
644
+ },
645
+ "default": "false",
646
+ "description": "If true, will enable grouped chart plotting numeric values for levels of two categorical variables instead of one.",
647
+ "privacy": "public"
648
+ },
657
649
  {
658
- "name": "container",
650
+ "kind": "field",
651
+ "name": "reduced",
659
652
  "type": {
660
- "text": "HTMLElement"
653
+ "text": "boolean"
654
+ },
655
+ "privacy": "protected",
656
+ "default": "true",
657
+ "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value]).",
658
+ "inheritedFrom": {
659
+ "name": "ConcreteDatasource",
660
+ "module": "src/chart-datasource/chart-datasource.ts"
661
661
  }
662
662
  },
663
663
  {
664
- "name": "config",
664
+ "kind": "field",
665
+ "name": "showFormattedTime",
665
666
  "type": {
666
- "text": "ColumnOptions"
667
+ "text": "boolean"
668
+ },
669
+ "privacy": "protected",
670
+ "default": "false",
671
+ "description": "Only works if [withTimestampFormatting] is true.\n\nDisabled by default, will ignore the TIME portion in the Chart labels.\nOnly affects [DATETIME] fields.",
672
+ "inheritedFrom": {
673
+ "name": "ConcreteDatasource",
674
+ "module": "src/chart-datasource/chart-datasource.ts"
667
675
  }
668
- }
669
- ]
670
- }
671
- ],
672
- "exports": [
673
- {
674
- "kind": "js",
675
- "name": "ColumnChart",
676
- "declaration": {
677
- "name": "ColumnChart",
678
- "module": "src/models/column-chart.ts"
679
- }
680
- }
681
- ]
682
- },
683
- {
684
- "kind": "javascript-module",
685
- "path": "src/models/donut-chart.ts",
686
- "declarations": [
687
- {
688
- "kind": "function",
689
- "name": "DonutChart",
690
- "parameters": [
676
+ },
691
677
  {
692
- "name": "container",
678
+ "kind": "field",
679
+ "name": "withTimestampFormatting",
693
680
  "type": {
694
- "text": "HTMLElement"
681
+ "text": "boolean"
682
+ },
683
+ "default": "true",
684
+ "description": "Enabled by default, will format UNIX timestamp fields to readable [DATE|DATETIME] values.",
685
+ "privacy": "public",
686
+ "inheritedFrom": {
687
+ "name": "BaseDatasource",
688
+ "module": "src/utils/base-datasource.ts"
695
689
  }
696
690
  },
697
691
  {
698
- "name": "config",
692
+ "kind": "field",
693
+ "name": "resourceName",
699
694
  "type": {
700
- "text": "PieOptions"
701
- }
702
- }
703
- ]
704
- }
705
- ],
706
- "exports": [
707
- {
708
- "kind": "js",
709
- "name": "DonutChart",
710
- "declaration": {
711
- "name": "DonutChart",
712
- "module": "src/models/donut-chart.ts"
713
- }
714
- }
715
- ]
716
- },
717
- {
718
- "kind": "javascript-module",
719
- "path": "src/models/dual-axes-chart.ts",
720
- "declarations": [
721
- {
722
- "kind": "function",
723
- "name": "DualAxesChart",
724
- "parameters": [
695
+ "text": "string"
696
+ },
697
+ "default": "''",
698
+ "inheritedFrom": {
699
+ "name": "BaseDatasource",
700
+ "module": "src/utils/base-datasource.ts"
701
+ },
702
+ "description": "Name of the backend resource which contain the data.",
703
+ "privacy": "public"
704
+ },
725
705
  {
726
- "name": "container",
706
+ "kind": "field",
707
+ "name": "criteria",
727
708
  "type": {
728
- "text": "HTMLElement"
729
- }
709
+ "text": "string"
710
+ },
711
+ "inheritedFrom": {
712
+ "name": "BaseDatasource",
713
+ "module": "src/utils/base-datasource.ts"
714
+ },
715
+ "description": "Clients can send a Groovy expression to perform filters on the query server,\nthese remain active for the life of the subscription.",
716
+ "privacy": "public"
730
717
  },
731
718
  {
732
- "name": "config",
733
- "type": {
734
- "text": "DualAxesOptions"
735
- }
736
- }
737
- ]
738
- }
739
- ],
740
- "exports": [
741
- {
742
- "kind": "js",
743
- "name": "DualAxesChart",
744
- "declaration": {
745
- "name": "DualAxesChart",
746
- "module": "src/models/dual-axes-chart.ts"
747
- }
748
- }
749
- ]
750
- },
751
- {
752
- "kind": "javascript-module",
753
- "path": "src/models/index.ts",
754
- "declarations": [],
755
- "exports": [
756
- {
757
- "kind": "js",
758
- "name": "*",
759
- "declaration": {
760
- "name": "*",
761
- "package": "./area-chart"
762
- }
763
- },
764
- {
765
- "kind": "js",
766
- "name": "*",
767
- "declaration": {
768
- "name": "*",
769
- "package": "./bar-chart"
770
- }
771
- },
772
- {
773
- "kind": "js",
774
- "name": "*",
775
- "declaration": {
776
- "name": "*",
777
- "package": "./column-chart"
778
- }
779
- },
780
- {
781
- "kind": "js",
782
- "name": "*",
783
- "declaration": {
784
- "name": "*",
785
- "package": "./donut-chart"
786
- }
787
- },
788
- {
789
- "kind": "js",
790
- "name": "*",
791
- "declaration": {
792
- "name": "*",
793
- "package": "./dual-axes-chart"
794
- }
795
- },
796
- {
797
- "kind": "js",
798
- "name": "*",
799
- "declaration": {
800
- "name": "*",
801
- "package": "./line-chart"
802
- }
803
- },
804
- {
805
- "kind": "js",
806
- "name": "*",
807
- "declaration": {
808
- "name": "*",
809
- "package": "./mix-chart"
810
- }
811
- },
812
- {
813
- "kind": "js",
814
- "name": "*",
815
- "declaration": {
816
- "name": "*",
817
- "package": "./pie-chart"
818
- }
819
- },
820
- {
821
- "kind": "js",
822
- "name": "*",
823
- "declaration": {
824
- "name": "*",
825
- "package": "./rose-chart"
826
- }
827
- },
828
- {
829
- "kind": "js",
830
- "name": "*",
831
- "declaration": {
832
- "name": "*",
833
- "package": "./scatter-chart"
834
- }
835
- },
836
- {
837
- "kind": "js",
838
- "name": "*",
839
- "declaration": {
840
- "name": "*",
841
- "package": "./stock-chart"
842
- }
843
- }
844
- ]
845
- },
846
- {
847
- "kind": "javascript-module",
848
- "path": "src/models/line-chart.ts",
849
- "declarations": [
850
- {
851
- "kind": "function",
852
- "name": "LineChart",
853
- "parameters": [
854
- {
855
- "name": "container",
856
- "type": {
857
- "text": "HTMLElement"
858
- }
859
- },
860
- {
861
- "name": "config",
862
- "type": {
863
- "text": "LineOptions"
864
- }
865
- }
866
- ]
867
- }
868
- ],
869
- "exports": [
870
- {
871
- "kind": "js",
872
- "name": "LineChart",
873
- "declaration": {
874
- "name": "LineChart",
875
- "module": "src/models/line-chart.ts"
876
- }
877
- }
878
- ]
879
- },
880
- {
881
- "kind": "javascript-module",
882
- "path": "src/models/mix-chart.ts",
883
- "declarations": [
884
- {
885
- "kind": "function",
886
- "name": "MixChart",
887
- "parameters": [
888
- {
889
- "name": "container",
890
- "type": {
891
- "text": "HTMLElement"
892
- }
893
- },
894
- {
895
- "name": "config",
896
- "type": {
897
- "text": "MixOptions"
898
- }
899
- }
900
- ]
901
- }
902
- ],
903
- "exports": [
904
- {
905
- "kind": "js",
906
- "name": "MixChart",
907
- "declaration": {
908
- "name": "MixChart",
909
- "module": "src/models/mix-chart.ts"
910
- }
911
- }
912
- ]
913
- },
914
- {
915
- "kind": "javascript-module",
916
- "path": "src/models/pie-chart.ts",
917
- "declarations": [
918
- {
919
- "kind": "function",
920
- "name": "PieChart",
921
- "parameters": [
922
- {
923
- "name": "container",
924
- "type": {
925
- "text": "HTMLElement"
926
- }
927
- },
928
- {
929
- "name": "config",
930
- "type": {
931
- "text": "PieOptions"
932
- }
933
- }
934
- ]
935
- }
936
- ],
937
- "exports": [
938
- {
939
- "kind": "js",
940
- "name": "PieChart",
941
- "declaration": {
942
- "name": "PieChart",
943
- "module": "src/models/pie-chart.ts"
944
- }
945
- }
946
- ]
947
- },
948
- {
949
- "kind": "javascript-module",
950
- "path": "src/models/rose-chart.ts",
951
- "declarations": [
952
- {
953
- "kind": "function",
954
- "name": "RoseChart",
955
- "parameters": [
956
- {
957
- "name": "container",
958
- "type": {
959
- "text": "HTMLElement"
960
- }
961
- },
962
- {
963
- "name": "config",
964
- "type": {
965
- "text": "RoseOptions"
966
- }
967
- }
968
- ]
969
- }
970
- ],
971
- "exports": [
972
- {
973
- "kind": "js",
974
- "name": "RoseChart",
975
- "declaration": {
976
- "name": "RoseChart",
977
- "module": "src/models/rose-chart.ts"
978
- }
979
- }
980
- ]
981
- },
982
- {
983
- "kind": "javascript-module",
984
- "path": "src/models/scatter-chart.ts",
985
- "declarations": [
986
- {
987
- "kind": "function",
988
- "name": "ScatterChart",
989
- "parameters": [
990
- {
991
- "name": "container",
992
- "type": {
993
- "text": "HTMLElement"
994
- }
995
- },
996
- {
997
- "name": "config",
998
- "type": {
999
- "text": "ScatterOptions"
1000
- }
1001
- }
1002
- ]
1003
- }
1004
- ],
1005
- "exports": [
1006
- {
1007
- "kind": "js",
1008
- "name": "ScatterChart",
1009
- "declaration": {
1010
- "name": "ScatterChart",
1011
- "module": "src/models/scatter-chart.ts"
1012
- }
1013
- }
1014
- ]
1015
- },
1016
- {
1017
- "kind": "javascript-module",
1018
- "path": "src/models/stock-chart.ts",
1019
- "declarations": [
1020
- {
1021
- "kind": "function",
1022
- "name": "StockChart",
1023
- "parameters": [
1024
- {
1025
- "name": "container",
1026
- "type": {
1027
- "text": "HTMLElement"
1028
- }
1029
- },
1030
- {
1031
- "name": "config",
1032
- "type": {
1033
- "text": "StockOptions"
1034
- }
1035
- }
1036
- ]
1037
- }
1038
- ],
1039
- "exports": [
1040
- {
1041
- "kind": "js",
1042
- "name": "StockChart",
1043
- "declaration": {
1044
- "name": "StockChart",
1045
- "module": "src/models/stock-chart.ts"
1046
- }
1047
- }
1048
- ]
1049
- },
1050
- {
1051
- "kind": "javascript-module",
1052
- "path": "src/chart-datasource/chart-datasource.ts",
1053
- "declarations": [
1054
- {
1055
- "kind": "variable",
1056
- "name": "defaultChartFields",
1057
- "type": {
1058
- "text": "string"
1059
- },
1060
- "default": "'groupBy value'",
1061
- "description": "The first and second default chart fields when it's a dual axes chart.",
1062
- "privacy": "public"
1063
- },
1064
- {
1065
- "kind": "variable",
1066
- "name": "defaultSeriesChartField",
1067
- "type": {
1068
- "text": "string"
1069
- },
1070
- "default": "'series'",
1071
- "description": "The third default chart field when it's a triple axes chart.",
1072
- "privacy": "public"
1073
- },
1074
- {
1075
- "kind": "class",
1076
- "description": "The Genesis Datasource for the `g2plot-chart` component.",
1077
- "name": "ChartDatasource",
1078
- "members": [
1079
- {
1080
- "kind": "field",
1081
- "name": "chartFields",
1082
- "type": {
1083
- "text": "string"
1084
- },
1085
- "default": "'groupBy value'",
1086
- "description": "Default value is 'groupBy value'. Can be customized but order matters.\n\n[Mandatory] First is always the xField/colorField\n[Mandatory] Second is always the yField/angleField\n[Optional] Third is always the seriesField",
1087
- "privacy": "public"
1088
- },
1089
- {
1090
- "kind": "field",
1091
- "name": "serverFields",
1092
- "type": {
1093
- "text": "string"
1094
- },
1095
- "description": "Can be customized but order matters.\n\n[Mandatory] First will be associated to the first value in 'chartFields' (xField/colorField)\n[Mandatory] Second will be associated to the second value in 'chartFields' (yField/angleField)\n[Optional] Third will be associated to the third value in 'chartFields' (seriesField)",
1096
- "privacy": "public"
1097
- },
1098
- {
1099
- "kind": "field",
1100
- "name": "isStack",
1101
- "type": {
1102
- "text": "boolean"
1103
- },
1104
- "default": "false",
1105
- "description": "If true, will enable stacked chart to effectively portray comparisons of total values across several categories.",
1106
- "privacy": "public"
1107
- },
1108
- {
1109
- "kind": "field",
1110
- "name": "isGroup",
1111
- "type": {
1112
- "text": "boolean"
1113
- },
1114
- "default": "false",
1115
- "description": "If true, will enable grouped chart plotting numeric values for levels of two categorical variables instead of one.",
1116
- "privacy": "public"
1117
- },
1118
- {
1119
- "kind": "field",
1120
- "name": "reduced",
1121
- "type": {
1122
- "text": "boolean"
1123
- },
1124
- "privacy": "protected",
1125
- "default": "true",
1126
- "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value]).",
1127
- "inheritedFrom": {
1128
- "name": "ConcreteDatasource",
1129
- "module": "src/chart-datasource/chart-datasource.ts"
1130
- }
1131
- },
1132
- {
1133
- "kind": "field",
1134
- "name": "showFormattedTime",
1135
- "type": {
1136
- "text": "boolean"
1137
- },
1138
- "privacy": "protected",
1139
- "default": "false",
1140
- "description": "Only works if [withTimestampFormatting] is true.\n\nDisabled by default, will ignore the TIME portion in the Chart labels.\nOnly affects [DATETIME] fields.",
1141
- "inheritedFrom": {
1142
- "name": "ConcreteDatasource",
1143
- "module": "src/chart-datasource/chart-datasource.ts"
1144
- }
1145
- },
1146
- {
1147
- "kind": "field",
1148
- "name": "withTimestampFormatting",
1149
- "type": {
1150
- "text": "boolean"
1151
- },
1152
- "default": "true",
1153
- "description": "Enabled by default, will format UNIX timestamp fields to readable [DATE|DATETIME] values.",
1154
- "privacy": "public",
1155
- "inheritedFrom": {
1156
- "name": "BaseDatasource",
1157
- "module": "src/utils/base-datasource.ts"
1158
- }
1159
- },
1160
- {
1161
- "kind": "field",
1162
- "name": "resourceName",
1163
- "type": {
1164
- "text": "string"
1165
- },
1166
- "default": "''",
1167
- "inheritedFrom": {
1168
- "name": "BaseDatasource",
1169
- "module": "src/utils/base-datasource.ts"
1170
- },
1171
- "description": "Name of the backend resource which contain the data.",
1172
- "privacy": "public"
1173
- },
1174
- {
1175
- "kind": "field",
1176
- "name": "criteria",
1177
- "type": {
1178
- "text": "string"
1179
- },
1180
- "inheritedFrom": {
1181
- "name": "BaseDatasource",
1182
- "module": "src/utils/base-datasource.ts"
1183
- },
1184
- "description": "Clients can send a Groovy expression to perform filters on the query server,\nthese remain active for the life of the subscription.",
1185
- "privacy": "public"
1186
- },
1187
- {
1188
- "kind": "field",
1189
- "name": "data",
719
+ "kind": "field",
720
+ "name": "data",
1190
721
  "type": {
1191
722
  "text": "any[]"
1192
723
  },
@@ -2139,262 +1670,710 @@
2139
1670
  "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value])."
2140
1671
  },
2141
1672
  {
2142
- "name": "show-formatted-time",
1673
+ "name": "show-formatted-time",
1674
+ "type": {
1675
+ "text": "boolean"
1676
+ },
1677
+ "default": "false",
1678
+ "description": "Only works if [withTimestampFormatting] is true.\n\nDisabled by default, will ignore the TIME portion in the Chart labels.\nOnly affects [DATETIME] fields.",
1679
+ "fieldName": "showFormattedTime"
1680
+ },
1681
+ {
1682
+ "name": "with-timestamp-formatting",
1683
+ "type": {
1684
+ "text": "boolean"
1685
+ },
1686
+ "default": "true",
1687
+ "description": "Enabled by default, will format UNIX timestamp fields to readable [DATE|DATETIME] values.",
1688
+ "fieldName": "withTimestampFormatting",
1689
+ "inheritedFrom": {
1690
+ "name": "BaseDatasource",
1691
+ "module": "src/utils/base-datasource.ts"
1692
+ }
1693
+ },
1694
+ {
1695
+ "name": "resourceName",
1696
+ "type": {
1697
+ "text": "string"
1698
+ },
1699
+ "default": "''",
1700
+ "fieldName": "resourceName",
1701
+ "inheritedFrom": {
1702
+ "name": "BaseDatasource",
1703
+ "module": "src/utils/base-datasource.ts"
1704
+ },
1705
+ "description": "Name of the backend resource which contain the data."
1706
+ },
1707
+ {
1708
+ "name": "criteria",
1709
+ "type": {
1710
+ "text": "string"
1711
+ },
1712
+ "fieldName": "criteria",
1713
+ "inheritedFrom": {
1714
+ "name": "BaseDatasource",
1715
+ "module": "src/utils/base-datasource.ts"
1716
+ },
1717
+ "description": "Clients can send a Groovy expression to perform filters on the query server,\nthese remain active for the life of the subscription."
1718
+ },
1719
+ {
1720
+ "type": {
1721
+ "text": "boolean"
1722
+ },
1723
+ "default": "true",
1724
+ "fieldName": "reduced",
1725
+ "inheritedFrom": {
1726
+ "name": "BaseDatasource",
1727
+ "module": "src/utils/base-datasource.ts"
1728
+ },
1729
+ "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value])."
1730
+ },
1731
+ {
1732
+ "name": "maxRows",
2143
1733
  "type": {
2144
- "text": "boolean"
1734
+ "text": "number"
2145
1735
  },
2146
- "default": "false",
2147
- "description": "Only works if [withTimestampFormatting] is true.\n\nDisabled by default, will ignore the TIME portion in the Chart labels.\nOnly affects [DATETIME] fields.",
2148
- "fieldName": "showFormattedTime"
1736
+ "fieldName": "maxRows",
1737
+ "inheritedFrom": {
1738
+ "name": "BaseDatasource",
1739
+ "module": "src/utils/base-datasource.ts"
1740
+ },
1741
+ "description": "Maximum number of rows to be returned as part of the initial message,\nand as part of any additional MORE_ROWS messages.\nThis will not affect the number of rows displayed."
1742
+ },
1743
+ {
1744
+ "name": "maxView",
1745
+ "type": {
1746
+ "text": "number"
1747
+ },
1748
+ "fieldName": "maxView",
1749
+ "inheritedFrom": {
1750
+ "name": "BaseDatasource",
1751
+ "module": "src/utils/base-datasource.ts"
1752
+ },
1753
+ "description": "Maximum number of rows to track as part of a client \"view\"."
1754
+ },
1755
+ {
1756
+ "name": "orderBy",
1757
+ "type": {
1758
+ "text": "string"
1759
+ },
1760
+ "fieldName": "orderBy",
1761
+ "inheritedFrom": {
1762
+ "name": "BaseDatasource",
1763
+ "module": "src/utils/base-datasource.ts"
1764
+ },
1765
+ "description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest)."
2149
1766
  },
2150
1767
  {
2151
- "name": "with-timestamp-formatting",
2152
1768
  "type": {
2153
1769
  "text": "boolean"
2154
1770
  },
2155
1771
  "default": "true",
2156
- "description": "Enabled by default, will format UNIX timestamp fields to readable [DATE|DATETIME] values.",
2157
- "fieldName": "withTimestampFormatting",
1772
+ "fieldName": "reduced",
2158
1773
  "inheritedFrom": {
2159
1774
  "name": "BaseDatasource",
2160
1775
  "module": "src/utils/base-datasource.ts"
2161
- }
1776
+ },
1777
+ "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value])."
2162
1778
  },
2163
1779
  {
2164
- "name": "resourceName",
1780
+ "name": "rowId",
2165
1781
  "type": {
2166
1782
  "text": "string"
2167
1783
  },
2168
- "default": "''",
2169
- "fieldName": "resourceName",
1784
+ "default": "'ROW_REF'",
1785
+ "fieldName": "rowId",
2170
1786
  "inheritedFrom": {
2171
1787
  "name": "BaseDatasource",
2172
1788
  "module": "src/utils/base-datasource.ts"
2173
1789
  },
2174
- "description": "Name of the backend resource which contain the data."
1790
+ "description": "Attribute to set an unique identifier for the row."
2175
1791
  },
2176
1792
  {
2177
- "name": "criteria",
1793
+ "name": "fields",
2178
1794
  "type": {
2179
1795
  "text": "string"
2180
1796
  },
2181
- "fieldName": "criteria",
1797
+ "fieldName": "fields",
2182
1798
  "inheritedFrom": {
2183
1799
  "name": "BaseDatasource",
2184
1800
  "module": "src/utils/base-datasource.ts"
2185
- },
2186
- "description": "Clients can send a Groovy expression to perform filters on the query server,\nthese remain active for the life of the subscription."
1801
+ }
1802
+ }
1803
+ ],
1804
+ "mixins": [
1805
+ {
1806
+ "name": "LifecycleMixin",
1807
+ "package": "@genesislcap/foundation-utils"
1808
+ }
1809
+ ],
1810
+ "superclass": {
1811
+ "name": "ConcreteDatasource",
1812
+ "module": "src/chart-datasource/chart-datasource.ts"
1813
+ },
1814
+ "tagName": "chart-datasource",
1815
+ "customElement": true
1816
+ }
1817
+ ],
1818
+ "exports": [
1819
+ {
1820
+ "kind": "js",
1821
+ "name": "defaultChartFields",
1822
+ "declaration": {
1823
+ "name": "defaultChartFields",
1824
+ "module": "src/chart-datasource/chart-datasource.ts"
1825
+ }
1826
+ },
1827
+ {
1828
+ "kind": "js",
1829
+ "name": "defaultSeriesChartField",
1830
+ "declaration": {
1831
+ "name": "defaultSeriesChartField",
1832
+ "module": "src/chart-datasource/chart-datasource.ts"
1833
+ }
1834
+ },
1835
+ {
1836
+ "kind": "js",
1837
+ "name": "ChartDatasource",
1838
+ "declaration": {
1839
+ "name": "ChartDatasource",
1840
+ "module": "src/chart-datasource/chart-datasource.ts"
1841
+ }
1842
+ },
1843
+ {
1844
+ "kind": "custom-element-definition",
1845
+ "name": "chart-datasource",
1846
+ "declaration": {
1847
+ "name": "ChartDatasource",
1848
+ "module": "src/chart-datasource/chart-datasource.ts"
1849
+ }
1850
+ }
1851
+ ]
1852
+ },
1853
+ {
1854
+ "kind": "javascript-module",
1855
+ "path": "src/chart-datasource/chart-datasource.types.ts",
1856
+ "declarations": [],
1857
+ "exports": []
1858
+ },
1859
+ {
1860
+ "kind": "javascript-module",
1861
+ "path": "src/chart-datasource/chart-datasource.utils.ts",
1862
+ "declarations": [
1863
+ {
1864
+ "kind": "function",
1865
+ "name": "extractFields",
1866
+ "parameters": [
1867
+ {
1868
+ "name": "fields"
1869
+ }
1870
+ ]
1871
+ },
1872
+ {
1873
+ "kind": "function",
1874
+ "name": "getFormattedDateGroupBy",
1875
+ "parameters": [
1876
+ {
1877
+ "name": "groupByFieldValue",
1878
+ "type": {
1879
+ "text": "any"
1880
+ }
1881
+ },
1882
+ {
1883
+ "name": "fieldType",
1884
+ "type": {
1885
+ "text": "FieldTypeEnum"
1886
+ }
1887
+ },
1888
+ {
1889
+ "name": "showTime",
1890
+ "optional": true,
1891
+ "type": {
1892
+ "text": "boolean"
1893
+ }
1894
+ }
1895
+ ]
1896
+ },
1897
+ {
1898
+ "kind": "function",
1899
+ "name": "getReduced",
1900
+ "return": {
1901
+ "type": {
1902
+ "text": "any[]"
1903
+ }
1904
+ },
1905
+ "parameters": [
1906
+ {
1907
+ "name": "allRows",
1908
+ "type": {
1909
+ "text": "any[]"
1910
+ }
1911
+ },
1912
+ {
1913
+ "name": "groupByField",
1914
+ "type": {
1915
+ "text": "string"
1916
+ }
1917
+ },
1918
+ {
1919
+ "name": "valueField",
1920
+ "type": {
1921
+ "text": "string"
1922
+ }
2187
1923
  },
2188
1924
  {
1925
+ "name": "seriesField",
1926
+ "optional": true,
1927
+ "type": {
1928
+ "text": "string"
1929
+ }
1930
+ }
1931
+ ]
1932
+ }
1933
+ ],
1934
+ "exports": [
1935
+ {
1936
+ "kind": "js",
1937
+ "name": "extractFields",
1938
+ "declaration": {
1939
+ "name": "extractFields",
1940
+ "module": "src/chart-datasource/chart-datasource.utils.ts"
1941
+ }
1942
+ },
1943
+ {
1944
+ "kind": "js",
1945
+ "name": "getFormattedDateGroupBy",
1946
+ "declaration": {
1947
+ "name": "getFormattedDateGroupBy",
1948
+ "module": "src/chart-datasource/chart-datasource.utils.ts"
1949
+ }
1950
+ },
1951
+ {
1952
+ "kind": "js",
1953
+ "name": "getReduced",
1954
+ "declaration": {
1955
+ "name": "getReduced",
1956
+ "module": "src/chart-datasource/chart-datasource.utils.ts"
1957
+ }
1958
+ }
1959
+ ]
1960
+ },
1961
+ {
1962
+ "kind": "javascript-module",
1963
+ "path": "src/chart-datasource/index.ts",
1964
+ "declarations": [],
1965
+ "exports": [
1966
+ {
1967
+ "kind": "js",
1968
+ "name": "*",
1969
+ "declaration": {
1970
+ "name": "*",
1971
+ "package": "./chart-datasource.config"
1972
+ }
1973
+ },
1974
+ {
1975
+ "kind": "js",
1976
+ "name": "*",
1977
+ "declaration": {
1978
+ "name": "*",
1979
+ "package": "./chart-datasource.types"
1980
+ }
1981
+ },
1982
+ {
1983
+ "kind": "js",
1984
+ "name": "*",
1985
+ "declaration": {
1986
+ "name": "*",
1987
+ "package": "./chart-datasource"
1988
+ }
1989
+ }
1990
+ ]
1991
+ },
1992
+ {
1993
+ "kind": "javascript-module",
1994
+ "path": "src/models/area-chart.ts",
1995
+ "declarations": [
1996
+ {
1997
+ "kind": "function",
1998
+ "name": "AreaChart",
1999
+ "parameters": [
2000
+ {
2001
+ "name": "container",
2189
2002
  "type": {
2190
- "text": "boolean"
2191
- },
2192
- "default": "true",
2193
- "fieldName": "reduced",
2194
- "inheritedFrom": {
2195
- "name": "BaseDatasource",
2196
- "module": "src/utils/base-datasource.ts"
2197
- },
2198
- "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value])."
2003
+ "text": "HTMLElement"
2004
+ }
2199
2005
  },
2200
2006
  {
2201
- "name": "maxRows",
2007
+ "name": "config",
2202
2008
  "type": {
2203
- "text": "number"
2204
- },
2205
- "fieldName": "maxRows",
2206
- "inheritedFrom": {
2207
- "name": "BaseDatasource",
2208
- "module": "src/utils/base-datasource.ts"
2209
- },
2210
- "description": "Maximum number of rows to be returned as part of the initial message,\nand as part of any additional MORE_ROWS messages.\nThis will not affect the number of rows displayed."
2211
- },
2009
+ "text": "AreaOptions"
2010
+ }
2011
+ }
2012
+ ]
2013
+ }
2014
+ ],
2015
+ "exports": [
2016
+ {
2017
+ "kind": "js",
2018
+ "name": "AreaChart",
2019
+ "declaration": {
2020
+ "name": "AreaChart",
2021
+ "module": "src/models/area-chart.ts"
2022
+ }
2023
+ }
2024
+ ]
2025
+ },
2026
+ {
2027
+ "kind": "javascript-module",
2028
+ "path": "src/models/bar-chart.ts",
2029
+ "declarations": [
2030
+ {
2031
+ "kind": "function",
2032
+ "name": "BarChart",
2033
+ "parameters": [
2212
2034
  {
2213
- "name": "maxView",
2035
+ "name": "container",
2214
2036
  "type": {
2215
- "text": "number"
2216
- },
2217
- "fieldName": "maxView",
2218
- "inheritedFrom": {
2219
- "name": "BaseDatasource",
2220
- "module": "src/utils/base-datasource.ts"
2221
- },
2222
- "description": "Maximum number of rows to track as part of a client \"view\"."
2037
+ "text": "HTMLElement"
2038
+ }
2223
2039
  },
2224
2040
  {
2225
- "name": "orderBy",
2041
+ "name": "config",
2226
2042
  "type": {
2227
- "text": "string"
2228
- },
2229
- "fieldName": "orderBy",
2230
- "inheritedFrom": {
2231
- "name": "BaseDatasource",
2232
- "module": "src/utils/base-datasource.ts"
2233
- },
2234
- "description": "This option can be used to select a Data Server index (defined in the Data Server query),\nwhich is especially useful if you want the data to be sorted in a specific way. By default,\nData Server rows are returned in order of creation (from oldest database record to newest)."
2235
- },
2043
+ "text": "BarOptions"
2044
+ }
2045
+ }
2046
+ ]
2047
+ }
2048
+ ],
2049
+ "exports": [
2050
+ {
2051
+ "kind": "js",
2052
+ "name": "BarChart",
2053
+ "declaration": {
2054
+ "name": "BarChart",
2055
+ "module": "src/models/bar-chart.ts"
2056
+ }
2057
+ }
2058
+ ]
2059
+ },
2060
+ {
2061
+ "kind": "javascript-module",
2062
+ "path": "src/models/column-chart.ts",
2063
+ "declarations": [
2064
+ {
2065
+ "kind": "function",
2066
+ "name": "ColumnChart",
2067
+ "parameters": [
2236
2068
  {
2069
+ "name": "container",
2237
2070
  "type": {
2238
- "text": "boolean"
2239
- },
2240
- "default": "true",
2241
- "fieldName": "reduced",
2242
- "inheritedFrom": {
2243
- "name": "BaseDatasource",
2244
- "module": "src/utils/base-datasource.ts"
2245
- },
2246
- "description": "Enabled by default, will not work if a custom charts-fields is used (requires [type, value])."
2071
+ "text": "HTMLElement"
2072
+ }
2247
2073
  },
2248
2074
  {
2249
- "name": "rowId",
2075
+ "name": "config",
2250
2076
  "type": {
2251
- "text": "string"
2252
- },
2253
- "default": "'ROW_REF'",
2254
- "fieldName": "rowId",
2255
- "inheritedFrom": {
2256
- "name": "BaseDatasource",
2257
- "module": "src/utils/base-datasource.ts"
2258
- },
2259
- "description": "Attribute to set an unique identifier for the row."
2077
+ "text": "ColumnOptions"
2078
+ }
2079
+ }
2080
+ ]
2081
+ }
2082
+ ],
2083
+ "exports": [
2084
+ {
2085
+ "kind": "js",
2086
+ "name": "ColumnChart",
2087
+ "declaration": {
2088
+ "name": "ColumnChart",
2089
+ "module": "src/models/column-chart.ts"
2090
+ }
2091
+ }
2092
+ ]
2093
+ },
2094
+ {
2095
+ "kind": "javascript-module",
2096
+ "path": "src/models/donut-chart.ts",
2097
+ "declarations": [
2098
+ {
2099
+ "kind": "function",
2100
+ "name": "DonutChart",
2101
+ "parameters": [
2102
+ {
2103
+ "name": "container",
2104
+ "type": {
2105
+ "text": "HTMLElement"
2106
+ }
2260
2107
  },
2261
2108
  {
2262
- "name": "fields",
2109
+ "name": "config",
2263
2110
  "type": {
2264
- "text": "string"
2265
- },
2266
- "fieldName": "fields",
2267
- "inheritedFrom": {
2268
- "name": "BaseDatasource",
2269
- "module": "src/utils/base-datasource.ts"
2111
+ "text": "PieOptions"
2270
2112
  }
2271
2113
  }
2272
- ],
2273
- "mixins": [
2114
+ ]
2115
+ }
2116
+ ],
2117
+ "exports": [
2118
+ {
2119
+ "kind": "js",
2120
+ "name": "DonutChart",
2121
+ "declaration": {
2122
+ "name": "DonutChart",
2123
+ "module": "src/models/donut-chart.ts"
2124
+ }
2125
+ }
2126
+ ]
2127
+ },
2128
+ {
2129
+ "kind": "javascript-module",
2130
+ "path": "src/models/dual-axes-chart.ts",
2131
+ "declarations": [
2132
+ {
2133
+ "kind": "function",
2134
+ "name": "DualAxesChart",
2135
+ "parameters": [
2274
2136
  {
2275
- "name": "LifecycleMixin",
2276
- "package": "@genesislcap/foundation-utils"
2137
+ "name": "container",
2138
+ "type": {
2139
+ "text": "HTMLElement"
2140
+ }
2141
+ },
2142
+ {
2143
+ "name": "config",
2144
+ "type": {
2145
+ "text": "DualAxesOptions"
2146
+ }
2277
2147
  }
2278
- ],
2279
- "superclass": {
2280
- "name": "ConcreteDatasource",
2281
- "module": "src/chart-datasource/chart-datasource.ts"
2282
- },
2283
- "tagName": "chart-datasource",
2284
- "customElement": true
2148
+ ]
2285
2149
  }
2286
2150
  ],
2287
2151
  "exports": [
2288
2152
  {
2289
2153
  "kind": "js",
2290
- "name": "defaultChartFields",
2154
+ "name": "DualAxesChart",
2155
+ "declaration": {
2156
+ "name": "DualAxesChart",
2157
+ "module": "src/models/dual-axes-chart.ts"
2158
+ }
2159
+ }
2160
+ ]
2161
+ },
2162
+ {
2163
+ "kind": "javascript-module",
2164
+ "path": "src/models/index.ts",
2165
+ "declarations": [],
2166
+ "exports": [
2167
+ {
2168
+ "kind": "js",
2169
+ "name": "*",
2170
+ "declaration": {
2171
+ "name": "*",
2172
+ "package": "./area-chart"
2173
+ }
2174
+ },
2175
+ {
2176
+ "kind": "js",
2177
+ "name": "*",
2178
+ "declaration": {
2179
+ "name": "*",
2180
+ "package": "./bar-chart"
2181
+ }
2182
+ },
2183
+ {
2184
+ "kind": "js",
2185
+ "name": "*",
2186
+ "declaration": {
2187
+ "name": "*",
2188
+ "package": "./column-chart"
2189
+ }
2190
+ },
2191
+ {
2192
+ "kind": "js",
2193
+ "name": "*",
2194
+ "declaration": {
2195
+ "name": "*",
2196
+ "package": "./donut-chart"
2197
+ }
2198
+ },
2199
+ {
2200
+ "kind": "js",
2201
+ "name": "*",
2202
+ "declaration": {
2203
+ "name": "*",
2204
+ "package": "./dual-axes-chart"
2205
+ }
2206
+ },
2207
+ {
2208
+ "kind": "js",
2209
+ "name": "*",
2291
2210
  "declaration": {
2292
- "name": "defaultChartFields",
2293
- "module": "src/chart-datasource/chart-datasource.ts"
2211
+ "name": "*",
2212
+ "package": "./line-chart"
2294
2213
  }
2295
2214
  },
2296
2215
  {
2297
2216
  "kind": "js",
2298
- "name": "defaultSeriesChartField",
2217
+ "name": "*",
2299
2218
  "declaration": {
2300
- "name": "defaultSeriesChartField",
2301
- "module": "src/chart-datasource/chart-datasource.ts"
2219
+ "name": "*",
2220
+ "package": "./mix-chart"
2302
2221
  }
2303
2222
  },
2304
2223
  {
2305
2224
  "kind": "js",
2306
- "name": "ChartDatasource",
2225
+ "name": "*",
2307
2226
  "declaration": {
2308
- "name": "ChartDatasource",
2309
- "module": "src/chart-datasource/chart-datasource.ts"
2227
+ "name": "*",
2228
+ "package": "./pie-chart"
2310
2229
  }
2311
2230
  },
2312
2231
  {
2313
- "kind": "custom-element-definition",
2314
- "name": "chart-datasource",
2232
+ "kind": "js",
2233
+ "name": "*",
2315
2234
  "declaration": {
2316
- "name": "ChartDatasource",
2317
- "module": "src/chart-datasource/chart-datasource.ts"
2235
+ "name": "*",
2236
+ "package": "./rose-chart"
2237
+ }
2238
+ },
2239
+ {
2240
+ "kind": "js",
2241
+ "name": "*",
2242
+ "declaration": {
2243
+ "name": "*",
2244
+ "package": "./scatter-chart"
2245
+ }
2246
+ },
2247
+ {
2248
+ "kind": "js",
2249
+ "name": "*",
2250
+ "declaration": {
2251
+ "name": "*",
2252
+ "package": "./stock-chart"
2318
2253
  }
2319
2254
  }
2320
2255
  ]
2321
2256
  },
2322
2257
  {
2323
2258
  "kind": "javascript-module",
2324
- "path": "src/chart-datasource/chart-datasource.types.ts",
2325
- "declarations": [],
2326
- "exports": []
2327
- },
2328
- {
2329
- "kind": "javascript-module",
2330
- "path": "src/chart-datasource/chart-datasource.utils.ts",
2259
+ "path": "src/models/line-chart.ts",
2331
2260
  "declarations": [
2332
2261
  {
2333
2262
  "kind": "function",
2334
- "name": "extractFields",
2263
+ "name": "LineChart",
2335
2264
  "parameters": [
2336
2265
  {
2337
- "name": "fields"
2266
+ "name": "container",
2267
+ "type": {
2268
+ "text": "HTMLElement"
2269
+ }
2270
+ },
2271
+ {
2272
+ "name": "config",
2273
+ "type": {
2274
+ "text": "LineOptions"
2275
+ }
2338
2276
  }
2339
2277
  ]
2340
- },
2278
+ }
2279
+ ],
2280
+ "exports": [
2281
+ {
2282
+ "kind": "js",
2283
+ "name": "LineChart",
2284
+ "declaration": {
2285
+ "name": "LineChart",
2286
+ "module": "src/models/line-chart.ts"
2287
+ }
2288
+ }
2289
+ ]
2290
+ },
2291
+ {
2292
+ "kind": "javascript-module",
2293
+ "path": "src/models/mix-chart.ts",
2294
+ "declarations": [
2341
2295
  {
2342
2296
  "kind": "function",
2343
- "name": "getFormattedDateGroupBy",
2297
+ "name": "MixChart",
2344
2298
  "parameters": [
2345
2299
  {
2346
- "name": "groupByFieldValue",
2347
- "type": {
2348
- "text": "any"
2349
- }
2350
- },
2351
- {
2352
- "name": "fieldType",
2300
+ "name": "container",
2353
2301
  "type": {
2354
- "text": "FieldTypeEnum"
2302
+ "text": "HTMLElement"
2355
2303
  }
2356
2304
  },
2357
2305
  {
2358
- "name": "showTime",
2359
- "optional": true,
2306
+ "name": "config",
2360
2307
  "type": {
2361
- "text": "boolean"
2308
+ "text": "MixOptions"
2362
2309
  }
2363
2310
  }
2364
2311
  ]
2365
- },
2312
+ }
2313
+ ],
2314
+ "exports": [
2315
+ {
2316
+ "kind": "js",
2317
+ "name": "MixChart",
2318
+ "declaration": {
2319
+ "name": "MixChart",
2320
+ "module": "src/models/mix-chart.ts"
2321
+ }
2322
+ }
2323
+ ]
2324
+ },
2325
+ {
2326
+ "kind": "javascript-module",
2327
+ "path": "src/models/pie-chart.ts",
2328
+ "declarations": [
2366
2329
  {
2367
2330
  "kind": "function",
2368
- "name": "getReduced",
2369
- "return": {
2370
- "type": {
2371
- "text": "any[]"
2372
- }
2373
- },
2331
+ "name": "PieChart",
2374
2332
  "parameters": [
2375
2333
  {
2376
- "name": "allRows",
2334
+ "name": "container",
2377
2335
  "type": {
2378
- "text": "any[]"
2336
+ "text": "HTMLElement"
2379
2337
  }
2380
2338
  },
2381
2339
  {
2382
- "name": "groupByField",
2340
+ "name": "config",
2383
2341
  "type": {
2384
- "text": "string"
2342
+ "text": "PieOptions"
2385
2343
  }
2386
- },
2344
+ }
2345
+ ]
2346
+ }
2347
+ ],
2348
+ "exports": [
2349
+ {
2350
+ "kind": "js",
2351
+ "name": "PieChart",
2352
+ "declaration": {
2353
+ "name": "PieChart",
2354
+ "module": "src/models/pie-chart.ts"
2355
+ }
2356
+ }
2357
+ ]
2358
+ },
2359
+ {
2360
+ "kind": "javascript-module",
2361
+ "path": "src/models/rose-chart.ts",
2362
+ "declarations": [
2363
+ {
2364
+ "kind": "function",
2365
+ "name": "RoseChart",
2366
+ "parameters": [
2387
2367
  {
2388
- "name": "valueField",
2368
+ "name": "container",
2389
2369
  "type": {
2390
- "text": "string"
2370
+ "text": "HTMLElement"
2391
2371
  }
2392
2372
  },
2393
2373
  {
2394
- "name": "seriesField",
2395
- "optional": true,
2374
+ "name": "config",
2396
2375
  "type": {
2397
- "text": "string"
2376
+ "text": "RoseOptions"
2398
2377
  }
2399
2378
  }
2400
2379
  ]
@@ -2403,57 +2382,78 @@
2403
2382
  "exports": [
2404
2383
  {
2405
2384
  "kind": "js",
2406
- "name": "extractFields",
2407
- "declaration": {
2408
- "name": "extractFields",
2409
- "module": "src/chart-datasource/chart-datasource.utils.ts"
2410
- }
2411
- },
2412
- {
2413
- "kind": "js",
2414
- "name": "getFormattedDateGroupBy",
2415
- "declaration": {
2416
- "name": "getFormattedDateGroupBy",
2417
- "module": "src/chart-datasource/chart-datasource.utils.ts"
2418
- }
2419
- },
2420
- {
2421
- "kind": "js",
2422
- "name": "getReduced",
2385
+ "name": "RoseChart",
2423
2386
  "declaration": {
2424
- "name": "getReduced",
2425
- "module": "src/chart-datasource/chart-datasource.utils.ts"
2387
+ "name": "RoseChart",
2388
+ "module": "src/models/rose-chart.ts"
2426
2389
  }
2427
2390
  }
2428
2391
  ]
2429
2392
  },
2430
2393
  {
2431
2394
  "kind": "javascript-module",
2432
- "path": "src/chart-datasource/index.ts",
2433
- "declarations": [],
2395
+ "path": "src/models/scatter-chart.ts",
2396
+ "declarations": [
2397
+ {
2398
+ "kind": "function",
2399
+ "name": "ScatterChart",
2400
+ "parameters": [
2401
+ {
2402
+ "name": "container",
2403
+ "type": {
2404
+ "text": "HTMLElement"
2405
+ }
2406
+ },
2407
+ {
2408
+ "name": "config",
2409
+ "type": {
2410
+ "text": "ScatterOptions"
2411
+ }
2412
+ }
2413
+ ]
2414
+ }
2415
+ ],
2434
2416
  "exports": [
2435
2417
  {
2436
2418
  "kind": "js",
2437
- "name": "*",
2419
+ "name": "ScatterChart",
2438
2420
  "declaration": {
2439
- "name": "*",
2440
- "package": "./chart-datasource.config"
2421
+ "name": "ScatterChart",
2422
+ "module": "src/models/scatter-chart.ts"
2441
2423
  }
2442
- },
2424
+ }
2425
+ ]
2426
+ },
2427
+ {
2428
+ "kind": "javascript-module",
2429
+ "path": "src/models/stock-chart.ts",
2430
+ "declarations": [
2443
2431
  {
2444
- "kind": "js",
2445
- "name": "*",
2446
- "declaration": {
2447
- "name": "*",
2448
- "package": "./chart-datasource.types"
2449
- }
2450
- },
2432
+ "kind": "function",
2433
+ "name": "StockChart",
2434
+ "parameters": [
2435
+ {
2436
+ "name": "container",
2437
+ "type": {
2438
+ "text": "HTMLElement"
2439
+ }
2440
+ },
2441
+ {
2442
+ "name": "config",
2443
+ "type": {
2444
+ "text": "StockOptions"
2445
+ }
2446
+ }
2447
+ ]
2448
+ }
2449
+ ],
2450
+ "exports": [
2451
2451
  {
2452
2452
  "kind": "js",
2453
- "name": "*",
2453
+ "name": "StockChart",
2454
2454
  "declaration": {
2455
- "name": "*",
2456
- "package": "./chart-datasource"
2455
+ "name": "StockChart",
2456
+ "module": "src/models/stock-chart.ts"
2457
2457
  }
2458
2458
  }
2459
2459
  ]