@undp/data-viz 0.0.70 → 0.0.71

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.
package/dist/index.d.ts CHANGED
@@ -27,21 +27,21 @@ declare interface AggregationSettingsDataType {
27
27
  aggregationMethod?: 'sum' | 'average' | 'min' | 'max';
28
28
  }
29
29
 
30
- export declare function AnimatedBarGraph(props: Props_42): JSX_2.Element;
30
+ export declare function AnimatedBarGraph(props: Props_43): JSX_2.Element;
31
31
 
32
- export declare function AnimatedBiVariateChoroplethMap(props: Props_45): JSX_2.Element | null;
32
+ export declare function AnimatedBiVariateChoroplethMap(props: Props_46): JSX_2.Element | null;
33
33
 
34
- export declare function AnimatedButterflyChart(props: Props_43): JSX_2.Element;
34
+ export declare function AnimatedButterflyChart(props: Props_44): JSX_2.Element;
35
35
 
36
- export declare function AnimatedChoroplethMap(props: Props_46): JSX_2.Element;
36
+ export declare function AnimatedChoroplethMap(props: Props_47): JSX_2.Element;
37
37
 
38
- export declare function AnimatedDotDensityMap(props: Props_47): JSX_2.Element;
38
+ export declare function AnimatedDotDensityMap(props: Props_48): JSX_2.Element;
39
39
 
40
- export declare function AnimatedDumbbellChart(props: Props_44): JSX_2.Element;
40
+ export declare function AnimatedDumbbellChart(props: Props_45): JSX_2.Element;
41
41
 
42
42
  export declare function AnimatedGroupedBarGraph(props: GroupedBarChartProps_2): JSX_2.Element;
43
43
 
44
- export declare function AnimatedScatterPlot(props: Props_48): JSX_2.Element;
44
+ export declare function AnimatedScatterPlot(props: Props_49): JSX_2.Element;
45
45
 
46
46
  export declare function AnimatedStackedBarGraph(props: StackedBarChartProps_2): JSX_2.Element;
47
47
 
@@ -190,9 +190,9 @@ declare interface ClassNameObject {
190
190
  dataCards?: string;
191
191
  }
192
192
 
193
- export declare function ColorLegend(props: Props_54): JSX_2.Element;
193
+ export declare function ColorLegend(props: Props_55): JSX_2.Element;
194
194
 
195
- export declare function ColorLegendWithMouseOver(props: Props_55): JSX_2.Element;
195
+ export declare function ColorLegendWithMouseOver(props: Props_56): JSX_2.Element;
196
196
 
197
197
  export declare const Colors: {
198
198
  gray: string;
@@ -457,9 +457,9 @@ declare interface ConfigObject_4 {
457
457
  theme?: 'dark' | 'light';
458
458
  }
459
459
 
460
- export declare function CopyTextButton(props: Props_53): JSX_2.Element;
460
+ export declare function CopyTextButton(props: Props_54): JSX_2.Element;
461
461
 
462
- export declare function CsvDownloadButton(props: Props_52): JSX_2.Element;
462
+ export declare function CsvDownloadButton(props: Props_53): JSX_2.Element;
463
463
 
464
464
  declare interface CustomHighlightAreaSettingsDataType {
465
465
  coordinates: (number | string)[];
@@ -628,8 +628,8 @@ export declare function DualAxisLineChart(props: Props_6): JSX_2.Element;
628
628
 
629
629
  declare interface DualAxisLineChartDataType {
630
630
  date: number | string;
631
- y1?: number;
632
- y2?: number;
631
+ y1?: number | null;
632
+ y2?: number | null;
633
633
  data?: object;
634
634
  }
635
635
 
@@ -674,7 +674,7 @@ export declare const excelDownload: (csvData: any, fileName: string, headers: st
674
674
  [key: string]: string;
675
675
  }, wscols: WsColInterface_2[]) => void;
676
676
 
677
- export declare function ExcelDownloadButton(props: Props_49): JSX_2.Element;
677
+ export declare function ExcelDownloadButton(props: Props_50): JSX_2.Element;
678
678
 
679
679
  /**
680
680
  * Fetches a CSV file from a URL, parses it, and applies transformations based on the provided configuration.
@@ -773,7 +773,7 @@ declare type FilterUiSettingsDataType = {
773
773
  width?: string;
774
774
  };
775
775
 
776
- export declare function FootNote(props: Props_60): JSX_2.Element;
776
+ export declare function FootNote(props: Props_61): JSX_2.Element;
777
777
 
778
778
  /**
779
779
  * Generates an embed link with custom query parameters.
@@ -2616,6 +2616,175 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
2616
2616
  };
2617
2617
  };
2618
2618
  required: string[];
2619
+ } | {
2620
+ type: string;
2621
+ properties: {
2622
+ styles: {
2623
+ type: string;
2624
+ };
2625
+ classNames: {
2626
+ type: string;
2627
+ };
2628
+ detailsOnClick: {
2629
+ type: string;
2630
+ };
2631
+ topMargin: {
2632
+ type: string;
2633
+ };
2634
+ bottomMargin: {
2635
+ type: string;
2636
+ };
2637
+ leftMargin: {
2638
+ type: string;
2639
+ };
2640
+ rightMargin: {
2641
+ type: string;
2642
+ };
2643
+ ariaLabel: {
2644
+ type: string;
2645
+ };
2646
+ legendMaxWidth: {
2647
+ type: string;
2648
+ };
2649
+ colors: {
2650
+ oneOf: ({
2651
+ type: string;
2652
+ items?: undefined;
2653
+ } | {
2654
+ type: string;
2655
+ items: {
2656
+ type: string;
2657
+ };
2658
+ })[];
2659
+ };
2660
+ graphTitle: {
2661
+ type: string;
2662
+ };
2663
+ sources: {
2664
+ type: string;
2665
+ items: {
2666
+ type: string;
2667
+ properties: {
2668
+ source: {
2669
+ type: string;
2670
+ };
2671
+ link: {
2672
+ type: string;
2673
+ };
2674
+ };
2675
+ required: string[];
2676
+ };
2677
+ };
2678
+ graphDescription: {
2679
+ type: string;
2680
+ };
2681
+ footNote: {
2682
+ type: string;
2683
+ };
2684
+ radius: {
2685
+ type: string;
2686
+ };
2687
+ strokeWidth: {
2688
+ type: string;
2689
+ };
2690
+ showNAColor: {
2691
+ type: string;
2692
+ };
2693
+ showValues: {
2694
+ type: string;
2695
+ };
2696
+ showDots: {
2697
+ type: string;
2698
+ };
2699
+ fillShape: {
2700
+ type: string;
2701
+ };
2702
+ showColorScale: {
2703
+ type: string;
2704
+ };
2705
+ backgroundColor: {
2706
+ oneOf: {
2707
+ type: string;
2708
+ }[];
2709
+ };
2710
+ colorLegendTitle: {
2711
+ type: string;
2712
+ };
2713
+ padding: {
2714
+ type: string;
2715
+ };
2716
+ tooltip: {
2717
+ type: string;
2718
+ };
2719
+ graphID: {
2720
+ type: string;
2721
+ };
2722
+ graphDownload: {
2723
+ type: string;
2724
+ };
2725
+ dataDownload: {
2726
+ type: string;
2727
+ };
2728
+ colorDomain: {
2729
+ type: string;
2730
+ items: {
2731
+ type: string;
2732
+ };
2733
+ };
2734
+ axisLabels: {
2735
+ type: string;
2736
+ items: {
2737
+ oneOf: {
2738
+ type: string;
2739
+ }[];
2740
+ };
2741
+ };
2742
+ curveType: {
2743
+ type: string;
2744
+ enum: string[];
2745
+ };
2746
+ highlightedLines: {
2747
+ type: string;
2748
+ items: {
2749
+ oneOf: {
2750
+ type: string;
2751
+ }[];
2752
+ };
2753
+ };
2754
+ noOfTicks: {
2755
+ type: string;
2756
+ };
2757
+ maxValue: {
2758
+ type: string;
2759
+ };
2760
+ minValue: {
2761
+ type: string;
2762
+ };
2763
+ language: {
2764
+ type: string;
2765
+ enum: string[];
2766
+ };
2767
+ theme: {
2768
+ type: string;
2769
+ enum: string[];
2770
+ };
2771
+ width: {
2772
+ type: string;
2773
+ };
2774
+ height: {
2775
+ type: string;
2776
+ };
2777
+ relativeHeight: {
2778
+ type: string;
2779
+ };
2780
+ minHeight: {
2781
+ type: string;
2782
+ };
2783
+ resetSelectionOnDoubleClick: {
2784
+ type: string;
2785
+ };
2786
+ };
2787
+ required: string[];
2619
2788
  } | {
2620
2789
  type: string;
2621
2790
  properties: {
@@ -2662,15 +2831,10 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
2662
2831
  type: string;
2663
2832
  };
2664
2833
  colors: {
2665
- oneOf: ({
2666
- type: string;
2667
- items?: undefined;
2668
- } | {
2834
+ type: string;
2835
+ items: {
2669
2836
  type: string;
2670
- items: {
2671
- type: string;
2672
- };
2673
- })[];
2837
+ };
2674
2838
  };
2675
2839
  graphTitle: {
2676
2840
  type: string;
@@ -4706,7 +4870,9 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
4706
4870
  highlightedLines: {
4707
4871
  type: string;
4708
4872
  items: {
4709
- type: string;
4873
+ oneOf: {
4874
+ type: string;
4875
+ }[];
4710
4876
  };
4711
4877
  };
4712
4878
  graphDownload: {
@@ -9159,6 +9325,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
9159
9325
  showDots: {
9160
9326
  type: string;
9161
9327
  };
9328
+ fillShape: {
9329
+ type: string;
9330
+ };
9331
+ colorScaleMaxWidth: {
9332
+ type: string;
9333
+ };
9334
+ axisLabels: {
9335
+ type: string;
9336
+ items: {
9337
+ type: string;
9338
+ };
9339
+ minItems: number;
9340
+ };
9162
9341
  };
9163
9342
  type: string;
9164
9343
  };
@@ -10435,6 +10614,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
10435
10614
  showDots: {
10436
10615
  type: string;
10437
10616
  };
10617
+ fillShape: {
10618
+ type: string;
10619
+ };
10620
+ colorScaleMaxWidth: {
10621
+ type: string;
10622
+ };
10623
+ axisLabels: {
10624
+ type: string;
10625
+ items: {
10626
+ type: string;
10627
+ };
10628
+ minItems: number;
10629
+ };
10438
10630
  };
10439
10631
  type: string;
10440
10632
  };
@@ -11689,6 +11881,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
11689
11881
  showDots: {
11690
11882
  type: string;
11691
11883
  };
11884
+ fillShape: {
11885
+ type: string;
11886
+ };
11887
+ colorScaleMaxWidth: {
11888
+ type: string;
11889
+ };
11890
+ axisLabels: {
11891
+ type: string;
11892
+ items: {
11893
+ type: string;
11894
+ };
11895
+ minItems: number;
11896
+ };
11692
11897
  };
11693
11898
  type: string;
11694
11899
  };
@@ -13745,33 +13950,18 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
13745
13950
  detailsOnClick: {
13746
13951
  type: string;
13747
13952
  };
13748
- mainText: {
13749
- oneOf: ({
13750
- type: string;
13751
- properties?: undefined;
13752
- required?: undefined;
13753
- } | {
13754
- type: string;
13755
- properties: {
13756
- label: {
13757
- type: string;
13758
- };
13759
- suffix: {
13760
- type: string;
13761
- };
13762
- prefix: {
13763
- type: string;
13764
- };
13765
- };
13766
- required: string[];
13767
- })[];
13768
- };
13769
13953
  topMargin: {
13770
13954
  type: string;
13771
13955
  };
13772
13956
  bottomMargin: {
13773
13957
  type: string;
13774
13958
  };
13959
+ leftMargin: {
13960
+ type: string;
13961
+ };
13962
+ rightMargin: {
13963
+ type: string;
13964
+ };
13775
13965
  ariaLabel: {
13776
13966
  type: string;
13777
13967
  };
@@ -13792,12 +13982,6 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
13792
13982
  graphTitle: {
13793
13983
  type: string;
13794
13984
  };
13795
- suffix: {
13796
- type: string;
13797
- };
13798
- prefix: {
13799
- type: string;
13800
- };
13801
13985
  sources: {
13802
13986
  type: string;
13803
13987
  items: {
@@ -13816,9 +14000,194 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
13816
14000
  graphDescription: {
13817
14001
  type: string;
13818
14002
  };
13819
- subNote: {
13820
- type: string;
13821
- };
14003
+ footNote: {
14004
+ type: string;
14005
+ };
14006
+ radius: {
14007
+ type: string;
14008
+ };
14009
+ strokeWidth: {
14010
+ type: string;
14011
+ };
14012
+ showNAColor: {
14013
+ type: string;
14014
+ };
14015
+ showValues: {
14016
+ type: string;
14017
+ };
14018
+ showDots: {
14019
+ type: string;
14020
+ };
14021
+ fillShape: {
14022
+ type: string;
14023
+ };
14024
+ showColorScale: {
14025
+ type: string;
14026
+ };
14027
+ backgroundColor: {
14028
+ oneOf: {
14029
+ type: string;
14030
+ }[];
14031
+ };
14032
+ colorLegendTitle: {
14033
+ type: string;
14034
+ };
14035
+ padding: {
14036
+ type: string;
14037
+ };
14038
+ tooltip: {
14039
+ type: string;
14040
+ };
14041
+ graphID: {
14042
+ type: string;
14043
+ };
14044
+ graphDownload: {
14045
+ type: string;
14046
+ };
14047
+ dataDownload: {
14048
+ type: string;
14049
+ };
14050
+ colorDomain: {
14051
+ type: string;
14052
+ items: {
14053
+ type: string;
14054
+ };
14055
+ };
14056
+ axisLabels: {
14057
+ type: string;
14058
+ items: {
14059
+ oneOf: {
14060
+ type: string;
14061
+ }[];
14062
+ };
14063
+ };
14064
+ curveType: {
14065
+ type: string;
14066
+ enum: string[];
14067
+ };
14068
+ highlightedLines: {
14069
+ type: string;
14070
+ items: {
14071
+ oneOf: {
14072
+ type: string;
14073
+ }[];
14074
+ };
14075
+ };
14076
+ noOfTicks: {
14077
+ type: string;
14078
+ };
14079
+ maxValue: {
14080
+ type: string;
14081
+ };
14082
+ minValue: {
14083
+ type: string;
14084
+ };
14085
+ language: {
14086
+ type: string;
14087
+ enum: string[];
14088
+ };
14089
+ theme: {
14090
+ type: string;
14091
+ enum: string[];
14092
+ };
14093
+ width: {
14094
+ type: string;
14095
+ };
14096
+ height: {
14097
+ type: string;
14098
+ };
14099
+ relativeHeight: {
14100
+ type: string;
14101
+ };
14102
+ minHeight: {
14103
+ type: string;
14104
+ };
14105
+ resetSelectionOnDoubleClick: {
14106
+ type: string;
14107
+ };
14108
+ };
14109
+ required: string[];
14110
+ } | {
14111
+ type: string;
14112
+ properties: {
14113
+ styles: {
14114
+ type: string;
14115
+ };
14116
+ classNames: {
14117
+ type: string;
14118
+ };
14119
+ detailsOnClick: {
14120
+ type: string;
14121
+ };
14122
+ mainText: {
14123
+ oneOf: ({
14124
+ type: string;
14125
+ properties?: undefined;
14126
+ required?: undefined;
14127
+ } | {
14128
+ type: string;
14129
+ properties: {
14130
+ label: {
14131
+ type: string;
14132
+ };
14133
+ suffix: {
14134
+ type: string;
14135
+ };
14136
+ prefix: {
14137
+ type: string;
14138
+ };
14139
+ };
14140
+ required: string[];
14141
+ })[];
14142
+ };
14143
+ topMargin: {
14144
+ type: string;
14145
+ };
14146
+ bottomMargin: {
14147
+ type: string;
14148
+ };
14149
+ ariaLabel: {
14150
+ type: string;
14151
+ };
14152
+ legendMaxWidth: {
14153
+ type: string;
14154
+ };
14155
+ colors: {
14156
+ type: string;
14157
+ items: {
14158
+ type: string;
14159
+ };
14160
+ };
14161
+ graphTitle: {
14162
+ type: string;
14163
+ };
14164
+ suffix: {
14165
+ type: string;
14166
+ };
14167
+ prefix: {
14168
+ type: string;
14169
+ };
14170
+ sources: {
14171
+ type: string;
14172
+ items: {
14173
+ type: string;
14174
+ properties: {
14175
+ source: {
14176
+ type: string;
14177
+ };
14178
+ link: {
14179
+ type: string;
14180
+ };
14181
+ };
14182
+ required: string[];
14183
+ };
14184
+ };
14185
+ graphDescription: {
14186
+ type: string;
14187
+ };
14188
+ subNote: {
14189
+ type: string;
14190
+ };
13822
14191
  footNote: {
13823
14192
  type: string;
13824
14193
  };
@@ -15823,7 +16192,9 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
15823
16192
  highlightedLines: {
15824
16193
  type: string;
15825
16194
  items: {
15826
- type: string;
16195
+ oneOf: {
16196
+ type: string;
16197
+ }[];
15827
16198
  };
15828
16199
  };
15829
16200
  graphDownload: {
@@ -19286,6 +19657,31 @@ export declare function getDataSchema(graph: GraphType): {
19286
19657
  };
19287
19658
  required: string[];
19288
19659
  };
19660
+ } | {
19661
+ type: string;
19662
+ items: {
19663
+ type: string;
19664
+ properties: {
19665
+ label: {
19666
+ oneOf: {
19667
+ type: string;
19668
+ }[];
19669
+ };
19670
+ values: {
19671
+ type: string;
19672
+ items: {
19673
+ type: string;
19674
+ };
19675
+ };
19676
+ color: {
19677
+ type: string;
19678
+ };
19679
+ data: {
19680
+ type: string;
19681
+ };
19682
+ };
19683
+ required: string[];
19684
+ };
19289
19685
  } | {
19290
19686
  type: string;
19291
19687
  items: {
@@ -20855,6 +21251,19 @@ export declare const getDataSelectionSchema: (columnList?: string[]) => {
20855
21251
  showDots: {
20856
21252
  type: string;
20857
21253
  };
21254
+ fillShape: {
21255
+ type: string;
21256
+ };
21257
+ colorScaleMaxWidth: {
21258
+ type: string;
21259
+ };
21260
+ axisLabels: {
21261
+ type: string;
21262
+ items: {
21263
+ type: string;
21264
+ };
21265
+ minItems: number;
21266
+ };
20858
21267
  };
20859
21268
  type: string;
20860
21269
  };
@@ -22770,33 +23179,18 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
22770
23179
  detailsOnClick: {
22771
23180
  type: string;
22772
23181
  };
22773
- mainText: {
22774
- oneOf: ({
22775
- type: string;
22776
- properties?: undefined;
22777
- required?: undefined;
22778
- } | {
22779
- type: string;
22780
- properties: {
22781
- label: {
22782
- type: string;
22783
- };
22784
- suffix: {
22785
- type: string;
22786
- };
22787
- prefix: {
22788
- type: string;
22789
- };
22790
- };
22791
- required: string[];
22792
- })[];
22793
- };
22794
23182
  topMargin: {
22795
23183
  type: string;
22796
23184
  };
22797
23185
  bottomMargin: {
22798
23186
  type: string;
22799
23187
  };
23188
+ leftMargin: {
23189
+ type: string;
23190
+ };
23191
+ rightMargin: {
23192
+ type: string;
23193
+ };
22800
23194
  ariaLabel: {
22801
23195
  type: string;
22802
23196
  };
@@ -22817,12 +23211,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
22817
23211
  graphTitle: {
22818
23212
  type: string;
22819
23213
  };
22820
- suffix: {
22821
- type: string;
22822
- };
22823
- prefix: {
22824
- type: string;
22825
- };
22826
23214
  sources: {
22827
23215
  type: string;
22828
23216
  items: {
@@ -22841,9 +23229,194 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
22841
23229
  graphDescription: {
22842
23230
  type: string;
22843
23231
  };
22844
- subNote: {
22845
- type: string;
22846
- };
23232
+ footNote: {
23233
+ type: string;
23234
+ };
23235
+ radius: {
23236
+ type: string;
23237
+ };
23238
+ strokeWidth: {
23239
+ type: string;
23240
+ };
23241
+ showNAColor: {
23242
+ type: string;
23243
+ };
23244
+ showValues: {
23245
+ type: string;
23246
+ };
23247
+ showDots: {
23248
+ type: string;
23249
+ };
23250
+ fillShape: {
23251
+ type: string;
23252
+ };
23253
+ showColorScale: {
23254
+ type: string;
23255
+ };
23256
+ backgroundColor: {
23257
+ oneOf: {
23258
+ type: string;
23259
+ }[];
23260
+ };
23261
+ colorLegendTitle: {
23262
+ type: string;
23263
+ };
23264
+ padding: {
23265
+ type: string;
23266
+ };
23267
+ tooltip: {
23268
+ type: string;
23269
+ };
23270
+ graphID: {
23271
+ type: string;
23272
+ };
23273
+ graphDownload: {
23274
+ type: string;
23275
+ };
23276
+ dataDownload: {
23277
+ type: string;
23278
+ };
23279
+ colorDomain: {
23280
+ type: string;
23281
+ items: {
23282
+ type: string;
23283
+ };
23284
+ };
23285
+ axisLabels: {
23286
+ type: string;
23287
+ items: {
23288
+ oneOf: {
23289
+ type: string;
23290
+ }[];
23291
+ };
23292
+ };
23293
+ curveType: {
23294
+ type: string;
23295
+ enum: string[];
23296
+ };
23297
+ highlightedLines: {
23298
+ type: string;
23299
+ items: {
23300
+ oneOf: {
23301
+ type: string;
23302
+ }[];
23303
+ };
23304
+ };
23305
+ noOfTicks: {
23306
+ type: string;
23307
+ };
23308
+ maxValue: {
23309
+ type: string;
23310
+ };
23311
+ minValue: {
23312
+ type: string;
23313
+ };
23314
+ language: {
23315
+ type: string;
23316
+ enum: string[];
23317
+ };
23318
+ theme: {
23319
+ type: string;
23320
+ enum: string[];
23321
+ };
23322
+ width: {
23323
+ type: string;
23324
+ };
23325
+ height: {
23326
+ type: string;
23327
+ };
23328
+ relativeHeight: {
23329
+ type: string;
23330
+ };
23331
+ minHeight: {
23332
+ type: string;
23333
+ };
23334
+ resetSelectionOnDoubleClick: {
23335
+ type: string;
23336
+ };
23337
+ };
23338
+ required: string[];
23339
+ } | {
23340
+ type: string;
23341
+ properties: {
23342
+ styles: {
23343
+ type: string;
23344
+ };
23345
+ classNames: {
23346
+ type: string;
23347
+ };
23348
+ detailsOnClick: {
23349
+ type: string;
23350
+ };
23351
+ mainText: {
23352
+ oneOf: ({
23353
+ type: string;
23354
+ properties?: undefined;
23355
+ required?: undefined;
23356
+ } | {
23357
+ type: string;
23358
+ properties: {
23359
+ label: {
23360
+ type: string;
23361
+ };
23362
+ suffix: {
23363
+ type: string;
23364
+ };
23365
+ prefix: {
23366
+ type: string;
23367
+ };
23368
+ };
23369
+ required: string[];
23370
+ })[];
23371
+ };
23372
+ topMargin: {
23373
+ type: string;
23374
+ };
23375
+ bottomMargin: {
23376
+ type: string;
23377
+ };
23378
+ ariaLabel: {
23379
+ type: string;
23380
+ };
23381
+ legendMaxWidth: {
23382
+ type: string;
23383
+ };
23384
+ colors: {
23385
+ type: string;
23386
+ items: {
23387
+ type: string;
23388
+ };
23389
+ };
23390
+ graphTitle: {
23391
+ type: string;
23392
+ };
23393
+ suffix: {
23394
+ type: string;
23395
+ };
23396
+ prefix: {
23397
+ type: string;
23398
+ };
23399
+ sources: {
23400
+ type: string;
23401
+ items: {
23402
+ type: string;
23403
+ properties: {
23404
+ source: {
23405
+ type: string;
23406
+ };
23407
+ link: {
23408
+ type: string;
23409
+ };
23410
+ };
23411
+ required: string[];
23412
+ };
23413
+ };
23414
+ graphDescription: {
23415
+ type: string;
23416
+ };
23417
+ subNote: {
23418
+ type: string;
23419
+ };
22847
23420
  footNote: {
22848
23421
  type: string;
22849
23422
  };
@@ -24848,7 +25421,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
24848
25421
  highlightedLines: {
24849
25422
  type: string;
24850
25423
  items: {
24851
- type: string;
25424
+ oneOf: {
25425
+ type: string;
25426
+ }[];
24852
25427
  };
24853
25428
  };
24854
25429
  graphDownload: {
@@ -29556,6 +30131,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
29556
30131
  showDots: {
29557
30132
  type: string;
29558
30133
  };
30134
+ fillShape: {
30135
+ type: string;
30136
+ };
30137
+ colorScaleMaxWidth: {
30138
+ type: string;
30139
+ };
30140
+ axisLabels: {
30141
+ type: string;
30142
+ items: {
30143
+ type: string;
30144
+ };
30145
+ minItems: number;
30146
+ };
29559
30147
  };
29560
30148
  type: string;
29561
30149
  };
@@ -30832,6 +31420,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
30832
31420
  showDots: {
30833
31421
  type: string;
30834
31422
  };
31423
+ fillShape: {
31424
+ type: string;
31425
+ };
31426
+ colorScaleMaxWidth: {
31427
+ type: string;
31428
+ };
31429
+ axisLabels: {
31430
+ type: string;
31431
+ items: {
31432
+ type: string;
31433
+ };
31434
+ minItems: number;
31435
+ };
30835
31436
  };
30836
31437
  type: string;
30837
31438
  };
@@ -32086,6 +32687,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
32086
32687
  showDots: {
32087
32688
  type: string;
32088
32689
  };
32690
+ fillShape: {
32691
+ type: string;
32692
+ };
32693
+ colorScaleMaxWidth: {
32694
+ type: string;
32695
+ };
32696
+ axisLabels: {
32697
+ type: string;
32698
+ items: {
32699
+ type: string;
32700
+ };
32701
+ minItems: number;
32702
+ };
32089
32703
  };
32090
32704
  type: string;
32091
32705
  };
@@ -33798,33 +34412,18 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33798
34412
  detailsOnClick: {
33799
34413
  type: string;
33800
34414
  };
33801
- mainText: {
33802
- oneOf: ({
33803
- type: string;
33804
- properties?: undefined;
33805
- required?: undefined;
33806
- } | {
33807
- type: string;
33808
- properties: {
33809
- label: {
33810
- type: string;
33811
- };
33812
- suffix: {
33813
- type: string;
33814
- };
33815
- prefix: {
33816
- type: string;
33817
- };
33818
- };
33819
- required: string[];
33820
- })[];
33821
- };
33822
34415
  topMargin: {
33823
34416
  type: string;
33824
34417
  };
33825
34418
  bottomMargin: {
33826
34419
  type: string;
33827
34420
  };
34421
+ leftMargin: {
34422
+ type: string;
34423
+ };
34424
+ rightMargin: {
34425
+ type: string;
34426
+ };
33828
34427
  ariaLabel: {
33829
34428
  type: string;
33830
34429
  };
@@ -33845,12 +34444,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33845
34444
  graphTitle: {
33846
34445
  type: string;
33847
34446
  };
33848
- suffix: {
33849
- type: string;
33850
- };
33851
- prefix: {
33852
- type: string;
33853
- };
33854
34447
  sources: {
33855
34448
  type: string;
33856
34449
  items: {
@@ -33869,9 +34462,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33869
34462
  graphDescription: {
33870
34463
  type: string;
33871
34464
  };
33872
- subNote: {
33873
- type: string;
33874
- };
33875
34465
  footNote: {
33876
34466
  type: string;
33877
34467
  };
@@ -33881,6 +34471,18 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33881
34471
  strokeWidth: {
33882
34472
  type: string;
33883
34473
  };
34474
+ showNAColor: {
34475
+ type: string;
34476
+ };
34477
+ showValues: {
34478
+ type: string;
34479
+ };
34480
+ showDots: {
34481
+ type: string;
34482
+ };
34483
+ fillShape: {
34484
+ type: string;
34485
+ };
33884
34486
  showColorScale: {
33885
34487
  type: string;
33886
34488
  };
@@ -33889,6 +34491,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33889
34491
  type: string;
33890
34492
  }[];
33891
34493
  };
34494
+ colorLegendTitle: {
34495
+ type: string;
34496
+ };
33892
34497
  padding: {
33893
34498
  type: string;
33894
34499
  };
@@ -33910,7 +34515,180 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
33910
34515
  type: string;
33911
34516
  };
33912
34517
  };
33913
- sortData: {
34518
+ axisLabels: {
34519
+ type: string;
34520
+ items: {
34521
+ oneOf: {
34522
+ type: string;
34523
+ }[];
34524
+ };
34525
+ };
34526
+ curveType: {
34527
+ type: string;
34528
+ enum: string[];
34529
+ };
34530
+ highlightedLines: {
34531
+ type: string;
34532
+ items: {
34533
+ oneOf: {
34534
+ type: string;
34535
+ }[];
34536
+ };
34537
+ };
34538
+ noOfTicks: {
34539
+ type: string;
34540
+ };
34541
+ maxValue: {
34542
+ type: string;
34543
+ };
34544
+ minValue: {
34545
+ type: string;
34546
+ };
34547
+ language: {
34548
+ type: string;
34549
+ enum: string[];
34550
+ };
34551
+ theme: {
34552
+ type: string;
34553
+ enum: string[];
34554
+ };
34555
+ width: {
34556
+ type: string;
34557
+ };
34558
+ height: {
34559
+ type: string;
34560
+ };
34561
+ relativeHeight: {
34562
+ type: string;
34563
+ };
34564
+ minHeight: {
34565
+ type: string;
34566
+ };
34567
+ resetSelectionOnDoubleClick: {
34568
+ type: string;
34569
+ };
34570
+ };
34571
+ required: string[];
34572
+ } | {
34573
+ type: string;
34574
+ properties: {
34575
+ styles: {
34576
+ type: string;
34577
+ };
34578
+ classNames: {
34579
+ type: string;
34580
+ };
34581
+ detailsOnClick: {
34582
+ type: string;
34583
+ };
34584
+ mainText: {
34585
+ oneOf: ({
34586
+ type: string;
34587
+ properties?: undefined;
34588
+ required?: undefined;
34589
+ } | {
34590
+ type: string;
34591
+ properties: {
34592
+ label: {
34593
+ type: string;
34594
+ };
34595
+ suffix: {
34596
+ type: string;
34597
+ };
34598
+ prefix: {
34599
+ type: string;
34600
+ };
34601
+ };
34602
+ required: string[];
34603
+ })[];
34604
+ };
34605
+ topMargin: {
34606
+ type: string;
34607
+ };
34608
+ bottomMargin: {
34609
+ type: string;
34610
+ };
34611
+ ariaLabel: {
34612
+ type: string;
34613
+ };
34614
+ legendMaxWidth: {
34615
+ type: string;
34616
+ };
34617
+ colors: {
34618
+ type: string;
34619
+ items: {
34620
+ type: string;
34621
+ };
34622
+ };
34623
+ graphTitle: {
34624
+ type: string;
34625
+ };
34626
+ suffix: {
34627
+ type: string;
34628
+ };
34629
+ prefix: {
34630
+ type: string;
34631
+ };
34632
+ sources: {
34633
+ type: string;
34634
+ items: {
34635
+ type: string;
34636
+ properties: {
34637
+ source: {
34638
+ type: string;
34639
+ };
34640
+ link: {
34641
+ type: string;
34642
+ };
34643
+ };
34644
+ required: string[];
34645
+ };
34646
+ };
34647
+ graphDescription: {
34648
+ type: string;
34649
+ };
34650
+ subNote: {
34651
+ type: string;
34652
+ };
34653
+ footNote: {
34654
+ type: string;
34655
+ };
34656
+ radius: {
34657
+ type: string;
34658
+ };
34659
+ strokeWidth: {
34660
+ type: string;
34661
+ };
34662
+ showColorScale: {
34663
+ type: string;
34664
+ };
34665
+ backgroundColor: {
34666
+ oneOf: {
34667
+ type: string;
34668
+ }[];
34669
+ };
34670
+ padding: {
34671
+ type: string;
34672
+ };
34673
+ tooltip: {
34674
+ type: string;
34675
+ };
34676
+ graphID: {
34677
+ type: string;
34678
+ };
34679
+ graphDownload: {
34680
+ type: string;
34681
+ };
34682
+ dataDownload: {
34683
+ type: string;
34684
+ };
34685
+ colorDomain: {
34686
+ type: string;
34687
+ items: {
34688
+ type: string;
34689
+ };
34690
+ };
34691
+ sortData: {
33914
34692
  type: string;
33915
34693
  enum: string[];
33916
34694
  };
@@ -35876,7 +36654,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
35876
36654
  highlightedLines: {
35877
36655
  type: string;
35878
36656
  items: {
35879
- type: string;
36657
+ oneOf: {
36658
+ type: string;
36659
+ }[];
35880
36660
  };
35881
36661
  };
35882
36662
  graphDownload: {
@@ -40620,6 +41400,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
40620
41400
  showDots: {
40621
41401
  type: string;
40622
41402
  };
41403
+ fillShape: {
41404
+ type: string;
41405
+ };
41406
+ colorScaleMaxWidth: {
41407
+ type: string;
41408
+ };
41409
+ axisLabels: {
41410
+ type: string;
41411
+ items: {
41412
+ type: string;
41413
+ };
41414
+ minItems: number;
41415
+ };
40623
41416
  };
40624
41417
  type: string;
40625
41418
  };
@@ -41896,6 +42689,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
41896
42689
  showDots: {
41897
42690
  type: string;
41898
42691
  };
42692
+ fillShape: {
42693
+ type: string;
42694
+ };
42695
+ colorScaleMaxWidth: {
42696
+ type: string;
42697
+ };
42698
+ axisLabels: {
42699
+ type: string;
42700
+ items: {
42701
+ type: string;
42702
+ };
42703
+ minItems: number;
42704
+ };
41899
42705
  };
41900
42706
  type: string;
41901
42707
  };
@@ -43150,6 +43956,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
43150
43956
  showDots: {
43151
43957
  type: string;
43152
43958
  };
43959
+ fillShape: {
43960
+ type: string;
43961
+ };
43962
+ colorScaleMaxWidth: {
43963
+ type: string;
43964
+ };
43965
+ axisLabels: {
43966
+ type: string;
43967
+ items: {
43968
+ type: string;
43969
+ };
43970
+ minItems: number;
43971
+ };
43153
43972
  };
43154
43973
  type: string;
43155
43974
  };
@@ -44925,33 +45744,18 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
44925
45744
  detailsOnClick: {
44926
45745
  type: string;
44927
45746
  };
44928
- mainText: {
44929
- oneOf: ({
44930
- type: string;
44931
- properties?: undefined;
44932
- required?: undefined;
44933
- } | {
44934
- type: string;
44935
- properties: {
44936
- label: {
44937
- type: string;
44938
- };
44939
- suffix: {
44940
- type: string;
44941
- };
44942
- prefix: {
44943
- type: string;
44944
- };
44945
- };
44946
- required: string[];
44947
- })[];
44948
- };
44949
45747
  topMargin: {
44950
45748
  type: string;
44951
45749
  };
44952
45750
  bottomMargin: {
44953
45751
  type: string;
44954
45752
  };
45753
+ leftMargin: {
45754
+ type: string;
45755
+ };
45756
+ rightMargin: {
45757
+ type: string;
45758
+ };
44955
45759
  ariaLabel: {
44956
45760
  type: string;
44957
45761
  };
@@ -44972,12 +45776,6 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
44972
45776
  graphTitle: {
44973
45777
  type: string;
44974
45778
  };
44975
- suffix: {
44976
- type: string;
44977
- };
44978
- prefix: {
44979
- type: string;
44980
- };
44981
45779
  sources: {
44982
45780
  type: string;
44983
45781
  items: {
@@ -44996,9 +45794,6 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
44996
45794
  graphDescription: {
44997
45795
  type: string;
44998
45796
  };
44999
- subNote: {
45000
- type: string;
45001
- };
45002
45797
  footNote: {
45003
45798
  type: string;
45004
45799
  };
@@ -45008,6 +45803,18 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
45008
45803
  strokeWidth: {
45009
45804
  type: string;
45010
45805
  };
45806
+ showNAColor: {
45807
+ type: string;
45808
+ };
45809
+ showValues: {
45810
+ type: string;
45811
+ };
45812
+ showDots: {
45813
+ type: string;
45814
+ };
45815
+ fillShape: {
45816
+ type: string;
45817
+ };
45011
45818
  showColorScale: {
45012
45819
  type: string;
45013
45820
  };
@@ -45016,6 +45823,9 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
45016
45823
  type: string;
45017
45824
  }[];
45018
45825
  };
45826
+ colorLegendTitle: {
45827
+ type: string;
45828
+ };
45019
45829
  padding: {
45020
45830
  type: string;
45021
45831
  };
@@ -45037,7 +45847,180 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
45037
45847
  type: string;
45038
45848
  };
45039
45849
  };
45040
- sortData: {
45850
+ axisLabels: {
45851
+ type: string;
45852
+ items: {
45853
+ oneOf: {
45854
+ type: string;
45855
+ }[];
45856
+ };
45857
+ };
45858
+ curveType: {
45859
+ type: string;
45860
+ enum: string[];
45861
+ };
45862
+ highlightedLines: {
45863
+ type: string;
45864
+ items: {
45865
+ oneOf: {
45866
+ type: string;
45867
+ }[];
45868
+ };
45869
+ };
45870
+ noOfTicks: {
45871
+ type: string;
45872
+ };
45873
+ maxValue: {
45874
+ type: string;
45875
+ };
45876
+ minValue: {
45877
+ type: string;
45878
+ };
45879
+ language: {
45880
+ type: string;
45881
+ enum: string[];
45882
+ };
45883
+ theme: {
45884
+ type: string;
45885
+ enum: string[];
45886
+ };
45887
+ width: {
45888
+ type: string;
45889
+ };
45890
+ height: {
45891
+ type: string;
45892
+ };
45893
+ relativeHeight: {
45894
+ type: string;
45895
+ };
45896
+ minHeight: {
45897
+ type: string;
45898
+ };
45899
+ resetSelectionOnDoubleClick: {
45900
+ type: string;
45901
+ };
45902
+ };
45903
+ required: string[];
45904
+ } | {
45905
+ type: string;
45906
+ properties: {
45907
+ styles: {
45908
+ type: string;
45909
+ };
45910
+ classNames: {
45911
+ type: string;
45912
+ };
45913
+ detailsOnClick: {
45914
+ type: string;
45915
+ };
45916
+ mainText: {
45917
+ oneOf: ({
45918
+ type: string;
45919
+ properties?: undefined;
45920
+ required?: undefined;
45921
+ } | {
45922
+ type: string;
45923
+ properties: {
45924
+ label: {
45925
+ type: string;
45926
+ };
45927
+ suffix: {
45928
+ type: string;
45929
+ };
45930
+ prefix: {
45931
+ type: string;
45932
+ };
45933
+ };
45934
+ required: string[];
45935
+ })[];
45936
+ };
45937
+ topMargin: {
45938
+ type: string;
45939
+ };
45940
+ bottomMargin: {
45941
+ type: string;
45942
+ };
45943
+ ariaLabel: {
45944
+ type: string;
45945
+ };
45946
+ legendMaxWidth: {
45947
+ type: string;
45948
+ };
45949
+ colors: {
45950
+ type: string;
45951
+ items: {
45952
+ type: string;
45953
+ };
45954
+ };
45955
+ graphTitle: {
45956
+ type: string;
45957
+ };
45958
+ suffix: {
45959
+ type: string;
45960
+ };
45961
+ prefix: {
45962
+ type: string;
45963
+ };
45964
+ sources: {
45965
+ type: string;
45966
+ items: {
45967
+ type: string;
45968
+ properties: {
45969
+ source: {
45970
+ type: string;
45971
+ };
45972
+ link: {
45973
+ type: string;
45974
+ };
45975
+ };
45976
+ required: string[];
45977
+ };
45978
+ };
45979
+ graphDescription: {
45980
+ type: string;
45981
+ };
45982
+ subNote: {
45983
+ type: string;
45984
+ };
45985
+ footNote: {
45986
+ type: string;
45987
+ };
45988
+ radius: {
45989
+ type: string;
45990
+ };
45991
+ strokeWidth: {
45992
+ type: string;
45993
+ };
45994
+ showColorScale: {
45995
+ type: string;
45996
+ };
45997
+ backgroundColor: {
45998
+ oneOf: {
45999
+ type: string;
46000
+ }[];
46001
+ };
46002
+ padding: {
46003
+ type: string;
46004
+ };
46005
+ tooltip: {
46006
+ type: string;
46007
+ };
46008
+ graphID: {
46009
+ type: string;
46010
+ };
46011
+ graphDownload: {
46012
+ type: string;
46013
+ };
46014
+ dataDownload: {
46015
+ type: string;
46016
+ };
46017
+ colorDomain: {
46018
+ type: string;
46019
+ items: {
46020
+ type: string;
46021
+ };
46022
+ };
46023
+ sortData: {
45041
46024
  type: string;
45042
46025
  enum: string[];
45043
46026
  };
@@ -47003,7 +47986,9 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
47003
47986
  highlightedLines: {
47004
47987
  type: string;
47005
47988
  items: {
47006
- type: string;
47989
+ oneOf: {
47990
+ type: string;
47991
+ }[];
47007
47992
  };
47008
47993
  };
47009
47994
  graphDownload: {
@@ -51912,33 +52897,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
51912
52897
  detailsOnClick: {
51913
52898
  type: string;
51914
52899
  };
51915
- mainText: {
51916
- oneOf: ({
51917
- type: string;
51918
- properties?: undefined;
51919
- required?: undefined;
51920
- } | {
51921
- type: string;
51922
- properties: {
51923
- label: {
51924
- type: string;
51925
- };
51926
- suffix: {
51927
- type: string;
51928
- };
51929
- prefix: {
51930
- type: string;
51931
- };
51932
- };
51933
- required: string[];
51934
- })[];
51935
- };
51936
52900
  topMargin: {
51937
52901
  type: string;
51938
52902
  };
51939
52903
  bottomMargin: {
51940
52904
  type: string;
51941
52905
  };
52906
+ leftMargin: {
52907
+ type: string;
52908
+ };
52909
+ rightMargin: {
52910
+ type: string;
52911
+ };
51942
52912
  ariaLabel: {
51943
52913
  type: string;
51944
52914
  };
@@ -51959,12 +52929,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
51959
52929
  graphTitle: {
51960
52930
  type: string;
51961
52931
  };
51962
- suffix: {
51963
- type: string;
51964
- };
51965
- prefix: {
51966
- type: string;
51967
- };
51968
52932
  sources: {
51969
52933
  type: string;
51970
52934
  items: {
@@ -51983,9 +52947,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
51983
52947
  graphDescription: {
51984
52948
  type: string;
51985
52949
  };
51986
- subNote: {
51987
- type: string;
51988
- };
51989
52950
  footNote: {
51990
52951
  type: string;
51991
52952
  };
@@ -51995,6 +52956,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
51995
52956
  strokeWidth: {
51996
52957
  type: string;
51997
52958
  };
52959
+ showNAColor: {
52960
+ type: string;
52961
+ };
52962
+ showValues: {
52963
+ type: string;
52964
+ };
52965
+ showDots: {
52966
+ type: string;
52967
+ };
52968
+ fillShape: {
52969
+ type: string;
52970
+ };
51998
52971
  showColorScale: {
51999
52972
  type: string;
52000
52973
  };
@@ -52003,6 +52976,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
52003
52976
  type: string;
52004
52977
  }[];
52005
52978
  };
52979
+ colorLegendTitle: {
52980
+ type: string;
52981
+ };
52006
52982
  padding: {
52007
52983
  type: string;
52008
52984
  };
@@ -52024,10 +53000,35 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
52024
53000
  type: string;
52025
53001
  };
52026
53002
  };
52027
- sortData: {
53003
+ axisLabels: {
53004
+ type: string;
53005
+ items: {
53006
+ oneOf: {
53007
+ type: string;
53008
+ }[];
53009
+ };
53010
+ };
53011
+ curveType: {
52028
53012
  type: string;
52029
53013
  enum: string[];
52030
53014
  };
53015
+ highlightedLines: {
53016
+ type: string;
53017
+ items: {
53018
+ oneOf: {
53019
+ type: string;
53020
+ }[];
53021
+ };
53022
+ };
53023
+ noOfTicks: {
53024
+ type: string;
53025
+ };
53026
+ maxValue: {
53027
+ type: string;
53028
+ };
53029
+ minValue: {
53030
+ type: string;
53031
+ };
52031
53032
  language: {
52032
53033
  type: string;
52033
53034
  enum: string[];
@@ -52052,6 +53053,7 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
52052
53053
  type: string;
52053
53054
  };
52054
53055
  };
53056
+ required: string[];
52055
53057
  } | {
52056
53058
  type: string;
52057
53059
  properties: {
@@ -52064,78 +53066,225 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
52064
53066
  detailsOnClick: {
52065
53067
  type: string;
52066
53068
  };
52067
- ariaLabel: {
52068
- type: string;
52069
- };
52070
- colors: {
52071
- type: string;
52072
- items: {
53069
+ mainText: {
53070
+ oneOf: ({
53071
+ type: string;
53072
+ properties?: undefined;
53073
+ required?: undefined;
53074
+ } | {
52073
53075
  type: string;
52074
- };
52075
- };
52076
- refValues: {
52077
- type: string;
52078
- items: {
52079
53076
  properties: {
52080
- color: {
52081
- type: string;
52082
- };
52083
- text: {
52084
- type: string;
52085
- };
52086
- value: {
53077
+ label: {
52087
53078
  type: string;
52088
53079
  };
52089
- styles: {
53080
+ suffix: {
52090
53081
  type: string;
52091
- properties: {
52092
- line: {
52093
- type: string;
52094
- };
52095
- text: {
52096
- type: string;
52097
- };
52098
- };
52099
53082
  };
52100
- classNames: {
53083
+ prefix: {
52101
53084
  type: string;
52102
- properties: {
52103
- line: {
52104
- type: string;
52105
- };
52106
- text: {
52107
- type: string;
52108
- };
52109
- };
52110
53085
  };
52111
53086
  };
52112
- type: string;
52113
53087
  required: string[];
52114
- };
52115
- };
52116
- labelOrder: {
52117
- type: string;
52118
- items: {
52119
- type: string;
52120
- };
53088
+ })[];
52121
53089
  };
52122
- orientation: {
53090
+ topMargin: {
52123
53091
  type: string;
52124
- enum: string[];
52125
53092
  };
52126
- graphTitle: {
53093
+ bottomMargin: {
52127
53094
  type: string;
52128
53095
  };
52129
- graphDescription: {
53096
+ ariaLabel: {
52130
53097
  type: string;
52131
53098
  };
52132
- footNote: {
53099
+ legendMaxWidth: {
52133
53100
  type: string;
52134
53101
  };
52135
- width: {
53102
+ colors: {
52136
53103
  type: string;
53104
+ items: {
53105
+ type: string;
53106
+ };
52137
53107
  };
52138
- height: {
53108
+ graphTitle: {
53109
+ type: string;
53110
+ };
53111
+ suffix: {
53112
+ type: string;
53113
+ };
53114
+ prefix: {
53115
+ type: string;
53116
+ };
53117
+ sources: {
53118
+ type: string;
53119
+ items: {
53120
+ type: string;
53121
+ properties: {
53122
+ source: {
53123
+ type: string;
53124
+ };
53125
+ link: {
53126
+ type: string;
53127
+ };
53128
+ };
53129
+ required: string[];
53130
+ };
53131
+ };
53132
+ graphDescription: {
53133
+ type: string;
53134
+ };
53135
+ subNote: {
53136
+ type: string;
53137
+ };
53138
+ footNote: {
53139
+ type: string;
53140
+ };
53141
+ radius: {
53142
+ type: string;
53143
+ };
53144
+ strokeWidth: {
53145
+ type: string;
53146
+ };
53147
+ showColorScale: {
53148
+ type: string;
53149
+ };
53150
+ backgroundColor: {
53151
+ oneOf: {
53152
+ type: string;
53153
+ }[];
53154
+ };
53155
+ padding: {
53156
+ type: string;
53157
+ };
53158
+ tooltip: {
53159
+ type: string;
53160
+ };
53161
+ graphID: {
53162
+ type: string;
53163
+ };
53164
+ graphDownload: {
53165
+ type: string;
53166
+ };
53167
+ dataDownload: {
53168
+ type: string;
53169
+ };
53170
+ colorDomain: {
53171
+ type: string;
53172
+ items: {
53173
+ type: string;
53174
+ };
53175
+ };
53176
+ sortData: {
53177
+ type: string;
53178
+ enum: string[];
53179
+ };
53180
+ language: {
53181
+ type: string;
53182
+ enum: string[];
53183
+ };
53184
+ theme: {
53185
+ type: string;
53186
+ enum: string[];
53187
+ };
53188
+ width: {
53189
+ type: string;
53190
+ };
53191
+ height: {
53192
+ type: string;
53193
+ };
53194
+ relativeHeight: {
53195
+ type: string;
53196
+ };
53197
+ minHeight: {
53198
+ type: string;
53199
+ };
53200
+ resetSelectionOnDoubleClick: {
53201
+ type: string;
53202
+ };
53203
+ };
53204
+ } | {
53205
+ type: string;
53206
+ properties: {
53207
+ styles: {
53208
+ type: string;
53209
+ };
53210
+ classNames: {
53211
+ type: string;
53212
+ };
53213
+ detailsOnClick: {
53214
+ type: string;
53215
+ };
53216
+ ariaLabel: {
53217
+ type: string;
53218
+ };
53219
+ colors: {
53220
+ type: string;
53221
+ items: {
53222
+ type: string;
53223
+ };
53224
+ };
53225
+ refValues: {
53226
+ type: string;
53227
+ items: {
53228
+ properties: {
53229
+ color: {
53230
+ type: string;
53231
+ };
53232
+ text: {
53233
+ type: string;
53234
+ };
53235
+ value: {
53236
+ type: string;
53237
+ };
53238
+ styles: {
53239
+ type: string;
53240
+ properties: {
53241
+ line: {
53242
+ type: string;
53243
+ };
53244
+ text: {
53245
+ type: string;
53246
+ };
53247
+ };
53248
+ };
53249
+ classNames: {
53250
+ type: string;
53251
+ properties: {
53252
+ line: {
53253
+ type: string;
53254
+ };
53255
+ text: {
53256
+ type: string;
53257
+ };
53258
+ };
53259
+ };
53260
+ };
53261
+ type: string;
53262
+ required: string[];
53263
+ };
53264
+ };
53265
+ labelOrder: {
53266
+ type: string;
53267
+ items: {
53268
+ type: string;
53269
+ };
53270
+ };
53271
+ orientation: {
53272
+ type: string;
53273
+ enum: string[];
53274
+ };
53275
+ graphTitle: {
53276
+ type: string;
53277
+ };
53278
+ graphDescription: {
53279
+ type: string;
53280
+ };
53281
+ footNote: {
53282
+ type: string;
53283
+ };
53284
+ width: {
53285
+ type: string;
53286
+ };
53287
+ height: {
52139
53288
  type: string;
52140
53289
  };
52141
53290
  suffix: {
@@ -53990,7 +55139,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
53990
55139
  highlightedLines: {
53991
55140
  type: string;
53992
55141
  items: {
53993
- type: string;
55142
+ oneOf: {
55143
+ type: string;
55144
+ }[];
53994
55145
  };
53995
55146
  };
53996
55147
  graphDownload: {
@@ -58962,33 +60113,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
58962
60113
  detailsOnClick: {
58963
60114
  type: string;
58964
60115
  };
58965
- mainText: {
58966
- oneOf: ({
58967
- type: string;
58968
- properties?: undefined;
58969
- required?: undefined;
58970
- } | {
58971
- type: string;
58972
- properties: {
58973
- label: {
58974
- type: string;
58975
- };
58976
- suffix: {
58977
- type: string;
58978
- };
58979
- prefix: {
58980
- type: string;
58981
- };
58982
- };
58983
- required: string[];
58984
- })[];
58985
- };
58986
60116
  topMargin: {
58987
60117
  type: string;
58988
60118
  };
58989
60119
  bottomMargin: {
58990
60120
  type: string;
58991
60121
  };
60122
+ leftMargin: {
60123
+ type: string;
60124
+ };
60125
+ rightMargin: {
60126
+ type: string;
60127
+ };
58992
60128
  ariaLabel: {
58993
60129
  type: string;
58994
60130
  };
@@ -59009,12 +60145,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
59009
60145
  graphTitle: {
59010
60146
  type: string;
59011
60147
  };
59012
- suffix: {
59013
- type: string;
59014
- };
59015
- prefix: {
59016
- type: string;
59017
- };
59018
60148
  sources: {
59019
60149
  type: string;
59020
60150
  items: {
@@ -59033,9 +60163,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
59033
60163
  graphDescription: {
59034
60164
  type: string;
59035
60165
  };
59036
- subNote: {
59037
- type: string;
59038
- };
59039
60166
  footNote: {
59040
60167
  type: string;
59041
60168
  };
@@ -59045,6 +60172,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
59045
60172
  strokeWidth: {
59046
60173
  type: string;
59047
60174
  };
60175
+ showNAColor: {
60176
+ type: string;
60177
+ };
60178
+ showValues: {
60179
+ type: string;
60180
+ };
60181
+ showDots: {
60182
+ type: string;
60183
+ };
60184
+ fillShape: {
60185
+ type: string;
60186
+ };
59048
60187
  showColorScale: {
59049
60188
  type: string;
59050
60189
  };
@@ -59053,6 +60192,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
59053
60192
  type: string;
59054
60193
  }[];
59055
60194
  };
60195
+ colorLegendTitle: {
60196
+ type: string;
60197
+ };
59056
60198
  padding: {
59057
60199
  type: string;
59058
60200
  };
@@ -59074,7 +60216,180 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
59074
60216
  type: string;
59075
60217
  };
59076
60218
  };
59077
- sortData: {
60219
+ axisLabels: {
60220
+ type: string;
60221
+ items: {
60222
+ oneOf: {
60223
+ type: string;
60224
+ }[];
60225
+ };
60226
+ };
60227
+ curveType: {
60228
+ type: string;
60229
+ enum: string[];
60230
+ };
60231
+ highlightedLines: {
60232
+ type: string;
60233
+ items: {
60234
+ oneOf: {
60235
+ type: string;
60236
+ }[];
60237
+ };
60238
+ };
60239
+ noOfTicks: {
60240
+ type: string;
60241
+ };
60242
+ maxValue: {
60243
+ type: string;
60244
+ };
60245
+ minValue: {
60246
+ type: string;
60247
+ };
60248
+ language: {
60249
+ type: string;
60250
+ enum: string[];
60251
+ };
60252
+ theme: {
60253
+ type: string;
60254
+ enum: string[];
60255
+ };
60256
+ width: {
60257
+ type: string;
60258
+ };
60259
+ height: {
60260
+ type: string;
60261
+ };
60262
+ relativeHeight: {
60263
+ type: string;
60264
+ };
60265
+ minHeight: {
60266
+ type: string;
60267
+ };
60268
+ resetSelectionOnDoubleClick: {
60269
+ type: string;
60270
+ };
60271
+ };
60272
+ required: string[];
60273
+ } | {
60274
+ type: string;
60275
+ properties: {
60276
+ styles: {
60277
+ type: string;
60278
+ };
60279
+ classNames: {
60280
+ type: string;
60281
+ };
60282
+ detailsOnClick: {
60283
+ type: string;
60284
+ };
60285
+ mainText: {
60286
+ oneOf: ({
60287
+ type: string;
60288
+ properties?: undefined;
60289
+ required?: undefined;
60290
+ } | {
60291
+ type: string;
60292
+ properties: {
60293
+ label: {
60294
+ type: string;
60295
+ };
60296
+ suffix: {
60297
+ type: string;
60298
+ };
60299
+ prefix: {
60300
+ type: string;
60301
+ };
60302
+ };
60303
+ required: string[];
60304
+ })[];
60305
+ };
60306
+ topMargin: {
60307
+ type: string;
60308
+ };
60309
+ bottomMargin: {
60310
+ type: string;
60311
+ };
60312
+ ariaLabel: {
60313
+ type: string;
60314
+ };
60315
+ legendMaxWidth: {
60316
+ type: string;
60317
+ };
60318
+ colors: {
60319
+ type: string;
60320
+ items: {
60321
+ type: string;
60322
+ };
60323
+ };
60324
+ graphTitle: {
60325
+ type: string;
60326
+ };
60327
+ suffix: {
60328
+ type: string;
60329
+ };
60330
+ prefix: {
60331
+ type: string;
60332
+ };
60333
+ sources: {
60334
+ type: string;
60335
+ items: {
60336
+ type: string;
60337
+ properties: {
60338
+ source: {
60339
+ type: string;
60340
+ };
60341
+ link: {
60342
+ type: string;
60343
+ };
60344
+ };
60345
+ required: string[];
60346
+ };
60347
+ };
60348
+ graphDescription: {
60349
+ type: string;
60350
+ };
60351
+ subNote: {
60352
+ type: string;
60353
+ };
60354
+ footNote: {
60355
+ type: string;
60356
+ };
60357
+ radius: {
60358
+ type: string;
60359
+ };
60360
+ strokeWidth: {
60361
+ type: string;
60362
+ };
60363
+ showColorScale: {
60364
+ type: string;
60365
+ };
60366
+ backgroundColor: {
60367
+ oneOf: {
60368
+ type: string;
60369
+ }[];
60370
+ };
60371
+ padding: {
60372
+ type: string;
60373
+ };
60374
+ tooltip: {
60375
+ type: string;
60376
+ };
60377
+ graphID: {
60378
+ type: string;
60379
+ };
60380
+ graphDownload: {
60381
+ type: string;
60382
+ };
60383
+ dataDownload: {
60384
+ type: string;
60385
+ };
60386
+ colorDomain: {
60387
+ type: string;
60388
+ items: {
60389
+ type: string;
60390
+ };
60391
+ };
60392
+ sortData: {
59078
60393
  type: string;
59079
60394
  enum: string[];
59080
60395
  };
@@ -61040,7 +62355,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
61040
62355
  highlightedLines: {
61041
62356
  type: string;
61042
62357
  items: {
61043
- type: string;
62358
+ oneOf: {
62359
+ type: string;
62360
+ }[];
61044
62361
  };
61045
62362
  };
61046
62363
  graphDownload: {
@@ -65723,6 +67040,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
65723
67040
  showDots: {
65724
67041
  type: string;
65725
67042
  };
67043
+ fillShape: {
67044
+ type: string;
67045
+ };
67046
+ colorScaleMaxWidth: {
67047
+ type: string;
67048
+ };
67049
+ axisLabels: {
67050
+ type: string;
67051
+ items: {
67052
+ type: string;
67053
+ };
67054
+ minItems: number;
67055
+ };
65726
67056
  };
65727
67057
  type: string;
65728
67058
  };
@@ -66999,6 +68329,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
66999
68329
  showDots: {
67000
68330
  type: string;
67001
68331
  };
68332
+ fillShape: {
68333
+ type: string;
68334
+ };
68335
+ colorScaleMaxWidth: {
68336
+ type: string;
68337
+ };
68338
+ axisLabels: {
68339
+ type: string;
68340
+ items: {
68341
+ type: string;
68342
+ };
68343
+ minItems: number;
68344
+ };
67002
68345
  };
67003
68346
  type: string;
67004
68347
  };
@@ -68253,6 +69596,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
68253
69596
  showDots: {
68254
69597
  type: string;
68255
69598
  };
69599
+ fillShape: {
69600
+ type: string;
69601
+ };
69602
+ colorScaleMaxWidth: {
69603
+ type: string;
69604
+ };
69605
+ axisLabels: {
69606
+ type: string;
69607
+ items: {
69608
+ type: string;
69609
+ };
69610
+ minItems: number;
69611
+ };
68256
69612
  };
68257
69613
  type: string;
68258
69614
  };
@@ -69877,121 +71233,290 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
69877
71233
  footNote: {
69878
71234
  type: string;
69879
71235
  };
69880
- graphID: {
71236
+ graphID: {
71237
+ type: string;
71238
+ };
71239
+ width: {
71240
+ type: string;
71241
+ };
71242
+ height: {
71243
+ type: string;
71244
+ };
71245
+ language: {
71246
+ type: string;
71247
+ enum: string[];
71248
+ };
71249
+ theme: {
71250
+ type: string;
71251
+ enum: string[];
71252
+ };
71253
+ uiMode: {
71254
+ type: string;
71255
+ enum: string[];
71256
+ };
71257
+ cardTemplate: {
71258
+ type: string;
71259
+ };
71260
+ cardBackgroundColor: {
71261
+ type: string;
71262
+ };
71263
+ cardFilters: {
71264
+ type: string;
71265
+ items: {
71266
+ type: string;
71267
+ properties: {
71268
+ column: {
71269
+ type: string;
71270
+ };
71271
+ width: {
71272
+ type: string;
71273
+ };
71274
+ label: {
71275
+ type: string;
71276
+ };
71277
+ defaultValue: {
71278
+ oneOf: {
71279
+ type: string;
71280
+ }[];
71281
+ };
71282
+ excludeValues: {
71283
+ type: string;
71284
+ items: {
71285
+ type: string;
71286
+ };
71287
+ };
71288
+ };
71289
+ required: string[];
71290
+ };
71291
+ };
71292
+ cardSearchColumns: {
71293
+ type: string;
71294
+ items: {
71295
+ type: string;
71296
+ };
71297
+ };
71298
+ backgroundColor: {
71299
+ oneOf: {
71300
+ type: string;
71301
+ }[];
71302
+ };
71303
+ padding: {
71304
+ type: string;
71305
+ };
71306
+ cardSortingOptions: {
71307
+ type: string;
71308
+ properties: {
71309
+ defaultValue: {
71310
+ type: string;
71311
+ };
71312
+ width: {
71313
+ type: string;
71314
+ };
71315
+ options: {
71316
+ type: string;
71317
+ items: {
71318
+ type: string;
71319
+ properties: {
71320
+ value: {
71321
+ type: string;
71322
+ };
71323
+ label: {
71324
+ type: string;
71325
+ };
71326
+ type: {
71327
+ type: string;
71328
+ enum: string[];
71329
+ };
71330
+ };
71331
+ required: string[];
71332
+ };
71333
+ minItems: number;
71334
+ };
71335
+ };
71336
+ };
71337
+ cardMinWidth: {
71338
+ type: string;
71339
+ };
71340
+ detailsOnClick: {
71341
+ type: string;
71342
+ };
71343
+ allowDataDownloadOnDetail: {
71344
+ oneOf: {
71345
+ type: string;
71346
+ }[];
71347
+ };
71348
+ noOfItemsInAPage: {
71349
+ type: string;
71350
+ minimum: number;
71351
+ };
71352
+ };
71353
+ required: string[];
71354
+ } | {
71355
+ type: string;
71356
+ properties: {
71357
+ styles: {
71358
+ type: string;
71359
+ };
71360
+ classNames: {
71361
+ type: string;
71362
+ };
71363
+ detailsOnClick: {
71364
+ type: string;
71365
+ };
71366
+ topMargin: {
71367
+ type: string;
71368
+ };
71369
+ bottomMargin: {
71370
+ type: string;
71371
+ };
71372
+ leftMargin: {
71373
+ type: string;
71374
+ };
71375
+ rightMargin: {
71376
+ type: string;
71377
+ };
71378
+ ariaLabel: {
71379
+ type: string;
71380
+ };
71381
+ legendMaxWidth: {
71382
+ type: string;
71383
+ };
71384
+ colors: {
71385
+ oneOf: ({
71386
+ type: string;
71387
+ items?: undefined;
71388
+ } | {
71389
+ type: string;
71390
+ items: {
71391
+ type: string;
71392
+ };
71393
+ })[];
71394
+ };
71395
+ graphTitle: {
71396
+ type: string;
71397
+ };
71398
+ sources: {
71399
+ type: string;
71400
+ items: {
71401
+ type: string;
71402
+ properties: {
71403
+ source: {
71404
+ type: string;
71405
+ };
71406
+ link: {
71407
+ type: string;
71408
+ };
71409
+ };
71410
+ required: string[];
71411
+ };
71412
+ };
71413
+ graphDescription: {
71414
+ type: string;
71415
+ };
71416
+ footNote: {
71417
+ type: string;
71418
+ };
71419
+ radius: {
69881
71420
  type: string;
69882
71421
  };
69883
- width: {
71422
+ strokeWidth: {
69884
71423
  type: string;
69885
71424
  };
69886
- height: {
71425
+ showNAColor: {
69887
71426
  type: string;
69888
71427
  };
69889
- language: {
71428
+ showValues: {
69890
71429
  type: string;
69891
- enum: string[];
69892
71430
  };
69893
- theme: {
71431
+ showDots: {
69894
71432
  type: string;
69895
- enum: string[];
69896
71433
  };
69897
- uiMode: {
71434
+ fillShape: {
69898
71435
  type: string;
69899
- enum: string[];
69900
71436
  };
69901
- cardTemplate: {
71437
+ showColorScale: {
69902
71438
  type: string;
69903
71439
  };
69904
- cardBackgroundColor: {
71440
+ backgroundColor: {
71441
+ oneOf: {
71442
+ type: string;
71443
+ }[];
71444
+ };
71445
+ colorLegendTitle: {
69905
71446
  type: string;
69906
71447
  };
69907
- cardFilters: {
71448
+ padding: {
71449
+ type: string;
71450
+ };
71451
+ tooltip: {
71452
+ type: string;
71453
+ };
71454
+ graphID: {
71455
+ type: string;
71456
+ };
71457
+ graphDownload: {
71458
+ type: string;
71459
+ };
71460
+ dataDownload: {
71461
+ type: string;
71462
+ };
71463
+ colorDomain: {
69908
71464
  type: string;
69909
71465
  items: {
69910
71466
  type: string;
69911
- properties: {
69912
- column: {
69913
- type: string;
69914
- };
69915
- width: {
69916
- type: string;
69917
- };
69918
- label: {
69919
- type: string;
69920
- };
69921
- defaultValue: {
69922
- oneOf: {
69923
- type: string;
69924
- }[];
69925
- };
69926
- excludeValues: {
69927
- type: string;
69928
- items: {
69929
- type: string;
69930
- };
69931
- };
69932
- };
69933
- required: string[];
69934
71467
  };
69935
71468
  };
69936
- cardSearchColumns: {
71469
+ axisLabels: {
69937
71470
  type: string;
69938
71471
  items: {
69939
- type: string;
71472
+ oneOf: {
71473
+ type: string;
71474
+ }[];
69940
71475
  };
69941
71476
  };
69942
- backgroundColor: {
69943
- oneOf: {
69944
- type: string;
69945
- }[];
69946
- };
69947
- padding: {
71477
+ curveType: {
69948
71478
  type: string;
71479
+ enum: string[];
69949
71480
  };
69950
- cardSortingOptions: {
71481
+ highlightedLines: {
69951
71482
  type: string;
69952
- properties: {
69953
- defaultValue: {
69954
- type: string;
69955
- };
69956
- width: {
69957
- type: string;
69958
- };
69959
- options: {
71483
+ items: {
71484
+ oneOf: {
69960
71485
  type: string;
69961
- items: {
69962
- type: string;
69963
- properties: {
69964
- value: {
69965
- type: string;
69966
- };
69967
- label: {
69968
- type: string;
69969
- };
69970
- type: {
69971
- type: string;
69972
- enum: string[];
69973
- };
69974
- };
69975
- required: string[];
69976
- };
69977
- minItems: number;
69978
- };
71486
+ }[];
69979
71487
  };
69980
71488
  };
69981
- cardMinWidth: {
71489
+ noOfTicks: {
69982
71490
  type: string;
69983
71491
  };
69984
- detailsOnClick: {
71492
+ maxValue: {
69985
71493
  type: string;
69986
71494
  };
69987
- allowDataDownloadOnDetail: {
69988
- oneOf: {
69989
- type: string;
69990
- }[];
71495
+ minValue: {
71496
+ type: string;
69991
71497
  };
69992
- noOfItemsInAPage: {
71498
+ language: {
71499
+ type: string;
71500
+ enum: string[];
71501
+ };
71502
+ theme: {
71503
+ type: string;
71504
+ enum: string[];
71505
+ };
71506
+ width: {
71507
+ type: string;
71508
+ };
71509
+ height: {
71510
+ type: string;
71511
+ };
71512
+ relativeHeight: {
71513
+ type: string;
71514
+ };
71515
+ minHeight: {
71516
+ type: string;
71517
+ };
71518
+ resetSelectionOnDoubleClick: {
69993
71519
  type: string;
69994
- minimum: number;
69995
71520
  };
69996
71521
  };
69997
71522
  required: string[];
@@ -70041,15 +71566,10 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
70041
71566
  type: string;
70042
71567
  };
70043
71568
  colors: {
70044
- oneOf: ({
70045
- type: string;
70046
- items?: undefined;
70047
- } | {
71569
+ type: string;
71570
+ items: {
70048
71571
  type: string;
70049
- items: {
70050
- type: string;
70051
- };
70052
- })[];
71572
+ };
70053
71573
  };
70054
71574
  graphTitle: {
70055
71575
  type: string;
@@ -72085,7 +73605,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
72085
73605
  highlightedLines: {
72086
73606
  type: string;
72087
73607
  items: {
72088
- type: string;
73608
+ oneOf: {
73609
+ type: string;
73610
+ }[];
72089
73611
  };
72090
73612
  };
72091
73613
  graphDownload: {
@@ -76810,6 +78332,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
76810
78332
  showDots: {
76811
78333
  type: string;
76812
78334
  };
78335
+ fillShape: {
78336
+ type: string;
78337
+ };
78338
+ colorScaleMaxWidth: {
78339
+ type: string;
78340
+ };
78341
+ axisLabels: {
78342
+ type: string;
78343
+ items: {
78344
+ type: string;
78345
+ };
78346
+ minItems: number;
78347
+ };
76813
78348
  };
76814
78349
  type: string;
76815
78350
  };
@@ -78086,6 +79621,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
78086
79621
  showDots: {
78087
79622
  type: string;
78088
79623
  };
79624
+ fillShape: {
79625
+ type: string;
79626
+ };
79627
+ colorScaleMaxWidth: {
79628
+ type: string;
79629
+ };
79630
+ axisLabels: {
79631
+ type: string;
79632
+ items: {
79633
+ type: string;
79634
+ };
79635
+ minItems: number;
79636
+ };
78089
79637
  };
78090
79638
  type: string;
78091
79639
  };
@@ -79340,6 +80888,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
79340
80888
  showDots: {
79341
80889
  type: string;
79342
80890
  };
80891
+ fillShape: {
80892
+ type: string;
80893
+ };
80894
+ colorScaleMaxWidth: {
80895
+ type: string;
80896
+ };
80897
+ axisLabels: {
80898
+ type: string;
80899
+ items: {
80900
+ type: string;
80901
+ };
80902
+ minItems: number;
80903
+ };
79343
80904
  };
79344
80905
  type: string;
79345
80906
  };
@@ -79439,11 +81000,11 @@ declare interface GraphConfigurationDataType {
79439
81000
  chartConfigId: string;
79440
81001
  }
79441
81002
 
79442
- export declare function GraphDescription(props: Props_61): JSX_2.Element;
81003
+ export declare function GraphDescription(props: Props_62): JSX_2.Element;
79443
81004
 
79444
- export declare function GraphFooter(props: Props_58): JSX_2.Element | null;
81005
+ export declare function GraphFooter(props: Props_59): JSX_2.Element | null;
79445
81006
 
79446
- export declare function GraphHeader(props: Props_59): JSX_2.Element;
81007
+ export declare function GraphHeader(props: Props_60): JSX_2.Element;
79447
81008
 
79448
81009
  export declare const GraphList: {
79449
81010
  graphName: string;
@@ -79672,19 +81233,22 @@ declare interface GraphSettingsDataType {
79672
81233
  classNames?: ClassNameObject;
79673
81234
  mapProjection?: 'mercator' | 'equalEarth' | 'naturalEarth' | 'orthographic' | 'albersUSA';
79674
81235
  filterNA?: boolean;
81236
+ fillShape?: boolean;
81237
+ colorScaleMaxWidth?: string;
81238
+ axisLabels?: (string | number)[];
79675
81239
  }
79676
81240
 
79677
- export declare function GraphTitle(props: Props_62): JSX_2.Element;
81241
+ export declare function GraphTitle(props: Props_63): JSX_2.Element;
79678
81242
 
79679
81243
  export declare type GraphType = GraphTypeForGriddedGraph | GeoHubGraphType;
79680
81244
 
79681
- export declare type GraphTypeForGriddedGraph = 'barChart' | 'stackedBarChart' | 'groupedBarChart' | 'lineChart' | 'dualAxisLineChart' | 'multiLineChart' | 'multiLineAltChart' | 'differenceLineChart' | 'stackedAreaChart' | 'choroplethMap' | 'biVariateChoroplethMap' | 'dotDensityMap' | 'donutChart' | 'slopeChart' | 'scatterPlot' | 'dumbbellChart' | 'treeMap' | 'circlePacking' | 'heatMap' | 'stripChart' | 'beeSwarmChart' | 'butterflyChart' | 'histogram' | 'sparkLine' | 'paretoChart' | 'dataTable' | 'statCard' | 'unitChart' | 'animatedScatterPlot' | 'animatedBarChart' | 'animatedStackedBarChart' | 'animatedGroupedBarChart' | 'animatedChoroplethMap' | 'animatedBiVariateChoroplethMap' | 'animatedDotDensityMap' | 'animatedDumbbellChart' | 'animatedButterflyChart' | 'sankeyChart' | 'lineChartWithConfidenceInterval' | 'dataCards';
81245
+ export declare type GraphTypeForGriddedGraph = 'barChart' | 'stackedBarChart' | 'groupedBarChart' | 'lineChart' | 'dualAxisLineChart' | 'multiLineChart' | 'multiLineAltChart' | 'differenceLineChart' | 'stackedAreaChart' | 'choroplethMap' | 'biVariateChoroplethMap' | 'dotDensityMap' | 'donutChart' | 'slopeChart' | 'scatterPlot' | 'dumbbellChart' | 'treeMap' | 'circlePacking' | 'heatMap' | 'stripChart' | 'beeSwarmChart' | 'butterflyChart' | 'histogram' | 'sparkLine' | 'paretoChart' | 'dataTable' | 'statCard' | 'unitChart' | 'animatedScatterPlot' | 'animatedBarChart' | 'animatedStackedBarChart' | 'animatedGroupedBarChart' | 'animatedChoroplethMap' | 'animatedBiVariateChoroplethMap' | 'animatedDotDensityMap' | 'animatedDumbbellChart' | 'animatedButterflyChart' | 'sankeyChart' | 'lineChartWithConfidenceInterval' | 'dataCards' | 'radarChart';
79682
81246
 
79683
81247
  export declare function GriddedGraph(div: Element, config: any): void;
79684
81248
 
79685
- export declare function GriddedGraphs(props: Props_37): JSX_2.Element;
81249
+ export declare function GriddedGraphs(props: Props_38): JSX_2.Element;
79686
81250
 
79687
- export declare function GriddedGraphsFromConfig(props: Props_41): JSX_2.Element;
81251
+ export declare function GriddedGraphsFromConfig(props: Props_42): JSX_2.Element;
79688
81252
 
79689
81253
  declare interface GroupedBarChartProps {
79690
81254
  /** Array of data objects */
@@ -79958,11 +81522,11 @@ declare interface HistogramDataType {
79958
81522
  */
79959
81523
  export declare function imageDownload(node: HTMLElement, filename: string): void;
79960
81524
 
79961
- export declare function ImageDownloadButton(props: Props_50): JSX_2.Element;
81525
+ export declare function ImageDownloadButton(props: Props_51): JSX_2.Element;
79962
81526
 
79963
81527
  declare type Languages = 'en' | 'ar' | 'az' | 'bn' | 'cy' | 'he' | 'hi' | 'jp' | 'ka' | 'km' | 'ko' | 'my' | 'ne' | 'zh' | 'custom';
79964
81528
 
79965
- export declare function LinearColorLegend(props: Props_56): JSX_2.Element;
81529
+ export declare function LinearColorLegend(props: Props_57): JSX_2.Element;
79966
81530
 
79967
81531
  declare interface LineChartDataType {
79968
81532
  date: number | string;
@@ -79980,13 +81544,13 @@ declare interface LineChartWithConfidenceIntervalDataType {
79980
81544
  data?: object;
79981
81545
  }
79982
81546
 
79983
- export declare function MultiGraphDashboard(props: Props_34): JSX_2.Element;
81547
+ export declare function MultiGraphDashboard(props: Props_35): JSX_2.Element;
79984
81548
 
79985
- export declare function MultiGraphDashboardFromConfig(props: Props_38): JSX_2.Element;
81549
+ export declare function MultiGraphDashboardFromConfig(props: Props_39): JSX_2.Element;
79986
81550
 
79987
- export declare function MultiGraphDashboardWideToLongFormat(props: Props_35): JSX_2.Element;
81551
+ export declare function MultiGraphDashboardWideToLongFormat(props: Props_36): JSX_2.Element;
79988
81552
 
79989
- export declare function MultiGraphDashboardWideToLongFormatFromConfig(props: Props_39): JSX_2.Element;
81553
+ export declare function MultiGraphDashboardWideToLongFormatFromConfig(props: Props_40): JSX_2.Element;
79990
81554
 
79991
81555
  export declare function MultiLineAltChart(props: Props_10): JSX_2.Element;
79992
81556
 
@@ -81922,38 +83486,123 @@ declare interface Props_31 {
81922
83486
  bottomMargin?: number;
81923
83487
  /** Padding between bars */
81924
83488
  barPadding?: number;
81925
- /** Spacing between the left and right bars */
81926
- centerGap?: number;
81927
- /** Prefix for values */
81928
- prefix?: string;
81929
- /** Suffix for values */
81930
- suffix?: string;
83489
+ /** Spacing between the left and right bars */
83490
+ centerGap?: number;
83491
+ /** Prefix for values */
83492
+ prefix?: string;
83493
+ /** Suffix for values */
83494
+ suffix?: string;
83495
+ /** Maximum value for the chart */
83496
+ maxValue?: number;
83497
+ /** Minimum value for the chart */
83498
+ minValue?: number;
83499
+ /** Truncate labels by specified length */
83500
+ truncateBy?: number;
83501
+ /** Reference values for comparison */
83502
+ refValues?: ReferenceDataType[];
83503
+ /** Number of ticks on the axis */
83504
+ noOfTicks?: number;
83505
+ /** Toggle visibility of values */
83506
+ showValues?: boolean;
83507
+ /** Toggle visibility of axis ticks */
83508
+ showTicks?: boolean;
83509
+ /** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
83510
+ showColorScale?: boolean;
83511
+ /** Title for the left bars */
83512
+ leftBarTitle?: string;
83513
+ /** Title for the right bars */
83514
+ rightBarTitle?: string;
83515
+ /** Enable graph download option as png */
83516
+ graphDownload?: boolean;
83517
+ /** Enable data download option as a csv */
83518
+ dataDownload?: boolean;
83519
+ /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
83520
+ resetSelectionOnDoubleClick?: boolean;
83521
+ /** Tooltip content. This uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */
83522
+ tooltip?: string;
83523
+ /** Details displayed on the modal when user clicks of a data point */
83524
+ detailsOnClick?: string;
83525
+ /** Callback for mouse over event */
83526
+ onSeriesMouseOver?: (_d: any) => void;
83527
+ /** Callback for mouse click event */
83528
+ onSeriesMouseClick?: (_d: any) => void;
83529
+ /** Language setting */
83530
+ language?: Languages;
83531
+ /** Color theme */
83532
+ theme?: 'light' | 'dark';
83533
+ /** Unique ID for the graph */
83534
+ graphID?: string;
83535
+ }
83536
+
83537
+ declare interface Props_32 {
83538
+ /** Array of data objects */
83539
+ data: HistogramDataType[];
83540
+ /** Type of the graph for histogram */
83541
+ graphType?: 'circlePacking' | 'treeMap' | 'barGraph' | 'donutChart';
83542
+ /** Title of the graph */
83543
+ graphTitle?: string;
83544
+ /** Description of the graph */
83545
+ graphDescription?: string;
83546
+ /** Footnote for the graph */
83547
+ footNote?: string;
83548
+ /** Source data for the graph */
83549
+ sources?: SourcesDataType[];
83550
+ /** Accessibility label */
83551
+ ariaLabel?: string;
83552
+ /** Colors for visualization */
83553
+ colors?: string[] | string;
83554
+ /** Background color of the graph */
83555
+ backgroundColor?: string | boolean;
83556
+ /** Custom styles for the graph. Each object should be a valid React CSS style object. */
83557
+ styles?: StyleObject;
83558
+ /** Custom class names */
83559
+ classNames?: ClassNameObject;
83560
+ /** Width of the graph */
83561
+ width?: number;
83562
+ /** Height of the graph */
83563
+ height?: number;
83564
+ /** Minimum height of the graph */
83565
+ minHeight?: number;
83566
+ /** Relative height scaling factor. This overwrites the height props */
83567
+ relativeHeight?: number;
83568
+ /** Padding around the graph. Defaults to 0 if no backgroundColor is mentioned else defaults to 1rem */
83569
+ padding?: string;
83570
+ /** Left margin of the graph */
83571
+ leftMargin?: number;
83572
+ /** Right margin of the graph */
83573
+ rightMargin?: number;
83574
+ /** Top margin of the graph */
83575
+ topMargin?: number;
83576
+ /** Bottom margin of the graph */
83577
+ bottomMargin?: number;
83578
+ /** Padding between bars */
83579
+ barPadding?: number;
83580
+ /** Maximum thickness of bars */
83581
+ maxBarThickness?: number;
81931
83582
  /** Maximum value for the chart */
81932
83583
  maxValue?: number;
81933
- /** Minimum value for the chart */
81934
- minValue?: number;
81935
83584
  /** Truncate labels by specified length */
81936
83585
  truncateBy?: number;
81937
83586
  /** Reference values for comparison */
81938
83587
  refValues?: ReferenceDataType[];
81939
- /** Number of ticks on the axis */
81940
- noOfTicks?: number;
83588
+ /** Number of bins for the histogram */
83589
+ numberOfBins?: number;
83590
+ /** Orientation of the bar graph. Only applicable if graphType is barGraph. */
83591
+ barGraphLayout?: 'vertical' | 'horizontal';
83592
+ /** Stroke width of the arcs and circle of the donut. Only applicable if graphType is donutChart. */
83593
+ donutStrokeWidth?: number;
83594
+ /** Sorting order for data. This is overwritten by labelOrder prop */
83595
+ sortData?: 'asc' | 'desc';
83596
+ /** Toggle visibility of labels */
83597
+ showLabels?: boolean;
81941
83598
  /** Toggle visibility of values */
81942
83599
  showValues?: boolean;
81943
83600
  /** Toggle visibility of axis ticks */
81944
83601
  showTicks?: boolean;
81945
- /** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
81946
- showColorScale?: boolean;
81947
- /** Title for the left bars */
81948
- leftBarTitle?: string;
81949
- /** Title for the right bars */
81950
- rightBarTitle?: string;
81951
83602
  /** Enable graph download option as png */
81952
83603
  graphDownload?: boolean;
81953
83604
  /** Enable data download option as a csv */
81954
83605
  dataDownload?: boolean;
81955
- /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
81956
- resetSelectionOnDoubleClick?: boolean;
81957
83606
  /** Tooltip content. This uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */
81958
83607
  tooltip?: string;
81959
83608
  /** Details displayed on the modal when user clicks of a data point */
@@ -81970,11 +83619,9 @@ declare interface Props_31 {
81970
83619
  graphID?: string;
81971
83620
  }
81972
83621
 
81973
- declare interface Props_32 {
83622
+ declare interface Props_33 {
81974
83623
  /** Array of data objects */
81975
- data: HistogramDataType[];
81976
- /** Type of the graph for histogram */
81977
- graphType?: 'circlePacking' | 'treeMap' | 'barGraph' | 'donutChart';
83624
+ data: SankeyDataType[];
81978
83625
  /** Title of the graph */
81979
83626
  graphTitle?: string;
81980
83627
  /** Description of the graph */
@@ -81985,8 +83632,14 @@ declare interface Props_32 {
81985
83632
  sources?: SourcesDataType[];
81986
83633
  /** Accessibility label */
81987
83634
  ariaLabel?: string;
81988
- /** Colors for visualization */
81989
- colors?: string[] | string;
83635
+ /** Color or array of colors for source */
83636
+ sourceColors?: string[] | string;
83637
+ /** Color or array of colors for targets */
83638
+ targetColors?: string[] | string;
83639
+ /** Domain of colors for the source */
83640
+ sourceColorDomain?: (string | number)[];
83641
+ /** Domain of colors for the target */
83642
+ targetColorDomain?: (string | number)[];
81990
83643
  /** Background color of the graph */
81991
83644
  backgroundColor?: string | boolean;
81992
83645
  /** Custom styles for the graph. Each object should be a valid React CSS style object. */
@@ -82011,35 +83664,43 @@ declare interface Props_32 {
82011
83664
  topMargin?: number;
82012
83665
  /** Bottom margin of the graph */
82013
83666
  bottomMargin?: number;
82014
- /** Padding between bars */
82015
- barPadding?: number;
82016
- /** Maximum thickness of bars */
82017
- maxBarThickness?: number;
82018
- /** Maximum value for the chart */
82019
- maxValue?: number;
83667
+ /** Toggles the background to fill the container. This only works if the width of the graph is defined. */
83668
+ fillContainer?: boolean;
83669
+ /** Padding between nodes */
83670
+ nodePadding?: number;
83671
+ /** Thickness of each node */
83672
+ nodeWidth?: number;
83673
+ /** Prefix for values */
83674
+ prefix?: string;
83675
+ /** Suffix for values */
83676
+ suffix?: string;
82020
83677
  /** Truncate labels by specified length */
82021
83678
  truncateBy?: number;
82022
- /** Reference values for comparison */
82023
- refValues?: ReferenceDataType[];
82024
- /** Number of bins for the histogram */
82025
- numberOfBins?: number;
82026
- /** Orientation of the bar graph. Only applicable if graphType is barGraph. */
82027
- barGraphLayout?: 'vertical' | 'horizontal';
82028
- /** Stroke width of the arcs and circle of the donut. Only applicable if graphType is donutChart. */
82029
- donutStrokeWidth?: number;
82030
- /** Sorting order for data. This is overwritten by labelOrder prop */
82031
- sortData?: 'asc' | 'desc';
83679
+ /** Title of the source */
83680
+ sourceTitle?: string;
83681
+ /** Title of the targets */
83682
+ targetTitle?: string;
82032
83683
  /** Toggle visibility of labels */
82033
83684
  showLabels?: boolean;
82034
83685
  /** Toggle visibility of values */
82035
83686
  showValues?: boolean;
82036
- /** Toggle visibility of axis ticks */
82037
- showTicks?: boolean;
83687
+ /** Source to highlight. Use the label value from data to highlight the data point */
83688
+ highlightedSourceDataPoints?: (string | number)[];
83689
+ /** Targets to highlight. Use the label value from data to highlight the data point */
83690
+ highlightedTargetDataPoints?: (string | number)[];
83691
+ /** Opacity of the links */
83692
+ defaultLinkOpacity?: number;
83693
+ /** Toggle the initial animation of the links between nodes */
83694
+ animateLinks?: boolean | number;
83695
+ /** Sorting order of the nodes */
83696
+ sortNodes?: 'asc' | 'desc' | 'mostReadable' | 'none';
82038
83697
  /** Enable graph download option as png */
82039
83698
  graphDownload?: boolean;
82040
83699
  /** Enable data download option as a csv */
82041
83700
  dataDownload?: boolean;
82042
- /** Tooltip content. This uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */
83701
+ /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
83702
+ resetSelectionOnDoubleClick?: boolean;
83703
+ /** Tooltip content whn user mouseover on the links. This uses the handlebar template to display the data */
82043
83704
  tooltip?: string;
82044
83705
  /** Details displayed on the modal when user clicks of a data point */
82045
83706
  detailsOnClick?: string;
@@ -82055,9 +83716,9 @@ declare interface Props_32 {
82055
83716
  graphID?: string;
82056
83717
  }
82057
83718
 
82058
- declare interface Props_33 {
83719
+ declare interface Props_34 {
82059
83720
  /** Array of data objects */
82060
- data: SankeyDataType[];
83721
+ data: RadarChartDataType[];
82061
83722
  /** Title of the graph */
82062
83723
  graphTitle?: string;
82063
83724
  /** Description of the graph */
@@ -82068,14 +83729,12 @@ declare interface Props_33 {
82068
83729
  sources?: SourcesDataType[];
82069
83730
  /** Accessibility label */
82070
83731
  ariaLabel?: string;
82071
- /** Color or array of colors for source */
82072
- sourceColors?: string[] | string;
82073
- /** Color or array of colors for targets */
82074
- targetColors?: string[] | string;
82075
- /** Domain of colors for the source */
82076
- sourceColorDomain?: (string | number)[];
82077
- /** Domain of colors for the target */
82078
- targetColorDomain?: (string | number)[];
83732
+ /** Color or array of colors for each line */
83733
+ colors?: string | string[];
83734
+ /** Domain of colors for the graph */
83735
+ colorDomain?: string[];
83736
+ /** Title for the color legend */
83737
+ colorLegendTitle?: string;
82079
83738
  /** Background color of the graph */
82080
83739
  backgroundColor?: string | boolean;
82081
83740
  /** Custom styles for the graph. Each object should be a valid React CSS style object. */
@@ -82092,6 +83751,8 @@ declare interface Props_33 {
82092
83751
  relativeHeight?: number;
82093
83752
  /** Padding around the graph. Defaults to 0 if no backgroundColor is mentioned else defaults to 1rem */
82094
83753
  padding?: string;
83754
+ /** Radius of the radar chart */
83755
+ radius?: number;
82095
83756
  /** Left margin of the graph */
82096
83757
  leftMargin?: number;
82097
83758
  /** Right margin of the graph */
@@ -82100,43 +83761,37 @@ declare interface Props_33 {
82100
83761
  topMargin?: number;
82101
83762
  /** Bottom margin of the graph */
82102
83763
  bottomMargin?: number;
82103
- /** Toggles the background to fill the container. This only works if the width of the graph is defined. */
82104
- fillContainer?: boolean;
82105
- /** Padding between nodes */
82106
- nodePadding?: number;
82107
- /** Thickness of each node */
82108
- nodeWidth?: number;
82109
- /** Prefix for values */
82110
- prefix?: string;
82111
- /** Suffix for values */
82112
- suffix?: string;
82113
- /** Truncate labels by specified length */
82114
- truncateBy?: number;
82115
- /** Title of the source */
82116
- sourceTitle?: string;
82117
- /** Title of the targets */
82118
- targetTitle?: string;
82119
- /** Toggle visibility of labels */
82120
- showLabels?: boolean;
83764
+ /** Maximum value for the chart */
83765
+ maxValue?: number;
83766
+ /** Minimum value for the chart */
83767
+ minValue?: number;
82121
83768
  /** Toggle visibility of values */
82122
83769
  showValues?: boolean;
82123
- /** Source to highlight. Use the label value from data to highlight the data point */
82124
- highlightedSourceDataPoints?: (string | number)[];
82125
- /** Targets to highlight. Use the label value from data to highlight the data point */
82126
- highlightedTargetDataPoints?: (string | number)[];
82127
- /** Opacity of the links */
82128
- defaultLinkOpacity?: number;
82129
- /** Toggle the initial animation of the links between nodes */
82130
- animateLinks?: boolean | number;
82131
- /** Sorting order of the nodes */
82132
- sortNodes?: 'asc' | 'desc' | 'mostReadable' | 'none';
83770
+ /** Toggle visibility of dots on the line */
83771
+ showDots?: boolean;
83772
+ /** Stroke width of the line */
83773
+ strokeWidth?: number;
83774
+ /** Toggle is the shape is filled or not */
83775
+ fillShape?: boolean;
83776
+ /** No. of ticks on the x-axis */
83777
+ noOfTicks?: number;
83778
+ /** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
83779
+ showColorScale?: boolean;
83780
+ /** Toggle visibility of NA color in the color scale. This is only applicable if the data props hae color parameter and showColorScale prop is true */
83781
+ showNAColor?: boolean;
83782
+ /** Data points to highlight. Use the label value from data to highlight the data point */
83783
+ highlightedLines?: (string | number)[];
83784
+ /** Labels for the axes */
83785
+ axisLabels: (string | number)[];
83786
+ /** Curve type for the line */
83787
+ curveType?: 'linear' | 'curve';
83788
+ /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
83789
+ resetSelectionOnDoubleClick?: boolean;
82133
83790
  /** Enable graph download option as png */
82134
83791
  graphDownload?: boolean;
82135
83792
  /** Enable data download option as a csv */
82136
83793
  dataDownload?: boolean;
82137
- /** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
82138
- resetSelectionOnDoubleClick?: boolean;
82139
- /** Tooltip content whn user mouseover on the links. This uses the handlebar template to display the data */
83794
+ /** Tooltip content. This uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */
82140
83795
  tooltip?: string;
82141
83796
  /** Details displayed on the modal when user clicks of a data point */
82142
83797
  detailsOnClick?: string;
@@ -82152,7 +83807,7 @@ declare interface Props_33 {
82152
83807
  graphID?: string;
82153
83808
  }
82154
83809
 
82155
- declare interface Props_34 {
83810
+ declare interface Props_35 {
82156
83811
  dashboardID?: string;
82157
83812
  dashboardLayout: DashboardLayoutDataType;
82158
83813
  dataSettings: DataSettingsDataType;
@@ -82171,7 +83826,7 @@ declare interface Props_34 {
82171
83826
  graphClassNames?: ClassNameObject;
82172
83827
  }
82173
83828
 
82174
- declare interface Props_35 {
83829
+ declare interface Props_36 {
82175
83830
  dashboardID?: string;
82176
83831
  dashboardLayout: DashboardFromWideToLongFormatLayoutDataType;
82177
83832
  dataSettings: DataSettingsWideToLongDataType;
@@ -82187,7 +83842,7 @@ declare interface Props_35 {
82187
83842
  graphClassNames?: ClassNameObject;
82188
83843
  }
82189
83844
 
82190
- declare interface Props_36 {
83845
+ declare interface Props_37 {
82191
83846
  graphSettings?: GraphSettingsDataType;
82192
83847
  readableHeader?: {
82193
83848
  value: string;
@@ -82212,7 +83867,7 @@ declare interface Props_36 {
82212
83867
  theme?: 'dark' | 'light';
82213
83868
  }
82214
83869
 
82215
- declare interface Props_37 {
83870
+ declare interface Props_38 {
82216
83871
  noOfColumns?: number;
82217
83872
  columnGridBy: string;
82218
83873
  graphSettings?: GraphSettingsDataType;
@@ -82240,12 +83895,8 @@ declare interface Props_37 {
82240
83895
  theme?: 'dark' | 'light';
82241
83896
  }
82242
83897
 
82243
- declare interface Props_38 {
82244
- config: string | ConfigObject;
82245
- }
82246
-
82247
83898
  declare interface Props_39 {
82248
- config: string | ConfigObject_2;
83899
+ config: string | ConfigObject;
82249
83900
  }
82250
83901
 
82251
83902
  declare interface Props_4 {
@@ -82360,14 +84011,18 @@ declare interface Props_4 {
82360
84011
  }
82361
84012
 
82362
84013
  declare interface Props_40 {
82363
- config: string | ConfigObject_3;
84014
+ config: string | ConfigObject_2;
82364
84015
  }
82365
84016
 
82366
84017
  declare interface Props_41 {
82367
- config: string | ConfigObject_4;
84018
+ config: string | ConfigObject_3;
82368
84019
  }
82369
84020
 
82370
84021
  declare interface Props_42 {
84022
+ config: string | ConfigObject_4;
84023
+ }
84024
+
84025
+ declare interface Props_43 {
82371
84026
  /** Array of data objects */
82372
84027
  data: BarGraphWithDateDataType[];
82373
84028
  /** Orientation of the graph */
@@ -82478,7 +84133,7 @@ declare interface Props_42 {
82478
84133
  graphID?: string;
82479
84134
  }
82480
84135
 
82481
- declare interface Props_43 {
84136
+ declare interface Props_44 {
82482
84137
  /** Array of data objects */
82483
84138
  data: ButterflyChartWithDateDataType[];
82484
84139
  /** Title of the graph */
@@ -82577,7 +84232,7 @@ declare interface Props_43 {
82577
84232
  graphID?: string;
82578
84233
  }
82579
84234
 
82580
- declare interface Props_44 {
84235
+ declare interface Props_45 {
82581
84236
  /** Array of data objects */
82582
84237
  data: DumbbellChartWithDateDataType[];
82583
84238
  /** Orientation of the graph */
@@ -82688,7 +84343,7 @@ declare interface Props_44 {
82688
84343
  graphID?: string;
82689
84344
  }
82690
84345
 
82691
- declare interface Props_45 {
84346
+ declare interface Props_46 {
82692
84347
  data: BivariateMapWithDateDataType[];
82693
84348
  /** Title of the graph */
82694
84349
  graphTitle?: string;
@@ -82782,7 +84437,7 @@ declare interface Props_45 {
82782
84437
  graphID?: string;
82783
84438
  }
82784
84439
 
82785
- declare interface Props_46 {
84440
+ declare interface Props_47 {
82786
84441
  /** Array of data objects */
82787
84442
  data: ChoroplethMapWithDateDataType[];
82788
84443
  /** Title of the graph */
@@ -82875,7 +84530,7 @@ declare interface Props_46 {
82875
84530
  graphID?: string;
82876
84531
  }
82877
84532
 
82878
- declare interface Props_47 {
84533
+ declare interface Props_48 {
82879
84534
  /** Array of data objects */
82880
84535
  data: DotDensityMapWithDateDataType[];
82881
84536
  /** Title of the graph */
@@ -82968,7 +84623,7 @@ declare interface Props_47 {
82968
84623
  graphID?: string;
82969
84624
  }
82970
84625
 
82971
- declare interface Props_48 {
84626
+ declare interface Props_49 {
82972
84627
  /** Array of data objects */
82973
84628
  data: ScatterPlotWithDateDataType[];
82974
84629
  /** Title of the graph */
@@ -83087,18 +84742,6 @@ declare interface Props_48 {
83087
84742
  graphID?: string;
83088
84743
  }
83089
84744
 
83090
- declare interface Props_49 {
83091
- buttonContent?: string | JSX.Element;
83092
- buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
83093
- csvData: any;
83094
- fileName?: string;
83095
- headers: string[];
83096
- xlsxHeader: any;
83097
- wscols: WsColInterface[];
83098
- buttonSmall?: boolean;
83099
- className?: string;
83100
- }
83101
-
83102
84745
  declare interface Props_5 {
83103
84746
  /** Array of data objects */
83104
84747
  data: BeeSwarmChartDataType[];
@@ -83191,8 +84834,11 @@ declare interface Props_5 {
83191
84834
  declare interface Props_50 {
83192
84835
  buttonContent?: string | JSX.Element;
83193
84836
  buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
83194
- nodeID: string | HTMLElement;
83195
- filename?: string;
84837
+ csvData: any;
84838
+ fileName?: string;
84839
+ headers: string[];
84840
+ xlsxHeader: any;
84841
+ wscols: WsColInterface[];
83196
84842
  buttonSmall?: boolean;
83197
84843
  className?: string;
83198
84844
  }
@@ -83207,6 +84853,15 @@ declare interface Props_51 {
83207
84853
  }
83208
84854
 
83209
84855
  declare interface Props_52 {
84856
+ buttonContent?: string | JSX.Element;
84857
+ buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
84858
+ nodeID: string | HTMLElement;
84859
+ filename?: string;
84860
+ buttonSmall?: boolean;
84861
+ className?: string;
84862
+ }
84863
+
84864
+ declare interface Props_53 {
83210
84865
  buttonContent?: string | JSX.Element;
83211
84866
  buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
83212
84867
  csvData: any;
@@ -83217,7 +84872,7 @@ declare interface Props_52 {
83217
84872
  className?: string;
83218
84873
  }
83219
84874
 
83220
- declare interface Props_53 {
84875
+ declare interface Props_54 {
83221
84876
  text: string;
83222
84877
  successMessage?: string;
83223
84878
  buttonText?: string;
@@ -83225,7 +84880,7 @@ declare interface Props_53 {
83225
84880
  className?: string;
83226
84881
  }
83227
84882
 
83228
- declare interface Props_54 {
84883
+ declare interface Props_55 {
83229
84884
  colors: string[];
83230
84885
  colorDomain: (string | number)[];
83231
84886
  colorLegendTitle?: string;
@@ -83235,9 +84890,9 @@ declare interface Props_54 {
83235
84890
  className?: string;
83236
84891
  }
83237
84892
 
83238
- declare interface Props_55 {
84893
+ declare interface Props_56 {
83239
84894
  colors: string[];
83240
- colorDomain: string[];
84895
+ colorDomain: (string | number)[];
83241
84896
  colorLegendTitle?: string;
83242
84897
  showNAColor: boolean;
83243
84898
  setSelectedColor: (_d?: string) => void;
@@ -83246,7 +84901,7 @@ declare interface Props_55 {
83246
84901
  className?: string;
83247
84902
  }
83248
84903
 
83249
- declare interface Props_56 {
84904
+ declare interface Props_57 {
83250
84905
  colors: string[];
83251
84906
  colorDomain: number[];
83252
84907
  colorLegendTitle?: string;
@@ -83254,7 +84909,7 @@ declare interface Props_56 {
83254
84909
  className?: string;
83255
84910
  }
83256
84911
 
83257
- declare interface Props_57 {
84912
+ declare interface Props_58 {
83258
84913
  colors: string[];
83259
84914
  colorDomain: number[];
83260
84915
  colorLegendTitle?: string;
@@ -83265,7 +84920,7 @@ declare interface Props_57 {
83265
84920
  showNAColor: boolean;
83266
84921
  }
83267
84922
 
83268
- declare interface Props_58 {
84923
+ declare interface Props_59 {
83269
84924
  footNote?: string;
83270
84925
  sources?: SourcesDataType[];
83271
84926
  width?: number;
@@ -83279,23 +84934,6 @@ declare interface Props_58 {
83279
84934
  };
83280
84935
  }
83281
84936
 
83282
- declare interface Props_59 {
83283
- graphTitle?: string;
83284
- graphDescription?: string;
83285
- width?: number;
83286
- graphDownload?: HTMLDivElement | null;
83287
- dataDownload?: any;
83288
- isDashboard?: boolean;
83289
- styles?: {
83290
- title?: React.CSSProperties;
83291
- description?: React.CSSProperties;
83292
- };
83293
- classNames?: {
83294
- title?: string;
83295
- description?: string;
83296
- };
83297
- }
83298
-
83299
84937
  declare interface Props_6 {
83300
84938
  /** Array of data objects */
83301
84939
  data: DualAxisLineChartDataType[];
@@ -83386,18 +85024,35 @@ declare interface Props_6 {
83386
85024
  }
83387
85025
 
83388
85026
  declare interface Props_60 {
85027
+ graphTitle?: string;
85028
+ graphDescription?: string;
85029
+ width?: number;
85030
+ graphDownload?: HTMLDivElement | null;
85031
+ dataDownload?: any;
85032
+ isDashboard?: boolean;
85033
+ styles?: {
85034
+ title?: React.CSSProperties;
85035
+ description?: React.CSSProperties;
85036
+ };
85037
+ classNames?: {
85038
+ title?: string;
85039
+ description?: string;
85040
+ };
85041
+ }
85042
+
85043
+ declare interface Props_61 {
83389
85044
  text: string;
83390
85045
  style?: React.CSSProperties;
83391
85046
  className?: string;
83392
85047
  }
83393
85048
 
83394
- declare interface Props_61 {
85049
+ declare interface Props_62 {
83395
85050
  text: string;
83396
85051
  style?: React.CSSProperties;
83397
85052
  className?: string;
83398
85053
  }
83399
85054
 
83400
- declare interface Props_62 {
85055
+ declare interface Props_63 {
83401
85056
  text: string;
83402
85057
  isDashboard?: boolean;
83403
85058
  style?: React.CSSProperties;
@@ -83713,6 +85368,15 @@ declare interface Props_9 {
83713
85368
  graphID?: string;
83714
85369
  }
83715
85370
 
85371
+ export declare function RadarChart(props: Props_34): JSX_2.Element;
85372
+
85373
+ declare interface RadarChartDataType {
85374
+ values: number[];
85375
+ label?: string | number;
85376
+ color?: string;
85377
+ data?: object;
85378
+ }
85379
+
83716
85380
  declare interface ReferenceDataType {
83717
85381
  value: number | null;
83718
85382
  text: string;
@@ -83778,9 +85442,9 @@ export declare function SimpleBarGraph(props: Props): JSX_2.Element;
83778
85442
 
83779
85443
  export declare function SimpleLineChart(props: Props_8): JSX_2.Element;
83780
85444
 
83781
- export declare function SingleGraphDashboard(props: Props_36): JSX_2.Element;
85445
+ export declare function SingleGraphDashboard(props: Props_37): JSX_2.Element;
83782
85446
 
83783
- export declare function SingleGraphDashboardFromConfig(props: Props_40): JSX_2.Element;
85447
+ export declare function SingleGraphDashboardFromConfig(props: Props_41): JSX_2.Element;
83784
85448
 
83785
85449
  export declare function SlopeChart(props: Props_20): JSX_2.Element;
83786
85450
 
@@ -84064,9 +85728,9 @@ declare interface StyleObject {
84064
85728
  */
84065
85729
  export declare function svgDownload(node: HTMLElement, filename: string): void;
84066
85730
 
84067
- export declare function SVGDownloadButton(props: Props_51): JSX_2.Element;
85731
+ export declare function SVGDownloadButton(props: Props_52): JSX_2.Element;
84068
85732
 
84069
- export declare function ThresholdColorLegendWithMouseOver(props: Props_57): JSX_2.Element;
85733
+ export declare function ThresholdColorLegendWithMouseOver(props: Props_58): JSX_2.Element;
84070
85734
 
84071
85735
  /**
84072
85736
  * Transforms specified columns of the CSV data into arrays, splitting the string values based on a delimiter.