@genesislcap/g2plot-chart 14.437.5 → 14.437.7-alpha-32e8d53.0

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