@undp/data-viz 0.0.70 → 0.0.72
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.cjs +89 -89
- package/dist/index.d.ts +2029 -402
- package/dist/index.js +24912 -24088
- package/dist/index.umd.js +94 -94
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/readme.md +4 -4
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:
|
|
30
|
+
export declare function AnimatedBarGraph(props: Props_43): JSX_2.Element;
|
|
31
31
|
|
|
32
|
-
export declare function AnimatedBiVariateChoroplethMap(props:
|
|
32
|
+
export declare function AnimatedBiVariateChoroplethMap(props: Props_46): JSX_2.Element | null;
|
|
33
33
|
|
|
34
|
-
export declare function AnimatedButterflyChart(props:
|
|
34
|
+
export declare function AnimatedButterflyChart(props: Props_44): JSX_2.Element;
|
|
35
35
|
|
|
36
|
-
export declare function AnimatedChoroplethMap(props:
|
|
36
|
+
export declare function AnimatedChoroplethMap(props: Props_47): JSX_2.Element;
|
|
37
37
|
|
|
38
|
-
export declare function AnimatedDotDensityMap(props:
|
|
38
|
+
export declare function AnimatedDotDensityMap(props: Props_48): JSX_2.Element;
|
|
39
39
|
|
|
40
|
-
export declare function AnimatedDumbbellChart(props:
|
|
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:
|
|
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:
|
|
193
|
+
export declare function ColorLegend(props: Props_55): JSX_2.Element;
|
|
194
194
|
|
|
195
|
-
export declare function ColorLegendWithMouseOver(props:
|
|
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:
|
|
460
|
+
export declare function CopyTextButton(props: Props_54): JSX_2.Element;
|
|
461
461
|
|
|
462
|
-
export declare function CsvDownloadButton(props:
|
|
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:
|
|
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:
|
|
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
|
-
|
|
2666
|
-
|
|
2667
|
-
items?: undefined;
|
|
2668
|
-
} | {
|
|
2834
|
+
type: string;
|
|
2835
|
+
items: {
|
|
2669
2836
|
type: string;
|
|
2670
|
-
|
|
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
|
-
|
|
4873
|
+
oneOf: {
|
|
4874
|
+
type: string;
|
|
4875
|
+
}[];
|
|
4710
4876
|
};
|
|
4711
4877
|
};
|
|
4712
4878
|
graphDownload: {
|
|
@@ -5268,8 +5434,9 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
5268
5434
|
colorLegendTitle: {
|
|
5269
5435
|
type: string;
|
|
5270
5436
|
};
|
|
5271
|
-
|
|
5437
|
+
scaleType: {
|
|
5272
5438
|
type: string;
|
|
5439
|
+
enum: string[];
|
|
5273
5440
|
};
|
|
5274
5441
|
scale: {
|
|
5275
5442
|
type: string;
|
|
@@ -8172,9 +8339,6 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
8172
8339
|
bottomMargin: {
|
|
8173
8340
|
type: string;
|
|
8174
8341
|
};
|
|
8175
|
-
categorical: {
|
|
8176
|
-
type: string;
|
|
8177
|
-
};
|
|
8178
8342
|
center: {
|
|
8179
8343
|
items: {
|
|
8180
8344
|
type: string;
|
|
@@ -9159,6 +9323,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
9159
9323
|
showDots: {
|
|
9160
9324
|
type: string;
|
|
9161
9325
|
};
|
|
9326
|
+
fillShape: {
|
|
9327
|
+
type: string;
|
|
9328
|
+
};
|
|
9329
|
+
colorScaleMaxWidth: {
|
|
9330
|
+
type: string;
|
|
9331
|
+
};
|
|
9332
|
+
axisLabels: {
|
|
9333
|
+
type: string;
|
|
9334
|
+
items: {
|
|
9335
|
+
type: string;
|
|
9336
|
+
};
|
|
9337
|
+
minItems: number;
|
|
9338
|
+
};
|
|
9162
9339
|
};
|
|
9163
9340
|
type: string;
|
|
9164
9341
|
};
|
|
@@ -9448,9 +9625,6 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
9448
9625
|
bottomMargin: {
|
|
9449
9626
|
type: string;
|
|
9450
9627
|
};
|
|
9451
|
-
categorical: {
|
|
9452
|
-
type: string;
|
|
9453
|
-
};
|
|
9454
9628
|
center: {
|
|
9455
9629
|
items: {
|
|
9456
9630
|
type: string;
|
|
@@ -10435,6 +10609,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
10435
10609
|
showDots: {
|
|
10436
10610
|
type: string;
|
|
10437
10611
|
};
|
|
10612
|
+
fillShape: {
|
|
10613
|
+
type: string;
|
|
10614
|
+
};
|
|
10615
|
+
colorScaleMaxWidth: {
|
|
10616
|
+
type: string;
|
|
10617
|
+
};
|
|
10618
|
+
axisLabels: {
|
|
10619
|
+
type: string;
|
|
10620
|
+
items: {
|
|
10621
|
+
type: string;
|
|
10622
|
+
};
|
|
10623
|
+
minItems: number;
|
|
10624
|
+
};
|
|
10438
10625
|
};
|
|
10439
10626
|
type: string;
|
|
10440
10627
|
};
|
|
@@ -10702,9 +10889,6 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
10702
10889
|
bottomMargin: {
|
|
10703
10890
|
type: string;
|
|
10704
10891
|
};
|
|
10705
|
-
categorical: {
|
|
10706
|
-
type: string;
|
|
10707
|
-
};
|
|
10708
10892
|
center: {
|
|
10709
10893
|
items: {
|
|
10710
10894
|
type: string;
|
|
@@ -11689,6 +11873,19 @@ export declare const getDashboardJSONSchema: (columnList?: string[]) => {
|
|
|
11689
11873
|
showDots: {
|
|
11690
11874
|
type: string;
|
|
11691
11875
|
};
|
|
11876
|
+
fillShape: {
|
|
11877
|
+
type: string;
|
|
11878
|
+
};
|
|
11879
|
+
colorScaleMaxWidth: {
|
|
11880
|
+
type: string;
|
|
11881
|
+
};
|
|
11882
|
+
axisLabels: {
|
|
11883
|
+
type: string;
|
|
11884
|
+
items: {
|
|
11885
|
+
type: string;
|
|
11886
|
+
};
|
|
11887
|
+
minItems: number;
|
|
11888
|
+
};
|
|
11692
11889
|
};
|
|
11693
11890
|
type: string;
|
|
11694
11891
|
};
|
|
@@ -13745,33 +13942,18 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
|
|
|
13745
13942
|
detailsOnClick: {
|
|
13746
13943
|
type: string;
|
|
13747
13944
|
};
|
|
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
13945
|
topMargin: {
|
|
13770
13946
|
type: string;
|
|
13771
13947
|
};
|
|
13772
13948
|
bottomMargin: {
|
|
13773
13949
|
type: string;
|
|
13774
13950
|
};
|
|
13951
|
+
leftMargin: {
|
|
13952
|
+
type: string;
|
|
13953
|
+
};
|
|
13954
|
+
rightMargin: {
|
|
13955
|
+
type: string;
|
|
13956
|
+
};
|
|
13775
13957
|
ariaLabel: {
|
|
13776
13958
|
type: string;
|
|
13777
13959
|
};
|
|
@@ -13792,12 +13974,6 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
|
|
|
13792
13974
|
graphTitle: {
|
|
13793
13975
|
type: string;
|
|
13794
13976
|
};
|
|
13795
|
-
suffix: {
|
|
13796
|
-
type: string;
|
|
13797
|
-
};
|
|
13798
|
-
prefix: {
|
|
13799
|
-
type: string;
|
|
13800
|
-
};
|
|
13801
13977
|
sources: {
|
|
13802
13978
|
type: string;
|
|
13803
13979
|
items: {
|
|
@@ -13816,9 +13992,194 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
|
|
|
13816
13992
|
graphDescription: {
|
|
13817
13993
|
type: string;
|
|
13818
13994
|
};
|
|
13819
|
-
|
|
13820
|
-
type: string;
|
|
13821
|
-
};
|
|
13995
|
+
footNote: {
|
|
13996
|
+
type: string;
|
|
13997
|
+
};
|
|
13998
|
+
radius: {
|
|
13999
|
+
type: string;
|
|
14000
|
+
};
|
|
14001
|
+
strokeWidth: {
|
|
14002
|
+
type: string;
|
|
14003
|
+
};
|
|
14004
|
+
showNAColor: {
|
|
14005
|
+
type: string;
|
|
14006
|
+
};
|
|
14007
|
+
showValues: {
|
|
14008
|
+
type: string;
|
|
14009
|
+
};
|
|
14010
|
+
showDots: {
|
|
14011
|
+
type: string;
|
|
14012
|
+
};
|
|
14013
|
+
fillShape: {
|
|
14014
|
+
type: string;
|
|
14015
|
+
};
|
|
14016
|
+
showColorScale: {
|
|
14017
|
+
type: string;
|
|
14018
|
+
};
|
|
14019
|
+
backgroundColor: {
|
|
14020
|
+
oneOf: {
|
|
14021
|
+
type: string;
|
|
14022
|
+
}[];
|
|
14023
|
+
};
|
|
14024
|
+
colorLegendTitle: {
|
|
14025
|
+
type: string;
|
|
14026
|
+
};
|
|
14027
|
+
padding: {
|
|
14028
|
+
type: string;
|
|
14029
|
+
};
|
|
14030
|
+
tooltip: {
|
|
14031
|
+
type: string;
|
|
14032
|
+
};
|
|
14033
|
+
graphID: {
|
|
14034
|
+
type: string;
|
|
14035
|
+
};
|
|
14036
|
+
graphDownload: {
|
|
14037
|
+
type: string;
|
|
14038
|
+
};
|
|
14039
|
+
dataDownload: {
|
|
14040
|
+
type: string;
|
|
14041
|
+
};
|
|
14042
|
+
colorDomain: {
|
|
14043
|
+
type: string;
|
|
14044
|
+
items: {
|
|
14045
|
+
type: string;
|
|
14046
|
+
};
|
|
14047
|
+
};
|
|
14048
|
+
axisLabels: {
|
|
14049
|
+
type: string;
|
|
14050
|
+
items: {
|
|
14051
|
+
oneOf: {
|
|
14052
|
+
type: string;
|
|
14053
|
+
}[];
|
|
14054
|
+
};
|
|
14055
|
+
};
|
|
14056
|
+
curveType: {
|
|
14057
|
+
type: string;
|
|
14058
|
+
enum: string[];
|
|
14059
|
+
};
|
|
14060
|
+
highlightedLines: {
|
|
14061
|
+
type: string;
|
|
14062
|
+
items: {
|
|
14063
|
+
oneOf: {
|
|
14064
|
+
type: string;
|
|
14065
|
+
}[];
|
|
14066
|
+
};
|
|
14067
|
+
};
|
|
14068
|
+
noOfTicks: {
|
|
14069
|
+
type: string;
|
|
14070
|
+
};
|
|
14071
|
+
maxValue: {
|
|
14072
|
+
type: string;
|
|
14073
|
+
};
|
|
14074
|
+
minValue: {
|
|
14075
|
+
type: string;
|
|
14076
|
+
};
|
|
14077
|
+
language: {
|
|
14078
|
+
type: string;
|
|
14079
|
+
enum: string[];
|
|
14080
|
+
};
|
|
14081
|
+
theme: {
|
|
14082
|
+
type: string;
|
|
14083
|
+
enum: string[];
|
|
14084
|
+
};
|
|
14085
|
+
width: {
|
|
14086
|
+
type: string;
|
|
14087
|
+
};
|
|
14088
|
+
height: {
|
|
14089
|
+
type: string;
|
|
14090
|
+
};
|
|
14091
|
+
relativeHeight: {
|
|
14092
|
+
type: string;
|
|
14093
|
+
};
|
|
14094
|
+
minHeight: {
|
|
14095
|
+
type: string;
|
|
14096
|
+
};
|
|
14097
|
+
resetSelectionOnDoubleClick: {
|
|
14098
|
+
type: string;
|
|
14099
|
+
};
|
|
14100
|
+
};
|
|
14101
|
+
required: string[];
|
|
14102
|
+
} | {
|
|
14103
|
+
type: string;
|
|
14104
|
+
properties: {
|
|
14105
|
+
styles: {
|
|
14106
|
+
type: string;
|
|
14107
|
+
};
|
|
14108
|
+
classNames: {
|
|
14109
|
+
type: string;
|
|
14110
|
+
};
|
|
14111
|
+
detailsOnClick: {
|
|
14112
|
+
type: string;
|
|
14113
|
+
};
|
|
14114
|
+
mainText: {
|
|
14115
|
+
oneOf: ({
|
|
14116
|
+
type: string;
|
|
14117
|
+
properties?: undefined;
|
|
14118
|
+
required?: undefined;
|
|
14119
|
+
} | {
|
|
14120
|
+
type: string;
|
|
14121
|
+
properties: {
|
|
14122
|
+
label: {
|
|
14123
|
+
type: string;
|
|
14124
|
+
};
|
|
14125
|
+
suffix: {
|
|
14126
|
+
type: string;
|
|
14127
|
+
};
|
|
14128
|
+
prefix: {
|
|
14129
|
+
type: string;
|
|
14130
|
+
};
|
|
14131
|
+
};
|
|
14132
|
+
required: string[];
|
|
14133
|
+
})[];
|
|
14134
|
+
};
|
|
14135
|
+
topMargin: {
|
|
14136
|
+
type: string;
|
|
14137
|
+
};
|
|
14138
|
+
bottomMargin: {
|
|
14139
|
+
type: string;
|
|
14140
|
+
};
|
|
14141
|
+
ariaLabel: {
|
|
14142
|
+
type: string;
|
|
14143
|
+
};
|
|
14144
|
+
legendMaxWidth: {
|
|
14145
|
+
type: string;
|
|
14146
|
+
};
|
|
14147
|
+
colors: {
|
|
14148
|
+
type: string;
|
|
14149
|
+
items: {
|
|
14150
|
+
type: string;
|
|
14151
|
+
};
|
|
14152
|
+
};
|
|
14153
|
+
graphTitle: {
|
|
14154
|
+
type: string;
|
|
14155
|
+
};
|
|
14156
|
+
suffix: {
|
|
14157
|
+
type: string;
|
|
14158
|
+
};
|
|
14159
|
+
prefix: {
|
|
14160
|
+
type: string;
|
|
14161
|
+
};
|
|
14162
|
+
sources: {
|
|
14163
|
+
type: string;
|
|
14164
|
+
items: {
|
|
14165
|
+
type: string;
|
|
14166
|
+
properties: {
|
|
14167
|
+
source: {
|
|
14168
|
+
type: string;
|
|
14169
|
+
};
|
|
14170
|
+
link: {
|
|
14171
|
+
type: string;
|
|
14172
|
+
};
|
|
14173
|
+
};
|
|
14174
|
+
required: string[];
|
|
14175
|
+
};
|
|
14176
|
+
};
|
|
14177
|
+
graphDescription: {
|
|
14178
|
+
type: string;
|
|
14179
|
+
};
|
|
14180
|
+
subNote: {
|
|
14181
|
+
type: string;
|
|
14182
|
+
};
|
|
13822
14183
|
footNote: {
|
|
13823
14184
|
type: string;
|
|
13824
14185
|
};
|
|
@@ -15823,7 +16184,9 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
|
|
|
15823
16184
|
highlightedLines: {
|
|
15824
16185
|
type: string;
|
|
15825
16186
|
items: {
|
|
15826
|
-
|
|
16187
|
+
oneOf: {
|
|
16188
|
+
type: string;
|
|
16189
|
+
}[];
|
|
15827
16190
|
};
|
|
15828
16191
|
};
|
|
15829
16192
|
graphDownload: {
|
|
@@ -16385,8 +16748,9 @@ export declare const getDashboardWideToLongFormatJSONSchema: () => {
|
|
|
16385
16748
|
colorLegendTitle: {
|
|
16386
16749
|
type: string;
|
|
16387
16750
|
};
|
|
16388
|
-
|
|
16751
|
+
scaleType: {
|
|
16389
16752
|
type: string;
|
|
16753
|
+
enum: string[];
|
|
16390
16754
|
};
|
|
16391
16755
|
scale: {
|
|
16392
16756
|
type: string;
|
|
@@ -19286,6 +19650,31 @@ export declare function getDataSchema(graph: GraphType): {
|
|
|
19286
19650
|
};
|
|
19287
19651
|
required: string[];
|
|
19288
19652
|
};
|
|
19653
|
+
} | {
|
|
19654
|
+
type: string;
|
|
19655
|
+
items: {
|
|
19656
|
+
type: string;
|
|
19657
|
+
properties: {
|
|
19658
|
+
label: {
|
|
19659
|
+
oneOf: {
|
|
19660
|
+
type: string;
|
|
19661
|
+
}[];
|
|
19662
|
+
};
|
|
19663
|
+
values: {
|
|
19664
|
+
type: string;
|
|
19665
|
+
items: {
|
|
19666
|
+
type: string;
|
|
19667
|
+
};
|
|
19668
|
+
};
|
|
19669
|
+
color: {
|
|
19670
|
+
type: string;
|
|
19671
|
+
};
|
|
19672
|
+
data: {
|
|
19673
|
+
type: string;
|
|
19674
|
+
};
|
|
19675
|
+
};
|
|
19676
|
+
required: string[];
|
|
19677
|
+
};
|
|
19289
19678
|
} | {
|
|
19290
19679
|
type: string;
|
|
19291
19680
|
items: {
|
|
@@ -19868,9 +20257,6 @@ export declare const getDataSelectionSchema: (columnList?: string[]) => {
|
|
|
19868
20257
|
bottomMargin: {
|
|
19869
20258
|
type: string;
|
|
19870
20259
|
};
|
|
19871
|
-
categorical: {
|
|
19872
|
-
type: string;
|
|
19873
|
-
};
|
|
19874
20260
|
center: {
|
|
19875
20261
|
items: {
|
|
19876
20262
|
type: string;
|
|
@@ -20855,6 +21241,19 @@ export declare const getDataSelectionSchema: (columnList?: string[]) => {
|
|
|
20855
21241
|
showDots: {
|
|
20856
21242
|
type: string;
|
|
20857
21243
|
};
|
|
21244
|
+
fillShape: {
|
|
21245
|
+
type: string;
|
|
21246
|
+
};
|
|
21247
|
+
colorScaleMaxWidth: {
|
|
21248
|
+
type: string;
|
|
21249
|
+
};
|
|
21250
|
+
axisLabels: {
|
|
21251
|
+
type: string;
|
|
21252
|
+
items: {
|
|
21253
|
+
type: string;
|
|
21254
|
+
};
|
|
21255
|
+
minItems: number;
|
|
21256
|
+
};
|
|
20858
21257
|
};
|
|
20859
21258
|
type: string;
|
|
20860
21259
|
};
|
|
@@ -22770,33 +23169,18 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
22770
23169
|
detailsOnClick: {
|
|
22771
23170
|
type: string;
|
|
22772
23171
|
};
|
|
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
23172
|
topMargin: {
|
|
22795
23173
|
type: string;
|
|
22796
23174
|
};
|
|
22797
23175
|
bottomMargin: {
|
|
22798
23176
|
type: string;
|
|
22799
23177
|
};
|
|
23178
|
+
leftMargin: {
|
|
23179
|
+
type: string;
|
|
23180
|
+
};
|
|
23181
|
+
rightMargin: {
|
|
23182
|
+
type: string;
|
|
23183
|
+
};
|
|
22800
23184
|
ariaLabel: {
|
|
22801
23185
|
type: string;
|
|
22802
23186
|
};
|
|
@@ -22817,12 +23201,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
22817
23201
|
graphTitle: {
|
|
22818
23202
|
type: string;
|
|
22819
23203
|
};
|
|
22820
|
-
suffix: {
|
|
22821
|
-
type: string;
|
|
22822
|
-
};
|
|
22823
|
-
prefix: {
|
|
22824
|
-
type: string;
|
|
22825
|
-
};
|
|
22826
23204
|
sources: {
|
|
22827
23205
|
type: string;
|
|
22828
23206
|
items: {
|
|
@@ -22841,9 +23219,194 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
22841
23219
|
graphDescription: {
|
|
22842
23220
|
type: string;
|
|
22843
23221
|
};
|
|
22844
|
-
|
|
22845
|
-
type: string;
|
|
22846
|
-
};
|
|
23222
|
+
footNote: {
|
|
23223
|
+
type: string;
|
|
23224
|
+
};
|
|
23225
|
+
radius: {
|
|
23226
|
+
type: string;
|
|
23227
|
+
};
|
|
23228
|
+
strokeWidth: {
|
|
23229
|
+
type: string;
|
|
23230
|
+
};
|
|
23231
|
+
showNAColor: {
|
|
23232
|
+
type: string;
|
|
23233
|
+
};
|
|
23234
|
+
showValues: {
|
|
23235
|
+
type: string;
|
|
23236
|
+
};
|
|
23237
|
+
showDots: {
|
|
23238
|
+
type: string;
|
|
23239
|
+
};
|
|
23240
|
+
fillShape: {
|
|
23241
|
+
type: string;
|
|
23242
|
+
};
|
|
23243
|
+
showColorScale: {
|
|
23244
|
+
type: string;
|
|
23245
|
+
};
|
|
23246
|
+
backgroundColor: {
|
|
23247
|
+
oneOf: {
|
|
23248
|
+
type: string;
|
|
23249
|
+
}[];
|
|
23250
|
+
};
|
|
23251
|
+
colorLegendTitle: {
|
|
23252
|
+
type: string;
|
|
23253
|
+
};
|
|
23254
|
+
padding: {
|
|
23255
|
+
type: string;
|
|
23256
|
+
};
|
|
23257
|
+
tooltip: {
|
|
23258
|
+
type: string;
|
|
23259
|
+
};
|
|
23260
|
+
graphID: {
|
|
23261
|
+
type: string;
|
|
23262
|
+
};
|
|
23263
|
+
graphDownload: {
|
|
23264
|
+
type: string;
|
|
23265
|
+
};
|
|
23266
|
+
dataDownload: {
|
|
23267
|
+
type: string;
|
|
23268
|
+
};
|
|
23269
|
+
colorDomain: {
|
|
23270
|
+
type: string;
|
|
23271
|
+
items: {
|
|
23272
|
+
type: string;
|
|
23273
|
+
};
|
|
23274
|
+
};
|
|
23275
|
+
axisLabels: {
|
|
23276
|
+
type: string;
|
|
23277
|
+
items: {
|
|
23278
|
+
oneOf: {
|
|
23279
|
+
type: string;
|
|
23280
|
+
}[];
|
|
23281
|
+
};
|
|
23282
|
+
};
|
|
23283
|
+
curveType: {
|
|
23284
|
+
type: string;
|
|
23285
|
+
enum: string[];
|
|
23286
|
+
};
|
|
23287
|
+
highlightedLines: {
|
|
23288
|
+
type: string;
|
|
23289
|
+
items: {
|
|
23290
|
+
oneOf: {
|
|
23291
|
+
type: string;
|
|
23292
|
+
}[];
|
|
23293
|
+
};
|
|
23294
|
+
};
|
|
23295
|
+
noOfTicks: {
|
|
23296
|
+
type: string;
|
|
23297
|
+
};
|
|
23298
|
+
maxValue: {
|
|
23299
|
+
type: string;
|
|
23300
|
+
};
|
|
23301
|
+
minValue: {
|
|
23302
|
+
type: string;
|
|
23303
|
+
};
|
|
23304
|
+
language: {
|
|
23305
|
+
type: string;
|
|
23306
|
+
enum: string[];
|
|
23307
|
+
};
|
|
23308
|
+
theme: {
|
|
23309
|
+
type: string;
|
|
23310
|
+
enum: string[];
|
|
23311
|
+
};
|
|
23312
|
+
width: {
|
|
23313
|
+
type: string;
|
|
23314
|
+
};
|
|
23315
|
+
height: {
|
|
23316
|
+
type: string;
|
|
23317
|
+
};
|
|
23318
|
+
relativeHeight: {
|
|
23319
|
+
type: string;
|
|
23320
|
+
};
|
|
23321
|
+
minHeight: {
|
|
23322
|
+
type: string;
|
|
23323
|
+
};
|
|
23324
|
+
resetSelectionOnDoubleClick: {
|
|
23325
|
+
type: string;
|
|
23326
|
+
};
|
|
23327
|
+
};
|
|
23328
|
+
required: string[];
|
|
23329
|
+
} | {
|
|
23330
|
+
type: string;
|
|
23331
|
+
properties: {
|
|
23332
|
+
styles: {
|
|
23333
|
+
type: string;
|
|
23334
|
+
};
|
|
23335
|
+
classNames: {
|
|
23336
|
+
type: string;
|
|
23337
|
+
};
|
|
23338
|
+
detailsOnClick: {
|
|
23339
|
+
type: string;
|
|
23340
|
+
};
|
|
23341
|
+
mainText: {
|
|
23342
|
+
oneOf: ({
|
|
23343
|
+
type: string;
|
|
23344
|
+
properties?: undefined;
|
|
23345
|
+
required?: undefined;
|
|
23346
|
+
} | {
|
|
23347
|
+
type: string;
|
|
23348
|
+
properties: {
|
|
23349
|
+
label: {
|
|
23350
|
+
type: string;
|
|
23351
|
+
};
|
|
23352
|
+
suffix: {
|
|
23353
|
+
type: string;
|
|
23354
|
+
};
|
|
23355
|
+
prefix: {
|
|
23356
|
+
type: string;
|
|
23357
|
+
};
|
|
23358
|
+
};
|
|
23359
|
+
required: string[];
|
|
23360
|
+
})[];
|
|
23361
|
+
};
|
|
23362
|
+
topMargin: {
|
|
23363
|
+
type: string;
|
|
23364
|
+
};
|
|
23365
|
+
bottomMargin: {
|
|
23366
|
+
type: string;
|
|
23367
|
+
};
|
|
23368
|
+
ariaLabel: {
|
|
23369
|
+
type: string;
|
|
23370
|
+
};
|
|
23371
|
+
legendMaxWidth: {
|
|
23372
|
+
type: string;
|
|
23373
|
+
};
|
|
23374
|
+
colors: {
|
|
23375
|
+
type: string;
|
|
23376
|
+
items: {
|
|
23377
|
+
type: string;
|
|
23378
|
+
};
|
|
23379
|
+
};
|
|
23380
|
+
graphTitle: {
|
|
23381
|
+
type: string;
|
|
23382
|
+
};
|
|
23383
|
+
suffix: {
|
|
23384
|
+
type: string;
|
|
23385
|
+
};
|
|
23386
|
+
prefix: {
|
|
23387
|
+
type: string;
|
|
23388
|
+
};
|
|
23389
|
+
sources: {
|
|
23390
|
+
type: string;
|
|
23391
|
+
items: {
|
|
23392
|
+
type: string;
|
|
23393
|
+
properties: {
|
|
23394
|
+
source: {
|
|
23395
|
+
type: string;
|
|
23396
|
+
};
|
|
23397
|
+
link: {
|
|
23398
|
+
type: string;
|
|
23399
|
+
};
|
|
23400
|
+
};
|
|
23401
|
+
required: string[];
|
|
23402
|
+
};
|
|
23403
|
+
};
|
|
23404
|
+
graphDescription: {
|
|
23405
|
+
type: string;
|
|
23406
|
+
};
|
|
23407
|
+
subNote: {
|
|
23408
|
+
type: string;
|
|
23409
|
+
};
|
|
22847
23410
|
footNote: {
|
|
22848
23411
|
type: string;
|
|
22849
23412
|
};
|
|
@@ -24848,7 +25411,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
24848
25411
|
highlightedLines: {
|
|
24849
25412
|
type: string;
|
|
24850
25413
|
items: {
|
|
24851
|
-
|
|
25414
|
+
oneOf: {
|
|
25415
|
+
type: string;
|
|
25416
|
+
}[];
|
|
24852
25417
|
};
|
|
24853
25418
|
};
|
|
24854
25419
|
graphDownload: {
|
|
@@ -25410,8 +25975,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
25410
25975
|
colorLegendTitle: {
|
|
25411
25976
|
type: string;
|
|
25412
25977
|
};
|
|
25413
|
-
|
|
25978
|
+
scaleType: {
|
|
25414
25979
|
type: string;
|
|
25980
|
+
enum: string[];
|
|
25415
25981
|
};
|
|
25416
25982
|
scale: {
|
|
25417
25983
|
type: string;
|
|
@@ -28569,9 +29135,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
28569
29135
|
bottomMargin: {
|
|
28570
29136
|
type: string;
|
|
28571
29137
|
};
|
|
28572
|
-
categorical: {
|
|
28573
|
-
type: string;
|
|
28574
|
-
};
|
|
28575
29138
|
center: {
|
|
28576
29139
|
items: {
|
|
28577
29140
|
type: string;
|
|
@@ -29556,6 +30119,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
29556
30119
|
showDots: {
|
|
29557
30120
|
type: string;
|
|
29558
30121
|
};
|
|
30122
|
+
fillShape: {
|
|
30123
|
+
type: string;
|
|
30124
|
+
};
|
|
30125
|
+
colorScaleMaxWidth: {
|
|
30126
|
+
type: string;
|
|
30127
|
+
};
|
|
30128
|
+
axisLabels: {
|
|
30129
|
+
type: string;
|
|
30130
|
+
items: {
|
|
30131
|
+
type: string;
|
|
30132
|
+
};
|
|
30133
|
+
minItems: number;
|
|
30134
|
+
};
|
|
29559
30135
|
};
|
|
29560
30136
|
type: string;
|
|
29561
30137
|
};
|
|
@@ -29845,9 +30421,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
29845
30421
|
bottomMargin: {
|
|
29846
30422
|
type: string;
|
|
29847
30423
|
};
|
|
29848
|
-
categorical: {
|
|
29849
|
-
type: string;
|
|
29850
|
-
};
|
|
29851
30424
|
center: {
|
|
29852
30425
|
items: {
|
|
29853
30426
|
type: string;
|
|
@@ -30832,6 +31405,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
30832
31405
|
showDots: {
|
|
30833
31406
|
type: string;
|
|
30834
31407
|
};
|
|
31408
|
+
fillShape: {
|
|
31409
|
+
type: string;
|
|
31410
|
+
};
|
|
31411
|
+
colorScaleMaxWidth: {
|
|
31412
|
+
type: string;
|
|
31413
|
+
};
|
|
31414
|
+
axisLabels: {
|
|
31415
|
+
type: string;
|
|
31416
|
+
items: {
|
|
31417
|
+
type: string;
|
|
31418
|
+
};
|
|
31419
|
+
minItems: number;
|
|
31420
|
+
};
|
|
30835
31421
|
};
|
|
30836
31422
|
type: string;
|
|
30837
31423
|
};
|
|
@@ -31099,9 +31685,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
31099
31685
|
bottomMargin: {
|
|
31100
31686
|
type: string;
|
|
31101
31687
|
};
|
|
31102
|
-
categorical: {
|
|
31103
|
-
type: string;
|
|
31104
|
-
};
|
|
31105
31688
|
center: {
|
|
31106
31689
|
items: {
|
|
31107
31690
|
type: string;
|
|
@@ -32086,6 +32669,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
32086
32669
|
showDots: {
|
|
32087
32670
|
type: string;
|
|
32088
32671
|
};
|
|
32672
|
+
fillShape: {
|
|
32673
|
+
type: string;
|
|
32674
|
+
};
|
|
32675
|
+
colorScaleMaxWidth: {
|
|
32676
|
+
type: string;
|
|
32677
|
+
};
|
|
32678
|
+
axisLabels: {
|
|
32679
|
+
type: string;
|
|
32680
|
+
items: {
|
|
32681
|
+
type: string;
|
|
32682
|
+
};
|
|
32683
|
+
minItems: number;
|
|
32684
|
+
};
|
|
32089
32685
|
};
|
|
32090
32686
|
type: string;
|
|
32091
32687
|
};
|
|
@@ -33798,33 +34394,18 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
33798
34394
|
detailsOnClick: {
|
|
33799
34395
|
type: string;
|
|
33800
34396
|
};
|
|
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
34397
|
topMargin: {
|
|
33823
34398
|
type: string;
|
|
33824
34399
|
};
|
|
33825
34400
|
bottomMargin: {
|
|
33826
34401
|
type: string;
|
|
33827
34402
|
};
|
|
34403
|
+
leftMargin: {
|
|
34404
|
+
type: string;
|
|
34405
|
+
};
|
|
34406
|
+
rightMargin: {
|
|
34407
|
+
type: string;
|
|
34408
|
+
};
|
|
33828
34409
|
ariaLabel: {
|
|
33829
34410
|
type: string;
|
|
33830
34411
|
};
|
|
@@ -33845,12 +34426,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
33845
34426
|
graphTitle: {
|
|
33846
34427
|
type: string;
|
|
33847
34428
|
};
|
|
33848
|
-
suffix: {
|
|
33849
|
-
type: string;
|
|
33850
|
-
};
|
|
33851
|
-
prefix: {
|
|
33852
|
-
type: string;
|
|
33853
|
-
};
|
|
33854
34429
|
sources: {
|
|
33855
34430
|
type: string;
|
|
33856
34431
|
items: {
|
|
@@ -33869,9 +34444,194 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
33869
34444
|
graphDescription: {
|
|
33870
34445
|
type: string;
|
|
33871
34446
|
};
|
|
33872
|
-
|
|
33873
|
-
type: string;
|
|
33874
|
-
};
|
|
34447
|
+
footNote: {
|
|
34448
|
+
type: string;
|
|
34449
|
+
};
|
|
34450
|
+
radius: {
|
|
34451
|
+
type: string;
|
|
34452
|
+
};
|
|
34453
|
+
strokeWidth: {
|
|
34454
|
+
type: string;
|
|
34455
|
+
};
|
|
34456
|
+
showNAColor: {
|
|
34457
|
+
type: string;
|
|
34458
|
+
};
|
|
34459
|
+
showValues: {
|
|
34460
|
+
type: string;
|
|
34461
|
+
};
|
|
34462
|
+
showDots: {
|
|
34463
|
+
type: string;
|
|
34464
|
+
};
|
|
34465
|
+
fillShape: {
|
|
34466
|
+
type: string;
|
|
34467
|
+
};
|
|
34468
|
+
showColorScale: {
|
|
34469
|
+
type: string;
|
|
34470
|
+
};
|
|
34471
|
+
backgroundColor: {
|
|
34472
|
+
oneOf: {
|
|
34473
|
+
type: string;
|
|
34474
|
+
}[];
|
|
34475
|
+
};
|
|
34476
|
+
colorLegendTitle: {
|
|
34477
|
+
type: string;
|
|
34478
|
+
};
|
|
34479
|
+
padding: {
|
|
34480
|
+
type: string;
|
|
34481
|
+
};
|
|
34482
|
+
tooltip: {
|
|
34483
|
+
type: string;
|
|
34484
|
+
};
|
|
34485
|
+
graphID: {
|
|
34486
|
+
type: string;
|
|
34487
|
+
};
|
|
34488
|
+
graphDownload: {
|
|
34489
|
+
type: string;
|
|
34490
|
+
};
|
|
34491
|
+
dataDownload: {
|
|
34492
|
+
type: string;
|
|
34493
|
+
};
|
|
34494
|
+
colorDomain: {
|
|
34495
|
+
type: string;
|
|
34496
|
+
items: {
|
|
34497
|
+
type: string;
|
|
34498
|
+
};
|
|
34499
|
+
};
|
|
34500
|
+
axisLabels: {
|
|
34501
|
+
type: string;
|
|
34502
|
+
items: {
|
|
34503
|
+
oneOf: {
|
|
34504
|
+
type: string;
|
|
34505
|
+
}[];
|
|
34506
|
+
};
|
|
34507
|
+
};
|
|
34508
|
+
curveType: {
|
|
34509
|
+
type: string;
|
|
34510
|
+
enum: string[];
|
|
34511
|
+
};
|
|
34512
|
+
highlightedLines: {
|
|
34513
|
+
type: string;
|
|
34514
|
+
items: {
|
|
34515
|
+
oneOf: {
|
|
34516
|
+
type: string;
|
|
34517
|
+
}[];
|
|
34518
|
+
};
|
|
34519
|
+
};
|
|
34520
|
+
noOfTicks: {
|
|
34521
|
+
type: string;
|
|
34522
|
+
};
|
|
34523
|
+
maxValue: {
|
|
34524
|
+
type: string;
|
|
34525
|
+
};
|
|
34526
|
+
minValue: {
|
|
34527
|
+
type: string;
|
|
34528
|
+
};
|
|
34529
|
+
language: {
|
|
34530
|
+
type: string;
|
|
34531
|
+
enum: string[];
|
|
34532
|
+
};
|
|
34533
|
+
theme: {
|
|
34534
|
+
type: string;
|
|
34535
|
+
enum: string[];
|
|
34536
|
+
};
|
|
34537
|
+
width: {
|
|
34538
|
+
type: string;
|
|
34539
|
+
};
|
|
34540
|
+
height: {
|
|
34541
|
+
type: string;
|
|
34542
|
+
};
|
|
34543
|
+
relativeHeight: {
|
|
34544
|
+
type: string;
|
|
34545
|
+
};
|
|
34546
|
+
minHeight: {
|
|
34547
|
+
type: string;
|
|
34548
|
+
};
|
|
34549
|
+
resetSelectionOnDoubleClick: {
|
|
34550
|
+
type: string;
|
|
34551
|
+
};
|
|
34552
|
+
};
|
|
34553
|
+
required: string[];
|
|
34554
|
+
} | {
|
|
34555
|
+
type: string;
|
|
34556
|
+
properties: {
|
|
34557
|
+
styles: {
|
|
34558
|
+
type: string;
|
|
34559
|
+
};
|
|
34560
|
+
classNames: {
|
|
34561
|
+
type: string;
|
|
34562
|
+
};
|
|
34563
|
+
detailsOnClick: {
|
|
34564
|
+
type: string;
|
|
34565
|
+
};
|
|
34566
|
+
mainText: {
|
|
34567
|
+
oneOf: ({
|
|
34568
|
+
type: string;
|
|
34569
|
+
properties?: undefined;
|
|
34570
|
+
required?: undefined;
|
|
34571
|
+
} | {
|
|
34572
|
+
type: string;
|
|
34573
|
+
properties: {
|
|
34574
|
+
label: {
|
|
34575
|
+
type: string;
|
|
34576
|
+
};
|
|
34577
|
+
suffix: {
|
|
34578
|
+
type: string;
|
|
34579
|
+
};
|
|
34580
|
+
prefix: {
|
|
34581
|
+
type: string;
|
|
34582
|
+
};
|
|
34583
|
+
};
|
|
34584
|
+
required: string[];
|
|
34585
|
+
})[];
|
|
34586
|
+
};
|
|
34587
|
+
topMargin: {
|
|
34588
|
+
type: string;
|
|
34589
|
+
};
|
|
34590
|
+
bottomMargin: {
|
|
34591
|
+
type: string;
|
|
34592
|
+
};
|
|
34593
|
+
ariaLabel: {
|
|
34594
|
+
type: string;
|
|
34595
|
+
};
|
|
34596
|
+
legendMaxWidth: {
|
|
34597
|
+
type: string;
|
|
34598
|
+
};
|
|
34599
|
+
colors: {
|
|
34600
|
+
type: string;
|
|
34601
|
+
items: {
|
|
34602
|
+
type: string;
|
|
34603
|
+
};
|
|
34604
|
+
};
|
|
34605
|
+
graphTitle: {
|
|
34606
|
+
type: string;
|
|
34607
|
+
};
|
|
34608
|
+
suffix: {
|
|
34609
|
+
type: string;
|
|
34610
|
+
};
|
|
34611
|
+
prefix: {
|
|
34612
|
+
type: string;
|
|
34613
|
+
};
|
|
34614
|
+
sources: {
|
|
34615
|
+
type: string;
|
|
34616
|
+
items: {
|
|
34617
|
+
type: string;
|
|
34618
|
+
properties: {
|
|
34619
|
+
source: {
|
|
34620
|
+
type: string;
|
|
34621
|
+
};
|
|
34622
|
+
link: {
|
|
34623
|
+
type: string;
|
|
34624
|
+
};
|
|
34625
|
+
};
|
|
34626
|
+
required: string[];
|
|
34627
|
+
};
|
|
34628
|
+
};
|
|
34629
|
+
graphDescription: {
|
|
34630
|
+
type: string;
|
|
34631
|
+
};
|
|
34632
|
+
subNote: {
|
|
34633
|
+
type: string;
|
|
34634
|
+
};
|
|
33875
34635
|
footNote: {
|
|
33876
34636
|
type: string;
|
|
33877
34637
|
};
|
|
@@ -35876,7 +36636,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
35876
36636
|
highlightedLines: {
|
|
35877
36637
|
type: string;
|
|
35878
36638
|
items: {
|
|
35879
|
-
|
|
36639
|
+
oneOf: {
|
|
36640
|
+
type: string;
|
|
36641
|
+
}[];
|
|
35880
36642
|
};
|
|
35881
36643
|
};
|
|
35882
36644
|
graphDownload: {
|
|
@@ -36438,8 +37200,9 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
36438
37200
|
colorLegendTitle: {
|
|
36439
37201
|
type: string;
|
|
36440
37202
|
};
|
|
36441
|
-
|
|
37203
|
+
scaleType: {
|
|
36442
37204
|
type: string;
|
|
37205
|
+
enum: string[];
|
|
36443
37206
|
};
|
|
36444
37207
|
scale: {
|
|
36445
37208
|
type: string;
|
|
@@ -39633,9 +40396,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
39633
40396
|
bottomMargin: {
|
|
39634
40397
|
type: string;
|
|
39635
40398
|
};
|
|
39636
|
-
categorical: {
|
|
39637
|
-
type: string;
|
|
39638
|
-
};
|
|
39639
40399
|
center: {
|
|
39640
40400
|
items: {
|
|
39641
40401
|
type: string;
|
|
@@ -40620,6 +41380,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
40620
41380
|
showDots: {
|
|
40621
41381
|
type: string;
|
|
40622
41382
|
};
|
|
41383
|
+
fillShape: {
|
|
41384
|
+
type: string;
|
|
41385
|
+
};
|
|
41386
|
+
colorScaleMaxWidth: {
|
|
41387
|
+
type: string;
|
|
41388
|
+
};
|
|
41389
|
+
axisLabels: {
|
|
41390
|
+
type: string;
|
|
41391
|
+
items: {
|
|
41392
|
+
type: string;
|
|
41393
|
+
};
|
|
41394
|
+
minItems: number;
|
|
41395
|
+
};
|
|
40623
41396
|
};
|
|
40624
41397
|
type: string;
|
|
40625
41398
|
};
|
|
@@ -40909,9 +41682,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
40909
41682
|
bottomMargin: {
|
|
40910
41683
|
type: string;
|
|
40911
41684
|
};
|
|
40912
|
-
categorical: {
|
|
40913
|
-
type: string;
|
|
40914
|
-
};
|
|
40915
41685
|
center: {
|
|
40916
41686
|
items: {
|
|
40917
41687
|
type: string;
|
|
@@ -41896,6 +42666,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
41896
42666
|
showDots: {
|
|
41897
42667
|
type: string;
|
|
41898
42668
|
};
|
|
42669
|
+
fillShape: {
|
|
42670
|
+
type: string;
|
|
42671
|
+
};
|
|
42672
|
+
colorScaleMaxWidth: {
|
|
42673
|
+
type: string;
|
|
42674
|
+
};
|
|
42675
|
+
axisLabels: {
|
|
42676
|
+
type: string;
|
|
42677
|
+
items: {
|
|
42678
|
+
type: string;
|
|
42679
|
+
};
|
|
42680
|
+
minItems: number;
|
|
42681
|
+
};
|
|
41899
42682
|
};
|
|
41900
42683
|
type: string;
|
|
41901
42684
|
};
|
|
@@ -42163,9 +42946,6 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
42163
42946
|
bottomMargin: {
|
|
42164
42947
|
type: string;
|
|
42165
42948
|
};
|
|
42166
|
-
categorical: {
|
|
42167
|
-
type: string;
|
|
42168
|
-
};
|
|
42169
42949
|
center: {
|
|
42170
42950
|
items: {
|
|
42171
42951
|
type: string;
|
|
@@ -43150,6 +43930,19 @@ export declare const getGriddedGraphJSONSchema: (columnList?: string[], graphTyp
|
|
|
43150
43930
|
showDots: {
|
|
43151
43931
|
type: string;
|
|
43152
43932
|
};
|
|
43933
|
+
fillShape: {
|
|
43934
|
+
type: string;
|
|
43935
|
+
};
|
|
43936
|
+
colorScaleMaxWidth: {
|
|
43937
|
+
type: string;
|
|
43938
|
+
};
|
|
43939
|
+
axisLabels: {
|
|
43940
|
+
type: string;
|
|
43941
|
+
items: {
|
|
43942
|
+
type: string;
|
|
43943
|
+
};
|
|
43944
|
+
minItems: number;
|
|
43945
|
+
};
|
|
43153
43946
|
};
|
|
43154
43947
|
type: string;
|
|
43155
43948
|
};
|
|
@@ -44925,33 +45718,18 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
|
|
|
44925
45718
|
detailsOnClick: {
|
|
44926
45719
|
type: string;
|
|
44927
45720
|
};
|
|
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
45721
|
topMargin: {
|
|
44950
45722
|
type: string;
|
|
44951
45723
|
};
|
|
44952
45724
|
bottomMargin: {
|
|
44953
45725
|
type: string;
|
|
44954
45726
|
};
|
|
45727
|
+
leftMargin: {
|
|
45728
|
+
type: string;
|
|
45729
|
+
};
|
|
45730
|
+
rightMargin: {
|
|
45731
|
+
type: string;
|
|
45732
|
+
};
|
|
44955
45733
|
ariaLabel: {
|
|
44956
45734
|
type: string;
|
|
44957
45735
|
};
|
|
@@ -44972,12 +45750,6 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
|
|
|
44972
45750
|
graphTitle: {
|
|
44973
45751
|
type: string;
|
|
44974
45752
|
};
|
|
44975
|
-
suffix: {
|
|
44976
|
-
type: string;
|
|
44977
|
-
};
|
|
44978
|
-
prefix: {
|
|
44979
|
-
type: string;
|
|
44980
|
-
};
|
|
44981
45753
|
sources: {
|
|
44982
45754
|
type: string;
|
|
44983
45755
|
items: {
|
|
@@ -44996,9 +45768,194 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
|
|
|
44996
45768
|
graphDescription: {
|
|
44997
45769
|
type: string;
|
|
44998
45770
|
};
|
|
44999
|
-
|
|
45000
|
-
type: string;
|
|
45001
|
-
};
|
|
45771
|
+
footNote: {
|
|
45772
|
+
type: string;
|
|
45773
|
+
};
|
|
45774
|
+
radius: {
|
|
45775
|
+
type: string;
|
|
45776
|
+
};
|
|
45777
|
+
strokeWidth: {
|
|
45778
|
+
type: string;
|
|
45779
|
+
};
|
|
45780
|
+
showNAColor: {
|
|
45781
|
+
type: string;
|
|
45782
|
+
};
|
|
45783
|
+
showValues: {
|
|
45784
|
+
type: string;
|
|
45785
|
+
};
|
|
45786
|
+
showDots: {
|
|
45787
|
+
type: string;
|
|
45788
|
+
};
|
|
45789
|
+
fillShape: {
|
|
45790
|
+
type: string;
|
|
45791
|
+
};
|
|
45792
|
+
showColorScale: {
|
|
45793
|
+
type: string;
|
|
45794
|
+
};
|
|
45795
|
+
backgroundColor: {
|
|
45796
|
+
oneOf: {
|
|
45797
|
+
type: string;
|
|
45798
|
+
}[];
|
|
45799
|
+
};
|
|
45800
|
+
colorLegendTitle: {
|
|
45801
|
+
type: string;
|
|
45802
|
+
};
|
|
45803
|
+
padding: {
|
|
45804
|
+
type: string;
|
|
45805
|
+
};
|
|
45806
|
+
tooltip: {
|
|
45807
|
+
type: string;
|
|
45808
|
+
};
|
|
45809
|
+
graphID: {
|
|
45810
|
+
type: string;
|
|
45811
|
+
};
|
|
45812
|
+
graphDownload: {
|
|
45813
|
+
type: string;
|
|
45814
|
+
};
|
|
45815
|
+
dataDownload: {
|
|
45816
|
+
type: string;
|
|
45817
|
+
};
|
|
45818
|
+
colorDomain: {
|
|
45819
|
+
type: string;
|
|
45820
|
+
items: {
|
|
45821
|
+
type: string;
|
|
45822
|
+
};
|
|
45823
|
+
};
|
|
45824
|
+
axisLabels: {
|
|
45825
|
+
type: string;
|
|
45826
|
+
items: {
|
|
45827
|
+
oneOf: {
|
|
45828
|
+
type: string;
|
|
45829
|
+
}[];
|
|
45830
|
+
};
|
|
45831
|
+
};
|
|
45832
|
+
curveType: {
|
|
45833
|
+
type: string;
|
|
45834
|
+
enum: string[];
|
|
45835
|
+
};
|
|
45836
|
+
highlightedLines: {
|
|
45837
|
+
type: string;
|
|
45838
|
+
items: {
|
|
45839
|
+
oneOf: {
|
|
45840
|
+
type: string;
|
|
45841
|
+
}[];
|
|
45842
|
+
};
|
|
45843
|
+
};
|
|
45844
|
+
noOfTicks: {
|
|
45845
|
+
type: string;
|
|
45846
|
+
};
|
|
45847
|
+
maxValue: {
|
|
45848
|
+
type: string;
|
|
45849
|
+
};
|
|
45850
|
+
minValue: {
|
|
45851
|
+
type: string;
|
|
45852
|
+
};
|
|
45853
|
+
language: {
|
|
45854
|
+
type: string;
|
|
45855
|
+
enum: string[];
|
|
45856
|
+
};
|
|
45857
|
+
theme: {
|
|
45858
|
+
type: string;
|
|
45859
|
+
enum: string[];
|
|
45860
|
+
};
|
|
45861
|
+
width: {
|
|
45862
|
+
type: string;
|
|
45863
|
+
};
|
|
45864
|
+
height: {
|
|
45865
|
+
type: string;
|
|
45866
|
+
};
|
|
45867
|
+
relativeHeight: {
|
|
45868
|
+
type: string;
|
|
45869
|
+
};
|
|
45870
|
+
minHeight: {
|
|
45871
|
+
type: string;
|
|
45872
|
+
};
|
|
45873
|
+
resetSelectionOnDoubleClick: {
|
|
45874
|
+
type: string;
|
|
45875
|
+
};
|
|
45876
|
+
};
|
|
45877
|
+
required: string[];
|
|
45878
|
+
} | {
|
|
45879
|
+
type: string;
|
|
45880
|
+
properties: {
|
|
45881
|
+
styles: {
|
|
45882
|
+
type: string;
|
|
45883
|
+
};
|
|
45884
|
+
classNames: {
|
|
45885
|
+
type: string;
|
|
45886
|
+
};
|
|
45887
|
+
detailsOnClick: {
|
|
45888
|
+
type: string;
|
|
45889
|
+
};
|
|
45890
|
+
mainText: {
|
|
45891
|
+
oneOf: ({
|
|
45892
|
+
type: string;
|
|
45893
|
+
properties?: undefined;
|
|
45894
|
+
required?: undefined;
|
|
45895
|
+
} | {
|
|
45896
|
+
type: string;
|
|
45897
|
+
properties: {
|
|
45898
|
+
label: {
|
|
45899
|
+
type: string;
|
|
45900
|
+
};
|
|
45901
|
+
suffix: {
|
|
45902
|
+
type: string;
|
|
45903
|
+
};
|
|
45904
|
+
prefix: {
|
|
45905
|
+
type: string;
|
|
45906
|
+
};
|
|
45907
|
+
};
|
|
45908
|
+
required: string[];
|
|
45909
|
+
})[];
|
|
45910
|
+
};
|
|
45911
|
+
topMargin: {
|
|
45912
|
+
type: string;
|
|
45913
|
+
};
|
|
45914
|
+
bottomMargin: {
|
|
45915
|
+
type: string;
|
|
45916
|
+
};
|
|
45917
|
+
ariaLabel: {
|
|
45918
|
+
type: string;
|
|
45919
|
+
};
|
|
45920
|
+
legendMaxWidth: {
|
|
45921
|
+
type: string;
|
|
45922
|
+
};
|
|
45923
|
+
colors: {
|
|
45924
|
+
type: string;
|
|
45925
|
+
items: {
|
|
45926
|
+
type: string;
|
|
45927
|
+
};
|
|
45928
|
+
};
|
|
45929
|
+
graphTitle: {
|
|
45930
|
+
type: string;
|
|
45931
|
+
};
|
|
45932
|
+
suffix: {
|
|
45933
|
+
type: string;
|
|
45934
|
+
};
|
|
45935
|
+
prefix: {
|
|
45936
|
+
type: string;
|
|
45937
|
+
};
|
|
45938
|
+
sources: {
|
|
45939
|
+
type: string;
|
|
45940
|
+
items: {
|
|
45941
|
+
type: string;
|
|
45942
|
+
properties: {
|
|
45943
|
+
source: {
|
|
45944
|
+
type: string;
|
|
45945
|
+
};
|
|
45946
|
+
link: {
|
|
45947
|
+
type: string;
|
|
45948
|
+
};
|
|
45949
|
+
};
|
|
45950
|
+
required: string[];
|
|
45951
|
+
};
|
|
45952
|
+
};
|
|
45953
|
+
graphDescription: {
|
|
45954
|
+
type: string;
|
|
45955
|
+
};
|
|
45956
|
+
subNote: {
|
|
45957
|
+
type: string;
|
|
45958
|
+
};
|
|
45002
45959
|
footNote: {
|
|
45003
45960
|
type: string;
|
|
45004
45961
|
};
|
|
@@ -47003,7 +47960,9 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
|
|
|
47003
47960
|
highlightedLines: {
|
|
47004
47961
|
type: string;
|
|
47005
47962
|
items: {
|
|
47006
|
-
|
|
47963
|
+
oneOf: {
|
|
47964
|
+
type: string;
|
|
47965
|
+
}[];
|
|
47007
47966
|
};
|
|
47008
47967
|
};
|
|
47009
47968
|
graphDownload: {
|
|
@@ -47565,8 +48524,9 @@ export declare function getSettingsSchema(graph: GraphType | 'allGraphs'): {
|
|
|
47565
48524
|
colorLegendTitle: {
|
|
47566
48525
|
type: string;
|
|
47567
48526
|
};
|
|
47568
|
-
|
|
48527
|
+
scaleType: {
|
|
47569
48528
|
type: string;
|
|
48529
|
+
enum: string[];
|
|
47570
48530
|
};
|
|
47571
48531
|
scale: {
|
|
47572
48532
|
type: string;
|
|
@@ -51912,33 +52872,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
51912
52872
|
detailsOnClick: {
|
|
51913
52873
|
type: string;
|
|
51914
52874
|
};
|
|
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
52875
|
topMargin: {
|
|
51937
52876
|
type: string;
|
|
51938
52877
|
};
|
|
51939
52878
|
bottomMargin: {
|
|
51940
52879
|
type: string;
|
|
51941
52880
|
};
|
|
52881
|
+
leftMargin: {
|
|
52882
|
+
type: string;
|
|
52883
|
+
};
|
|
52884
|
+
rightMargin: {
|
|
52885
|
+
type: string;
|
|
52886
|
+
};
|
|
51942
52887
|
ariaLabel: {
|
|
51943
52888
|
type: string;
|
|
51944
52889
|
};
|
|
@@ -51959,12 +52904,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
51959
52904
|
graphTitle: {
|
|
51960
52905
|
type: string;
|
|
51961
52906
|
};
|
|
51962
|
-
suffix: {
|
|
51963
|
-
type: string;
|
|
51964
|
-
};
|
|
51965
|
-
prefix: {
|
|
51966
|
-
type: string;
|
|
51967
|
-
};
|
|
51968
52907
|
sources: {
|
|
51969
52908
|
type: string;
|
|
51970
52909
|
items: {
|
|
@@ -51983,9 +52922,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
51983
52922
|
graphDescription: {
|
|
51984
52923
|
type: string;
|
|
51985
52924
|
};
|
|
51986
|
-
subNote: {
|
|
51987
|
-
type: string;
|
|
51988
|
-
};
|
|
51989
52925
|
footNote: {
|
|
51990
52926
|
type: string;
|
|
51991
52927
|
};
|
|
@@ -51995,6 +52931,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
51995
52931
|
strokeWidth: {
|
|
51996
52932
|
type: string;
|
|
51997
52933
|
};
|
|
52934
|
+
showNAColor: {
|
|
52935
|
+
type: string;
|
|
52936
|
+
};
|
|
52937
|
+
showValues: {
|
|
52938
|
+
type: string;
|
|
52939
|
+
};
|
|
52940
|
+
showDots: {
|
|
52941
|
+
type: string;
|
|
52942
|
+
};
|
|
52943
|
+
fillShape: {
|
|
52944
|
+
type: string;
|
|
52945
|
+
};
|
|
51998
52946
|
showColorScale: {
|
|
51999
52947
|
type: string;
|
|
52000
52948
|
};
|
|
@@ -52003,6 +52951,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
52003
52951
|
type: string;
|
|
52004
52952
|
}[];
|
|
52005
52953
|
};
|
|
52954
|
+
colorLegendTitle: {
|
|
52955
|
+
type: string;
|
|
52956
|
+
};
|
|
52006
52957
|
padding: {
|
|
52007
52958
|
type: string;
|
|
52008
52959
|
};
|
|
@@ -52024,10 +52975,35 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
52024
52975
|
type: string;
|
|
52025
52976
|
};
|
|
52026
52977
|
};
|
|
52027
|
-
|
|
52978
|
+
axisLabels: {
|
|
52979
|
+
type: string;
|
|
52980
|
+
items: {
|
|
52981
|
+
oneOf: {
|
|
52982
|
+
type: string;
|
|
52983
|
+
}[];
|
|
52984
|
+
};
|
|
52985
|
+
};
|
|
52986
|
+
curveType: {
|
|
52028
52987
|
type: string;
|
|
52029
52988
|
enum: string[];
|
|
52030
52989
|
};
|
|
52990
|
+
highlightedLines: {
|
|
52991
|
+
type: string;
|
|
52992
|
+
items: {
|
|
52993
|
+
oneOf: {
|
|
52994
|
+
type: string;
|
|
52995
|
+
}[];
|
|
52996
|
+
};
|
|
52997
|
+
};
|
|
52998
|
+
noOfTicks: {
|
|
52999
|
+
type: string;
|
|
53000
|
+
};
|
|
53001
|
+
maxValue: {
|
|
53002
|
+
type: string;
|
|
53003
|
+
};
|
|
53004
|
+
minValue: {
|
|
53005
|
+
type: string;
|
|
53006
|
+
};
|
|
52031
53007
|
language: {
|
|
52032
53008
|
type: string;
|
|
52033
53009
|
enum: string[];
|
|
@@ -52052,6 +53028,7 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
52052
53028
|
type: string;
|
|
52053
53029
|
};
|
|
52054
53030
|
};
|
|
53031
|
+
required: string[];
|
|
52055
53032
|
} | {
|
|
52056
53033
|
type: string;
|
|
52057
53034
|
properties: {
|
|
@@ -52064,78 +53041,225 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
52064
53041
|
detailsOnClick: {
|
|
52065
53042
|
type: string;
|
|
52066
53043
|
};
|
|
52067
|
-
|
|
52068
|
-
|
|
52069
|
-
|
|
52070
|
-
|
|
52071
|
-
|
|
52072
|
-
|
|
53044
|
+
mainText: {
|
|
53045
|
+
oneOf: ({
|
|
53046
|
+
type: string;
|
|
53047
|
+
properties?: undefined;
|
|
53048
|
+
required?: undefined;
|
|
53049
|
+
} | {
|
|
52073
53050
|
type: string;
|
|
52074
|
-
};
|
|
52075
|
-
};
|
|
52076
|
-
refValues: {
|
|
52077
|
-
type: string;
|
|
52078
|
-
items: {
|
|
52079
53051
|
properties: {
|
|
52080
|
-
|
|
52081
|
-
type: string;
|
|
52082
|
-
};
|
|
52083
|
-
text: {
|
|
53052
|
+
label: {
|
|
52084
53053
|
type: string;
|
|
52085
53054
|
};
|
|
52086
|
-
|
|
53055
|
+
suffix: {
|
|
52087
53056
|
type: string;
|
|
52088
53057
|
};
|
|
52089
|
-
|
|
52090
|
-
type: string;
|
|
52091
|
-
properties: {
|
|
52092
|
-
line: {
|
|
52093
|
-
type: string;
|
|
52094
|
-
};
|
|
52095
|
-
text: {
|
|
52096
|
-
type: string;
|
|
52097
|
-
};
|
|
52098
|
-
};
|
|
52099
|
-
};
|
|
52100
|
-
classNames: {
|
|
53058
|
+
prefix: {
|
|
52101
53059
|
type: string;
|
|
52102
|
-
properties: {
|
|
52103
|
-
line: {
|
|
52104
|
-
type: string;
|
|
52105
|
-
};
|
|
52106
|
-
text: {
|
|
52107
|
-
type: string;
|
|
52108
|
-
};
|
|
52109
|
-
};
|
|
52110
53060
|
};
|
|
52111
53061
|
};
|
|
52112
|
-
type: string;
|
|
52113
53062
|
required: string[];
|
|
52114
|
-
};
|
|
52115
|
-
};
|
|
52116
|
-
labelOrder: {
|
|
52117
|
-
type: string;
|
|
52118
|
-
items: {
|
|
52119
|
-
type: string;
|
|
52120
|
-
};
|
|
53063
|
+
})[];
|
|
52121
53064
|
};
|
|
52122
|
-
|
|
53065
|
+
topMargin: {
|
|
52123
53066
|
type: string;
|
|
52124
|
-
enum: string[];
|
|
52125
53067
|
};
|
|
52126
|
-
|
|
53068
|
+
bottomMargin: {
|
|
52127
53069
|
type: string;
|
|
52128
53070
|
};
|
|
52129
|
-
|
|
53071
|
+
ariaLabel: {
|
|
52130
53072
|
type: string;
|
|
52131
53073
|
};
|
|
52132
|
-
|
|
53074
|
+
legendMaxWidth: {
|
|
52133
53075
|
type: string;
|
|
52134
53076
|
};
|
|
52135
|
-
|
|
53077
|
+
colors: {
|
|
52136
53078
|
type: string;
|
|
53079
|
+
items: {
|
|
53080
|
+
type: string;
|
|
53081
|
+
};
|
|
52137
53082
|
};
|
|
52138
|
-
|
|
53083
|
+
graphTitle: {
|
|
53084
|
+
type: string;
|
|
53085
|
+
};
|
|
53086
|
+
suffix: {
|
|
53087
|
+
type: string;
|
|
53088
|
+
};
|
|
53089
|
+
prefix: {
|
|
53090
|
+
type: string;
|
|
53091
|
+
};
|
|
53092
|
+
sources: {
|
|
53093
|
+
type: string;
|
|
53094
|
+
items: {
|
|
53095
|
+
type: string;
|
|
53096
|
+
properties: {
|
|
53097
|
+
source: {
|
|
53098
|
+
type: string;
|
|
53099
|
+
};
|
|
53100
|
+
link: {
|
|
53101
|
+
type: string;
|
|
53102
|
+
};
|
|
53103
|
+
};
|
|
53104
|
+
required: string[];
|
|
53105
|
+
};
|
|
53106
|
+
};
|
|
53107
|
+
graphDescription: {
|
|
53108
|
+
type: string;
|
|
53109
|
+
};
|
|
53110
|
+
subNote: {
|
|
53111
|
+
type: string;
|
|
53112
|
+
};
|
|
53113
|
+
footNote: {
|
|
53114
|
+
type: string;
|
|
53115
|
+
};
|
|
53116
|
+
radius: {
|
|
53117
|
+
type: string;
|
|
53118
|
+
};
|
|
53119
|
+
strokeWidth: {
|
|
53120
|
+
type: string;
|
|
53121
|
+
};
|
|
53122
|
+
showColorScale: {
|
|
53123
|
+
type: string;
|
|
53124
|
+
};
|
|
53125
|
+
backgroundColor: {
|
|
53126
|
+
oneOf: {
|
|
53127
|
+
type: string;
|
|
53128
|
+
}[];
|
|
53129
|
+
};
|
|
53130
|
+
padding: {
|
|
53131
|
+
type: string;
|
|
53132
|
+
};
|
|
53133
|
+
tooltip: {
|
|
53134
|
+
type: string;
|
|
53135
|
+
};
|
|
53136
|
+
graphID: {
|
|
53137
|
+
type: string;
|
|
53138
|
+
};
|
|
53139
|
+
graphDownload: {
|
|
53140
|
+
type: string;
|
|
53141
|
+
};
|
|
53142
|
+
dataDownload: {
|
|
53143
|
+
type: string;
|
|
53144
|
+
};
|
|
53145
|
+
colorDomain: {
|
|
53146
|
+
type: string;
|
|
53147
|
+
items: {
|
|
53148
|
+
type: string;
|
|
53149
|
+
};
|
|
53150
|
+
};
|
|
53151
|
+
sortData: {
|
|
53152
|
+
type: string;
|
|
53153
|
+
enum: string[];
|
|
53154
|
+
};
|
|
53155
|
+
language: {
|
|
53156
|
+
type: string;
|
|
53157
|
+
enum: string[];
|
|
53158
|
+
};
|
|
53159
|
+
theme: {
|
|
53160
|
+
type: string;
|
|
53161
|
+
enum: string[];
|
|
53162
|
+
};
|
|
53163
|
+
width: {
|
|
53164
|
+
type: string;
|
|
53165
|
+
};
|
|
53166
|
+
height: {
|
|
53167
|
+
type: string;
|
|
53168
|
+
};
|
|
53169
|
+
relativeHeight: {
|
|
53170
|
+
type: string;
|
|
53171
|
+
};
|
|
53172
|
+
minHeight: {
|
|
53173
|
+
type: string;
|
|
53174
|
+
};
|
|
53175
|
+
resetSelectionOnDoubleClick: {
|
|
53176
|
+
type: string;
|
|
53177
|
+
};
|
|
53178
|
+
};
|
|
53179
|
+
} | {
|
|
53180
|
+
type: string;
|
|
53181
|
+
properties: {
|
|
53182
|
+
styles: {
|
|
53183
|
+
type: string;
|
|
53184
|
+
};
|
|
53185
|
+
classNames: {
|
|
53186
|
+
type: string;
|
|
53187
|
+
};
|
|
53188
|
+
detailsOnClick: {
|
|
53189
|
+
type: string;
|
|
53190
|
+
};
|
|
53191
|
+
ariaLabel: {
|
|
53192
|
+
type: string;
|
|
53193
|
+
};
|
|
53194
|
+
colors: {
|
|
53195
|
+
type: string;
|
|
53196
|
+
items: {
|
|
53197
|
+
type: string;
|
|
53198
|
+
};
|
|
53199
|
+
};
|
|
53200
|
+
refValues: {
|
|
53201
|
+
type: string;
|
|
53202
|
+
items: {
|
|
53203
|
+
properties: {
|
|
53204
|
+
color: {
|
|
53205
|
+
type: string;
|
|
53206
|
+
};
|
|
53207
|
+
text: {
|
|
53208
|
+
type: string;
|
|
53209
|
+
};
|
|
53210
|
+
value: {
|
|
53211
|
+
type: string;
|
|
53212
|
+
};
|
|
53213
|
+
styles: {
|
|
53214
|
+
type: string;
|
|
53215
|
+
properties: {
|
|
53216
|
+
line: {
|
|
53217
|
+
type: string;
|
|
53218
|
+
};
|
|
53219
|
+
text: {
|
|
53220
|
+
type: string;
|
|
53221
|
+
};
|
|
53222
|
+
};
|
|
53223
|
+
};
|
|
53224
|
+
classNames: {
|
|
53225
|
+
type: string;
|
|
53226
|
+
properties: {
|
|
53227
|
+
line: {
|
|
53228
|
+
type: string;
|
|
53229
|
+
};
|
|
53230
|
+
text: {
|
|
53231
|
+
type: string;
|
|
53232
|
+
};
|
|
53233
|
+
};
|
|
53234
|
+
};
|
|
53235
|
+
};
|
|
53236
|
+
type: string;
|
|
53237
|
+
required: string[];
|
|
53238
|
+
};
|
|
53239
|
+
};
|
|
53240
|
+
labelOrder: {
|
|
53241
|
+
type: string;
|
|
53242
|
+
items: {
|
|
53243
|
+
type: string;
|
|
53244
|
+
};
|
|
53245
|
+
};
|
|
53246
|
+
orientation: {
|
|
53247
|
+
type: string;
|
|
53248
|
+
enum: string[];
|
|
53249
|
+
};
|
|
53250
|
+
graphTitle: {
|
|
53251
|
+
type: string;
|
|
53252
|
+
};
|
|
53253
|
+
graphDescription: {
|
|
53254
|
+
type: string;
|
|
53255
|
+
};
|
|
53256
|
+
footNote: {
|
|
53257
|
+
type: string;
|
|
53258
|
+
};
|
|
53259
|
+
width: {
|
|
53260
|
+
type: string;
|
|
53261
|
+
};
|
|
53262
|
+
height: {
|
|
52139
53263
|
type: string;
|
|
52140
53264
|
};
|
|
52141
53265
|
suffix: {
|
|
@@ -53990,7 +55114,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
53990
55114
|
highlightedLines: {
|
|
53991
55115
|
type: string;
|
|
53992
55116
|
items: {
|
|
53993
|
-
|
|
55117
|
+
oneOf: {
|
|
55118
|
+
type: string;
|
|
55119
|
+
}[];
|
|
53994
55120
|
};
|
|
53995
55121
|
};
|
|
53996
55122
|
graphDownload: {
|
|
@@ -54552,8 +55678,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
54552
55678
|
colorLegendTitle: {
|
|
54553
55679
|
type: string;
|
|
54554
55680
|
};
|
|
54555
|
-
|
|
55681
|
+
scaleType: {
|
|
54556
55682
|
type: string;
|
|
55683
|
+
enum: string[];
|
|
54557
55684
|
};
|
|
54558
55685
|
scale: {
|
|
54559
55686
|
type: string;
|
|
@@ -58962,33 +60089,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
58962
60089
|
detailsOnClick: {
|
|
58963
60090
|
type: string;
|
|
58964
60091
|
};
|
|
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
60092
|
topMargin: {
|
|
58987
60093
|
type: string;
|
|
58988
60094
|
};
|
|
58989
60095
|
bottomMargin: {
|
|
58990
60096
|
type: string;
|
|
58991
60097
|
};
|
|
60098
|
+
leftMargin: {
|
|
60099
|
+
type: string;
|
|
60100
|
+
};
|
|
60101
|
+
rightMargin: {
|
|
60102
|
+
type: string;
|
|
60103
|
+
};
|
|
58992
60104
|
ariaLabel: {
|
|
58993
60105
|
type: string;
|
|
58994
60106
|
};
|
|
@@ -59009,12 +60121,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
59009
60121
|
graphTitle: {
|
|
59010
60122
|
type: string;
|
|
59011
60123
|
};
|
|
59012
|
-
suffix: {
|
|
59013
|
-
type: string;
|
|
59014
|
-
};
|
|
59015
|
-
prefix: {
|
|
59016
|
-
type: string;
|
|
59017
|
-
};
|
|
59018
60124
|
sources: {
|
|
59019
60125
|
type: string;
|
|
59020
60126
|
items: {
|
|
@@ -59033,9 +60139,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
59033
60139
|
graphDescription: {
|
|
59034
60140
|
type: string;
|
|
59035
60141
|
};
|
|
59036
|
-
subNote: {
|
|
59037
|
-
type: string;
|
|
59038
|
-
};
|
|
59039
60142
|
footNote: {
|
|
59040
60143
|
type: string;
|
|
59041
60144
|
};
|
|
@@ -59045,6 +60148,18 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
59045
60148
|
strokeWidth: {
|
|
59046
60149
|
type: string;
|
|
59047
60150
|
};
|
|
60151
|
+
showNAColor: {
|
|
60152
|
+
type: string;
|
|
60153
|
+
};
|
|
60154
|
+
showValues: {
|
|
60155
|
+
type: string;
|
|
60156
|
+
};
|
|
60157
|
+
showDots: {
|
|
60158
|
+
type: string;
|
|
60159
|
+
};
|
|
60160
|
+
fillShape: {
|
|
60161
|
+
type: string;
|
|
60162
|
+
};
|
|
59048
60163
|
showColorScale: {
|
|
59049
60164
|
type: string;
|
|
59050
60165
|
};
|
|
@@ -59053,6 +60168,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
59053
60168
|
type: string;
|
|
59054
60169
|
}[];
|
|
59055
60170
|
};
|
|
60171
|
+
colorLegendTitle: {
|
|
60172
|
+
type: string;
|
|
60173
|
+
};
|
|
59056
60174
|
padding: {
|
|
59057
60175
|
type: string;
|
|
59058
60176
|
};
|
|
@@ -59074,7 +60192,180 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
59074
60192
|
type: string;
|
|
59075
60193
|
};
|
|
59076
60194
|
};
|
|
59077
|
-
|
|
60195
|
+
axisLabels: {
|
|
60196
|
+
type: string;
|
|
60197
|
+
items: {
|
|
60198
|
+
oneOf: {
|
|
60199
|
+
type: string;
|
|
60200
|
+
}[];
|
|
60201
|
+
};
|
|
60202
|
+
};
|
|
60203
|
+
curveType: {
|
|
60204
|
+
type: string;
|
|
60205
|
+
enum: string[];
|
|
60206
|
+
};
|
|
60207
|
+
highlightedLines: {
|
|
60208
|
+
type: string;
|
|
60209
|
+
items: {
|
|
60210
|
+
oneOf: {
|
|
60211
|
+
type: string;
|
|
60212
|
+
}[];
|
|
60213
|
+
};
|
|
60214
|
+
};
|
|
60215
|
+
noOfTicks: {
|
|
60216
|
+
type: string;
|
|
60217
|
+
};
|
|
60218
|
+
maxValue: {
|
|
60219
|
+
type: string;
|
|
60220
|
+
};
|
|
60221
|
+
minValue: {
|
|
60222
|
+
type: string;
|
|
60223
|
+
};
|
|
60224
|
+
language: {
|
|
60225
|
+
type: string;
|
|
60226
|
+
enum: string[];
|
|
60227
|
+
};
|
|
60228
|
+
theme: {
|
|
60229
|
+
type: string;
|
|
60230
|
+
enum: string[];
|
|
60231
|
+
};
|
|
60232
|
+
width: {
|
|
60233
|
+
type: string;
|
|
60234
|
+
};
|
|
60235
|
+
height: {
|
|
60236
|
+
type: string;
|
|
60237
|
+
};
|
|
60238
|
+
relativeHeight: {
|
|
60239
|
+
type: string;
|
|
60240
|
+
};
|
|
60241
|
+
minHeight: {
|
|
60242
|
+
type: string;
|
|
60243
|
+
};
|
|
60244
|
+
resetSelectionOnDoubleClick: {
|
|
60245
|
+
type: string;
|
|
60246
|
+
};
|
|
60247
|
+
};
|
|
60248
|
+
required: string[];
|
|
60249
|
+
} | {
|
|
60250
|
+
type: string;
|
|
60251
|
+
properties: {
|
|
60252
|
+
styles: {
|
|
60253
|
+
type: string;
|
|
60254
|
+
};
|
|
60255
|
+
classNames: {
|
|
60256
|
+
type: string;
|
|
60257
|
+
};
|
|
60258
|
+
detailsOnClick: {
|
|
60259
|
+
type: string;
|
|
60260
|
+
};
|
|
60261
|
+
mainText: {
|
|
60262
|
+
oneOf: ({
|
|
60263
|
+
type: string;
|
|
60264
|
+
properties?: undefined;
|
|
60265
|
+
required?: undefined;
|
|
60266
|
+
} | {
|
|
60267
|
+
type: string;
|
|
60268
|
+
properties: {
|
|
60269
|
+
label: {
|
|
60270
|
+
type: string;
|
|
60271
|
+
};
|
|
60272
|
+
suffix: {
|
|
60273
|
+
type: string;
|
|
60274
|
+
};
|
|
60275
|
+
prefix: {
|
|
60276
|
+
type: string;
|
|
60277
|
+
};
|
|
60278
|
+
};
|
|
60279
|
+
required: string[];
|
|
60280
|
+
})[];
|
|
60281
|
+
};
|
|
60282
|
+
topMargin: {
|
|
60283
|
+
type: string;
|
|
60284
|
+
};
|
|
60285
|
+
bottomMargin: {
|
|
60286
|
+
type: string;
|
|
60287
|
+
};
|
|
60288
|
+
ariaLabel: {
|
|
60289
|
+
type: string;
|
|
60290
|
+
};
|
|
60291
|
+
legendMaxWidth: {
|
|
60292
|
+
type: string;
|
|
60293
|
+
};
|
|
60294
|
+
colors: {
|
|
60295
|
+
type: string;
|
|
60296
|
+
items: {
|
|
60297
|
+
type: string;
|
|
60298
|
+
};
|
|
60299
|
+
};
|
|
60300
|
+
graphTitle: {
|
|
60301
|
+
type: string;
|
|
60302
|
+
};
|
|
60303
|
+
suffix: {
|
|
60304
|
+
type: string;
|
|
60305
|
+
};
|
|
60306
|
+
prefix: {
|
|
60307
|
+
type: string;
|
|
60308
|
+
};
|
|
60309
|
+
sources: {
|
|
60310
|
+
type: string;
|
|
60311
|
+
items: {
|
|
60312
|
+
type: string;
|
|
60313
|
+
properties: {
|
|
60314
|
+
source: {
|
|
60315
|
+
type: string;
|
|
60316
|
+
};
|
|
60317
|
+
link: {
|
|
60318
|
+
type: string;
|
|
60319
|
+
};
|
|
60320
|
+
};
|
|
60321
|
+
required: string[];
|
|
60322
|
+
};
|
|
60323
|
+
};
|
|
60324
|
+
graphDescription: {
|
|
60325
|
+
type: string;
|
|
60326
|
+
};
|
|
60327
|
+
subNote: {
|
|
60328
|
+
type: string;
|
|
60329
|
+
};
|
|
60330
|
+
footNote: {
|
|
60331
|
+
type: string;
|
|
60332
|
+
};
|
|
60333
|
+
radius: {
|
|
60334
|
+
type: string;
|
|
60335
|
+
};
|
|
60336
|
+
strokeWidth: {
|
|
60337
|
+
type: string;
|
|
60338
|
+
};
|
|
60339
|
+
showColorScale: {
|
|
60340
|
+
type: string;
|
|
60341
|
+
};
|
|
60342
|
+
backgroundColor: {
|
|
60343
|
+
oneOf: {
|
|
60344
|
+
type: string;
|
|
60345
|
+
}[];
|
|
60346
|
+
};
|
|
60347
|
+
padding: {
|
|
60348
|
+
type: string;
|
|
60349
|
+
};
|
|
60350
|
+
tooltip: {
|
|
60351
|
+
type: string;
|
|
60352
|
+
};
|
|
60353
|
+
graphID: {
|
|
60354
|
+
type: string;
|
|
60355
|
+
};
|
|
60356
|
+
graphDownload: {
|
|
60357
|
+
type: string;
|
|
60358
|
+
};
|
|
60359
|
+
dataDownload: {
|
|
60360
|
+
type: string;
|
|
60361
|
+
};
|
|
60362
|
+
colorDomain: {
|
|
60363
|
+
type: string;
|
|
60364
|
+
items: {
|
|
60365
|
+
type: string;
|
|
60366
|
+
};
|
|
60367
|
+
};
|
|
60368
|
+
sortData: {
|
|
59078
60369
|
type: string;
|
|
59079
60370
|
enum: string[];
|
|
59080
60371
|
};
|
|
@@ -61040,7 +62331,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
61040
62331
|
highlightedLines: {
|
|
61041
62332
|
type: string;
|
|
61042
62333
|
items: {
|
|
61043
|
-
|
|
62334
|
+
oneOf: {
|
|
62335
|
+
type: string;
|
|
62336
|
+
}[];
|
|
61044
62337
|
};
|
|
61045
62338
|
};
|
|
61046
62339
|
graphDownload: {
|
|
@@ -61602,8 +62895,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
61602
62895
|
colorLegendTitle: {
|
|
61603
62896
|
type: string;
|
|
61604
62897
|
};
|
|
61605
|
-
|
|
62898
|
+
scaleType: {
|
|
61606
62899
|
type: string;
|
|
62900
|
+
enum: string[];
|
|
61607
62901
|
};
|
|
61608
62902
|
scale: {
|
|
61609
62903
|
type: string;
|
|
@@ -64736,9 +66030,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
64736
66030
|
bottomMargin: {
|
|
64737
66031
|
type: string;
|
|
64738
66032
|
};
|
|
64739
|
-
categorical: {
|
|
64740
|
-
type: string;
|
|
64741
|
-
};
|
|
64742
66033
|
center: {
|
|
64743
66034
|
items: {
|
|
64744
66035
|
type: string;
|
|
@@ -65723,6 +67014,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
65723
67014
|
showDots: {
|
|
65724
67015
|
type: string;
|
|
65725
67016
|
};
|
|
67017
|
+
fillShape: {
|
|
67018
|
+
type: string;
|
|
67019
|
+
};
|
|
67020
|
+
colorScaleMaxWidth: {
|
|
67021
|
+
type: string;
|
|
67022
|
+
};
|
|
67023
|
+
axisLabels: {
|
|
67024
|
+
type: string;
|
|
67025
|
+
items: {
|
|
67026
|
+
type: string;
|
|
67027
|
+
};
|
|
67028
|
+
minItems: number;
|
|
67029
|
+
};
|
|
65726
67030
|
};
|
|
65727
67031
|
type: string;
|
|
65728
67032
|
};
|
|
@@ -66012,9 +67316,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
66012
67316
|
bottomMargin: {
|
|
66013
67317
|
type: string;
|
|
66014
67318
|
};
|
|
66015
|
-
categorical: {
|
|
66016
|
-
type: string;
|
|
66017
|
-
};
|
|
66018
67319
|
center: {
|
|
66019
67320
|
items: {
|
|
66020
67321
|
type: string;
|
|
@@ -66999,6 +68300,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
66999
68300
|
showDots: {
|
|
67000
68301
|
type: string;
|
|
67001
68302
|
};
|
|
68303
|
+
fillShape: {
|
|
68304
|
+
type: string;
|
|
68305
|
+
};
|
|
68306
|
+
colorScaleMaxWidth: {
|
|
68307
|
+
type: string;
|
|
68308
|
+
};
|
|
68309
|
+
axisLabels: {
|
|
68310
|
+
type: string;
|
|
68311
|
+
items: {
|
|
68312
|
+
type: string;
|
|
68313
|
+
};
|
|
68314
|
+
minItems: number;
|
|
68315
|
+
};
|
|
67002
68316
|
};
|
|
67003
68317
|
type: string;
|
|
67004
68318
|
};
|
|
@@ -67266,9 +68580,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
67266
68580
|
bottomMargin: {
|
|
67267
68581
|
type: string;
|
|
67268
68582
|
};
|
|
67269
|
-
categorical: {
|
|
67270
|
-
type: string;
|
|
67271
|
-
};
|
|
67272
68583
|
center: {
|
|
67273
68584
|
items: {
|
|
67274
68585
|
type: string;
|
|
@@ -68253,6 +69564,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
68253
69564
|
showDots: {
|
|
68254
69565
|
type: string;
|
|
68255
69566
|
};
|
|
69567
|
+
fillShape: {
|
|
69568
|
+
type: string;
|
|
69569
|
+
};
|
|
69570
|
+
colorScaleMaxWidth: {
|
|
69571
|
+
type: string;
|
|
69572
|
+
};
|
|
69573
|
+
axisLabels: {
|
|
69574
|
+
type: string;
|
|
69575
|
+
items: {
|
|
69576
|
+
type: string;
|
|
69577
|
+
};
|
|
69578
|
+
minItems: number;
|
|
69579
|
+
};
|
|
68256
69580
|
};
|
|
68257
69581
|
type: string;
|
|
68258
69582
|
};
|
|
@@ -69995,6 +71319,175 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
69995
71319
|
};
|
|
69996
71320
|
};
|
|
69997
71321
|
required: string[];
|
|
71322
|
+
} | {
|
|
71323
|
+
type: string;
|
|
71324
|
+
properties: {
|
|
71325
|
+
styles: {
|
|
71326
|
+
type: string;
|
|
71327
|
+
};
|
|
71328
|
+
classNames: {
|
|
71329
|
+
type: string;
|
|
71330
|
+
};
|
|
71331
|
+
detailsOnClick: {
|
|
71332
|
+
type: string;
|
|
71333
|
+
};
|
|
71334
|
+
topMargin: {
|
|
71335
|
+
type: string;
|
|
71336
|
+
};
|
|
71337
|
+
bottomMargin: {
|
|
71338
|
+
type: string;
|
|
71339
|
+
};
|
|
71340
|
+
leftMargin: {
|
|
71341
|
+
type: string;
|
|
71342
|
+
};
|
|
71343
|
+
rightMargin: {
|
|
71344
|
+
type: string;
|
|
71345
|
+
};
|
|
71346
|
+
ariaLabel: {
|
|
71347
|
+
type: string;
|
|
71348
|
+
};
|
|
71349
|
+
legendMaxWidth: {
|
|
71350
|
+
type: string;
|
|
71351
|
+
};
|
|
71352
|
+
colors: {
|
|
71353
|
+
oneOf: ({
|
|
71354
|
+
type: string;
|
|
71355
|
+
items?: undefined;
|
|
71356
|
+
} | {
|
|
71357
|
+
type: string;
|
|
71358
|
+
items: {
|
|
71359
|
+
type: string;
|
|
71360
|
+
};
|
|
71361
|
+
})[];
|
|
71362
|
+
};
|
|
71363
|
+
graphTitle: {
|
|
71364
|
+
type: string;
|
|
71365
|
+
};
|
|
71366
|
+
sources: {
|
|
71367
|
+
type: string;
|
|
71368
|
+
items: {
|
|
71369
|
+
type: string;
|
|
71370
|
+
properties: {
|
|
71371
|
+
source: {
|
|
71372
|
+
type: string;
|
|
71373
|
+
};
|
|
71374
|
+
link: {
|
|
71375
|
+
type: string;
|
|
71376
|
+
};
|
|
71377
|
+
};
|
|
71378
|
+
required: string[];
|
|
71379
|
+
};
|
|
71380
|
+
};
|
|
71381
|
+
graphDescription: {
|
|
71382
|
+
type: string;
|
|
71383
|
+
};
|
|
71384
|
+
footNote: {
|
|
71385
|
+
type: string;
|
|
71386
|
+
};
|
|
71387
|
+
radius: {
|
|
71388
|
+
type: string;
|
|
71389
|
+
};
|
|
71390
|
+
strokeWidth: {
|
|
71391
|
+
type: string;
|
|
71392
|
+
};
|
|
71393
|
+
showNAColor: {
|
|
71394
|
+
type: string;
|
|
71395
|
+
};
|
|
71396
|
+
showValues: {
|
|
71397
|
+
type: string;
|
|
71398
|
+
};
|
|
71399
|
+
showDots: {
|
|
71400
|
+
type: string;
|
|
71401
|
+
};
|
|
71402
|
+
fillShape: {
|
|
71403
|
+
type: string;
|
|
71404
|
+
};
|
|
71405
|
+
showColorScale: {
|
|
71406
|
+
type: string;
|
|
71407
|
+
};
|
|
71408
|
+
backgroundColor: {
|
|
71409
|
+
oneOf: {
|
|
71410
|
+
type: string;
|
|
71411
|
+
}[];
|
|
71412
|
+
};
|
|
71413
|
+
colorLegendTitle: {
|
|
71414
|
+
type: string;
|
|
71415
|
+
};
|
|
71416
|
+
padding: {
|
|
71417
|
+
type: string;
|
|
71418
|
+
};
|
|
71419
|
+
tooltip: {
|
|
71420
|
+
type: string;
|
|
71421
|
+
};
|
|
71422
|
+
graphID: {
|
|
71423
|
+
type: string;
|
|
71424
|
+
};
|
|
71425
|
+
graphDownload: {
|
|
71426
|
+
type: string;
|
|
71427
|
+
};
|
|
71428
|
+
dataDownload: {
|
|
71429
|
+
type: string;
|
|
71430
|
+
};
|
|
71431
|
+
colorDomain: {
|
|
71432
|
+
type: string;
|
|
71433
|
+
items: {
|
|
71434
|
+
type: string;
|
|
71435
|
+
};
|
|
71436
|
+
};
|
|
71437
|
+
axisLabels: {
|
|
71438
|
+
type: string;
|
|
71439
|
+
items: {
|
|
71440
|
+
oneOf: {
|
|
71441
|
+
type: string;
|
|
71442
|
+
}[];
|
|
71443
|
+
};
|
|
71444
|
+
};
|
|
71445
|
+
curveType: {
|
|
71446
|
+
type: string;
|
|
71447
|
+
enum: string[];
|
|
71448
|
+
};
|
|
71449
|
+
highlightedLines: {
|
|
71450
|
+
type: string;
|
|
71451
|
+
items: {
|
|
71452
|
+
oneOf: {
|
|
71453
|
+
type: string;
|
|
71454
|
+
}[];
|
|
71455
|
+
};
|
|
71456
|
+
};
|
|
71457
|
+
noOfTicks: {
|
|
71458
|
+
type: string;
|
|
71459
|
+
};
|
|
71460
|
+
maxValue: {
|
|
71461
|
+
type: string;
|
|
71462
|
+
};
|
|
71463
|
+
minValue: {
|
|
71464
|
+
type: string;
|
|
71465
|
+
};
|
|
71466
|
+
language: {
|
|
71467
|
+
type: string;
|
|
71468
|
+
enum: string[];
|
|
71469
|
+
};
|
|
71470
|
+
theme: {
|
|
71471
|
+
type: string;
|
|
71472
|
+
enum: string[];
|
|
71473
|
+
};
|
|
71474
|
+
width: {
|
|
71475
|
+
type: string;
|
|
71476
|
+
};
|
|
71477
|
+
height: {
|
|
71478
|
+
type: string;
|
|
71479
|
+
};
|
|
71480
|
+
relativeHeight: {
|
|
71481
|
+
type: string;
|
|
71482
|
+
};
|
|
71483
|
+
minHeight: {
|
|
71484
|
+
type: string;
|
|
71485
|
+
};
|
|
71486
|
+
resetSelectionOnDoubleClick: {
|
|
71487
|
+
type: string;
|
|
71488
|
+
};
|
|
71489
|
+
};
|
|
71490
|
+
required: string[];
|
|
69998
71491
|
} | {
|
|
69999
71492
|
type: string;
|
|
70000
71493
|
properties: {
|
|
@@ -70041,15 +71534,10 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
70041
71534
|
type: string;
|
|
70042
71535
|
};
|
|
70043
71536
|
colors: {
|
|
70044
|
-
|
|
70045
|
-
|
|
70046
|
-
items?: undefined;
|
|
70047
|
-
} | {
|
|
71537
|
+
type: string;
|
|
71538
|
+
items: {
|
|
70048
71539
|
type: string;
|
|
70049
|
-
|
|
70050
|
-
type: string;
|
|
70051
|
-
};
|
|
70052
|
-
})[];
|
|
71540
|
+
};
|
|
70053
71541
|
};
|
|
70054
71542
|
graphTitle: {
|
|
70055
71543
|
type: string;
|
|
@@ -72085,7 +73573,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
72085
73573
|
highlightedLines: {
|
|
72086
73574
|
type: string;
|
|
72087
73575
|
items: {
|
|
72088
|
-
|
|
73576
|
+
oneOf: {
|
|
73577
|
+
type: string;
|
|
73578
|
+
}[];
|
|
72089
73579
|
};
|
|
72090
73580
|
};
|
|
72091
73581
|
graphDownload: {
|
|
@@ -72647,8 +74137,9 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
72647
74137
|
colorLegendTitle: {
|
|
72648
74138
|
type: string;
|
|
72649
74139
|
};
|
|
72650
|
-
|
|
74140
|
+
scaleType: {
|
|
72651
74141
|
type: string;
|
|
74142
|
+
enum: string[];
|
|
72652
74143
|
};
|
|
72653
74144
|
scale: {
|
|
72654
74145
|
type: string;
|
|
@@ -75823,9 +77314,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
75823
77314
|
bottomMargin: {
|
|
75824
77315
|
type: string;
|
|
75825
77316
|
};
|
|
75826
|
-
categorical: {
|
|
75827
|
-
type: string;
|
|
75828
|
-
};
|
|
75829
77317
|
center: {
|
|
75830
77318
|
items: {
|
|
75831
77319
|
type: string;
|
|
@@ -76810,6 +78298,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
76810
78298
|
showDots: {
|
|
76811
78299
|
type: string;
|
|
76812
78300
|
};
|
|
78301
|
+
fillShape: {
|
|
78302
|
+
type: string;
|
|
78303
|
+
};
|
|
78304
|
+
colorScaleMaxWidth: {
|
|
78305
|
+
type: string;
|
|
78306
|
+
};
|
|
78307
|
+
axisLabels: {
|
|
78308
|
+
type: string;
|
|
78309
|
+
items: {
|
|
78310
|
+
type: string;
|
|
78311
|
+
};
|
|
78312
|
+
minItems: number;
|
|
78313
|
+
};
|
|
76813
78314
|
};
|
|
76814
78315
|
type: string;
|
|
76815
78316
|
};
|
|
@@ -77099,9 +78600,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
77099
78600
|
bottomMargin: {
|
|
77100
78601
|
type: string;
|
|
77101
78602
|
};
|
|
77102
|
-
categorical: {
|
|
77103
|
-
type: string;
|
|
77104
|
-
};
|
|
77105
78603
|
center: {
|
|
77106
78604
|
items: {
|
|
77107
78605
|
type: string;
|
|
@@ -78086,6 +79584,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
78086
79584
|
showDots: {
|
|
78087
79585
|
type: string;
|
|
78088
79586
|
};
|
|
79587
|
+
fillShape: {
|
|
79588
|
+
type: string;
|
|
79589
|
+
};
|
|
79590
|
+
colorScaleMaxWidth: {
|
|
79591
|
+
type: string;
|
|
79592
|
+
};
|
|
79593
|
+
axisLabels: {
|
|
79594
|
+
type: string;
|
|
79595
|
+
items: {
|
|
79596
|
+
type: string;
|
|
79597
|
+
};
|
|
79598
|
+
minItems: number;
|
|
79599
|
+
};
|
|
78089
79600
|
};
|
|
78090
79601
|
type: string;
|
|
78091
79602
|
};
|
|
@@ -78353,9 +79864,6 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
78353
79864
|
bottomMargin: {
|
|
78354
79865
|
type: string;
|
|
78355
79866
|
};
|
|
78356
|
-
categorical: {
|
|
78357
|
-
type: string;
|
|
78358
|
-
};
|
|
78359
79867
|
center: {
|
|
78360
79868
|
items: {
|
|
78361
79869
|
type: string;
|
|
@@ -79340,6 +80848,19 @@ export declare const getSingleGraphJSONSchema: (columnList?: string[], graphType
|
|
|
79340
80848
|
showDots: {
|
|
79341
80849
|
type: string;
|
|
79342
80850
|
};
|
|
80851
|
+
fillShape: {
|
|
80852
|
+
type: string;
|
|
80853
|
+
};
|
|
80854
|
+
colorScaleMaxWidth: {
|
|
80855
|
+
type: string;
|
|
80856
|
+
};
|
|
80857
|
+
axisLabels: {
|
|
80858
|
+
type: string;
|
|
80859
|
+
items: {
|
|
80860
|
+
type: string;
|
|
80861
|
+
};
|
|
80862
|
+
minItems: number;
|
|
80863
|
+
};
|
|
79343
80864
|
};
|
|
79344
80865
|
type: string;
|
|
79345
80866
|
};
|
|
@@ -79439,11 +80960,11 @@ declare interface GraphConfigurationDataType {
|
|
|
79439
80960
|
chartConfigId: string;
|
|
79440
80961
|
}
|
|
79441
80962
|
|
|
79442
|
-
export declare function GraphDescription(props:
|
|
80963
|
+
export declare function GraphDescription(props: Props_62): JSX_2.Element;
|
|
79443
80964
|
|
|
79444
|
-
export declare function GraphFooter(props:
|
|
80965
|
+
export declare function GraphFooter(props: Props_59): JSX_2.Element | null;
|
|
79445
80966
|
|
|
79446
|
-
export declare function GraphHeader(props:
|
|
80967
|
+
export declare function GraphHeader(props: Props_60): JSX_2.Element;
|
|
79447
80968
|
|
|
79448
80969
|
export declare const GraphList: {
|
|
79449
80970
|
graphName: string;
|
|
@@ -79537,7 +81058,6 @@ declare interface GraphSettingsDataType {
|
|
|
79537
81058
|
highlightedIds?: string[];
|
|
79538
81059
|
mapProperty?: string;
|
|
79539
81060
|
showAntarctica?: boolean;
|
|
79540
|
-
categorical?: boolean;
|
|
79541
81061
|
mapStyles?: [string, string];
|
|
79542
81062
|
center?: [number, number];
|
|
79543
81063
|
zoomLevel?: number;
|
|
@@ -79672,19 +81192,22 @@ declare interface GraphSettingsDataType {
|
|
|
79672
81192
|
classNames?: ClassNameObject;
|
|
79673
81193
|
mapProjection?: 'mercator' | 'equalEarth' | 'naturalEarth' | 'orthographic' | 'albersUSA';
|
|
79674
81194
|
filterNA?: boolean;
|
|
81195
|
+
fillShape?: boolean;
|
|
81196
|
+
colorScaleMaxWidth?: string;
|
|
81197
|
+
axisLabels?: (string | number)[];
|
|
79675
81198
|
}
|
|
79676
81199
|
|
|
79677
|
-
export declare function GraphTitle(props:
|
|
81200
|
+
export declare function GraphTitle(props: Props_63): JSX_2.Element;
|
|
79678
81201
|
|
|
79679
81202
|
export declare type GraphType = GraphTypeForGriddedGraph | GeoHubGraphType;
|
|
79680
81203
|
|
|
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';
|
|
81204
|
+
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
81205
|
|
|
79683
81206
|
export declare function GriddedGraph(div: Element, config: any): void;
|
|
79684
81207
|
|
|
79685
|
-
export declare function GriddedGraphs(props:
|
|
81208
|
+
export declare function GriddedGraphs(props: Props_38): JSX_2.Element;
|
|
79686
81209
|
|
|
79687
|
-
export declare function GriddedGraphsFromConfig(props:
|
|
81210
|
+
export declare function GriddedGraphsFromConfig(props: Props_42): JSX_2.Element;
|
|
79688
81211
|
|
|
79689
81212
|
declare interface GroupedBarChartProps {
|
|
79690
81213
|
/** Array of data objects */
|
|
@@ -79958,11 +81481,11 @@ declare interface HistogramDataType {
|
|
|
79958
81481
|
*/
|
|
79959
81482
|
export declare function imageDownload(node: HTMLElement, filename: string): void;
|
|
79960
81483
|
|
|
79961
|
-
export declare function ImageDownloadButton(props:
|
|
81484
|
+
export declare function ImageDownloadButton(props: Props_51): JSX_2.Element;
|
|
79962
81485
|
|
|
79963
81486
|
declare type Languages = 'en' | 'ar' | 'az' | 'bn' | 'cy' | 'he' | 'hi' | 'jp' | 'ka' | 'km' | 'ko' | 'my' | 'ne' | 'zh' | 'custom';
|
|
79964
81487
|
|
|
79965
|
-
export declare function LinearColorLegend(props:
|
|
81488
|
+
export declare function LinearColorLegend(props: Props_57): JSX_2.Element;
|
|
79966
81489
|
|
|
79967
81490
|
declare interface LineChartDataType {
|
|
79968
81491
|
date: number | string;
|
|
@@ -79980,13 +81503,13 @@ declare interface LineChartWithConfidenceIntervalDataType {
|
|
|
79980
81503
|
data?: object;
|
|
79981
81504
|
}
|
|
79982
81505
|
|
|
79983
|
-
export declare function MultiGraphDashboard(props:
|
|
81506
|
+
export declare function MultiGraphDashboard(props: Props_35): JSX_2.Element;
|
|
79984
81507
|
|
|
79985
|
-
export declare function MultiGraphDashboardFromConfig(props:
|
|
81508
|
+
export declare function MultiGraphDashboardFromConfig(props: Props_39): JSX_2.Element;
|
|
79986
81509
|
|
|
79987
|
-
export declare function MultiGraphDashboardWideToLongFormat(props:
|
|
81510
|
+
export declare function MultiGraphDashboardWideToLongFormat(props: Props_36): JSX_2.Element;
|
|
79988
81511
|
|
|
79989
|
-
export declare function MultiGraphDashboardWideToLongFormatFromConfig(props:
|
|
81512
|
+
export declare function MultiGraphDashboardWideToLongFormatFromConfig(props: Props_40): JSX_2.Element;
|
|
79990
81513
|
|
|
79991
81514
|
export declare function MultiLineAltChart(props: Props_10): JSX_2.Element;
|
|
79992
81515
|
|
|
@@ -80569,6 +82092,8 @@ declare interface Props_14 {
|
|
|
80569
82092
|
zoomTranslateExtend?: [[number, number], [number, number]];
|
|
80570
82093
|
/** Countries or regions to be highlighted */
|
|
80571
82094
|
highlightedIds?: string[];
|
|
82095
|
+
/** Scale for the colors in the cell */
|
|
82096
|
+
scaleType?: Exclude<ScaleDataType, 'linear'>;
|
|
80572
82097
|
/** Toggles if the color scaling is categorical or not */
|
|
80573
82098
|
categorical?: boolean;
|
|
80574
82099
|
/** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
|
|
@@ -82153,6 +83678,97 @@ declare interface Props_33 {
|
|
|
82153
83678
|
}
|
|
82154
83679
|
|
|
82155
83680
|
declare interface Props_34 {
|
|
83681
|
+
/** Array of data objects */
|
|
83682
|
+
data: RadarChartDataType[];
|
|
83683
|
+
/** Title of the graph */
|
|
83684
|
+
graphTitle?: string;
|
|
83685
|
+
/** Description of the graph */
|
|
83686
|
+
graphDescription?: string;
|
|
83687
|
+
/** Footnote for the graph */
|
|
83688
|
+
footNote?: string;
|
|
83689
|
+
/** Source data for the graph */
|
|
83690
|
+
sources?: SourcesDataType[];
|
|
83691
|
+
/** Accessibility label */
|
|
83692
|
+
ariaLabel?: string;
|
|
83693
|
+
/** Color or array of colors for each line */
|
|
83694
|
+
colors?: string | string[];
|
|
83695
|
+
/** Domain of colors for the graph */
|
|
83696
|
+
colorDomain?: string[];
|
|
83697
|
+
/** Title for the color legend */
|
|
83698
|
+
colorLegendTitle?: string;
|
|
83699
|
+
/** Background color of the graph */
|
|
83700
|
+
backgroundColor?: string | boolean;
|
|
83701
|
+
/** Custom styles for the graph. Each object should be a valid React CSS style object. */
|
|
83702
|
+
styles?: StyleObject;
|
|
83703
|
+
/** Custom class names */
|
|
83704
|
+
classNames?: ClassNameObject;
|
|
83705
|
+
/** Width of the graph */
|
|
83706
|
+
width?: number;
|
|
83707
|
+
/** Height of the graph */
|
|
83708
|
+
height?: number;
|
|
83709
|
+
/** Minimum height of the graph */
|
|
83710
|
+
minHeight?: number;
|
|
83711
|
+
/** Relative height scaling factor. This overwrites the height props */
|
|
83712
|
+
relativeHeight?: number;
|
|
83713
|
+
/** Padding around the graph. Defaults to 0 if no backgroundColor is mentioned else defaults to 1rem */
|
|
83714
|
+
padding?: string;
|
|
83715
|
+
/** Radius of the radar chart */
|
|
83716
|
+
radius?: number;
|
|
83717
|
+
/** Left margin of the graph */
|
|
83718
|
+
leftMargin?: number;
|
|
83719
|
+
/** Right margin of the graph */
|
|
83720
|
+
rightMargin?: number;
|
|
83721
|
+
/** Top margin of the graph */
|
|
83722
|
+
topMargin?: number;
|
|
83723
|
+
/** Bottom margin of the graph */
|
|
83724
|
+
bottomMargin?: number;
|
|
83725
|
+
/** Maximum value for the chart */
|
|
83726
|
+
maxValue?: number;
|
|
83727
|
+
/** Minimum value for the chart */
|
|
83728
|
+
minValue?: number;
|
|
83729
|
+
/** Toggle visibility of values */
|
|
83730
|
+
showValues?: boolean;
|
|
83731
|
+
/** Toggle visibility of dots on the line */
|
|
83732
|
+
showDots?: boolean;
|
|
83733
|
+
/** Stroke width of the line */
|
|
83734
|
+
strokeWidth?: number;
|
|
83735
|
+
/** Toggle is the shape is filled or not */
|
|
83736
|
+
fillShape?: boolean;
|
|
83737
|
+
/** No. of ticks on the x-axis */
|
|
83738
|
+
noOfTicks?: number;
|
|
83739
|
+
/** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
|
|
83740
|
+
showColorScale?: boolean;
|
|
83741
|
+
/** 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 */
|
|
83742
|
+
showNAColor?: boolean;
|
|
83743
|
+
/** Data points to highlight. Use the label value from data to highlight the data point */
|
|
83744
|
+
highlightedLines?: (string | number)[];
|
|
83745
|
+
/** Labels for the axes */
|
|
83746
|
+
axisLabels: (string | number)[];
|
|
83747
|
+
/** Curve type for the line */
|
|
83748
|
+
curveType?: 'linear' | 'curve';
|
|
83749
|
+
/** Reset selection on double-click. Only applicable when used in a dashboard context with filters. */
|
|
83750
|
+
resetSelectionOnDoubleClick?: boolean;
|
|
83751
|
+
/** Enable graph download option as png */
|
|
83752
|
+
graphDownload?: boolean;
|
|
83753
|
+
/** Enable data download option as a csv */
|
|
83754
|
+
dataDownload?: boolean;
|
|
83755
|
+
/** Tooltip content. This uses the [handlebar](../?path=/docs/misc-handlebars-templates-and-custom-helpers--docs) template to display the data */
|
|
83756
|
+
tooltip?: string;
|
|
83757
|
+
/** Details displayed on the modal when user clicks of a data point */
|
|
83758
|
+
detailsOnClick?: string;
|
|
83759
|
+
/** Callback for mouse over event */
|
|
83760
|
+
onSeriesMouseOver?: (_d: any) => void;
|
|
83761
|
+
/** Callback for mouse click event */
|
|
83762
|
+
onSeriesMouseClick?: (_d: any) => void;
|
|
83763
|
+
/** Language setting */
|
|
83764
|
+
language?: Languages;
|
|
83765
|
+
/** Color theme */
|
|
83766
|
+
theme?: 'light' | 'dark';
|
|
83767
|
+
/** Unique ID for the graph */
|
|
83768
|
+
graphID?: string;
|
|
83769
|
+
}
|
|
83770
|
+
|
|
83771
|
+
declare interface Props_35 {
|
|
82156
83772
|
dashboardID?: string;
|
|
82157
83773
|
dashboardLayout: DashboardLayoutDataType;
|
|
82158
83774
|
dataSettings: DataSettingsDataType;
|
|
@@ -82171,7 +83787,7 @@ declare interface Props_34 {
|
|
|
82171
83787
|
graphClassNames?: ClassNameObject;
|
|
82172
83788
|
}
|
|
82173
83789
|
|
|
82174
|
-
declare interface
|
|
83790
|
+
declare interface Props_36 {
|
|
82175
83791
|
dashboardID?: string;
|
|
82176
83792
|
dashboardLayout: DashboardFromWideToLongFormatLayoutDataType;
|
|
82177
83793
|
dataSettings: DataSettingsWideToLongDataType;
|
|
@@ -82187,7 +83803,7 @@ declare interface Props_35 {
|
|
|
82187
83803
|
graphClassNames?: ClassNameObject;
|
|
82188
83804
|
}
|
|
82189
83805
|
|
|
82190
|
-
declare interface
|
|
83806
|
+
declare interface Props_37 {
|
|
82191
83807
|
graphSettings?: GraphSettingsDataType;
|
|
82192
83808
|
readableHeader?: {
|
|
82193
83809
|
value: string;
|
|
@@ -82212,7 +83828,7 @@ declare interface Props_36 {
|
|
|
82212
83828
|
theme?: 'dark' | 'light';
|
|
82213
83829
|
}
|
|
82214
83830
|
|
|
82215
|
-
declare interface
|
|
83831
|
+
declare interface Props_38 {
|
|
82216
83832
|
noOfColumns?: number;
|
|
82217
83833
|
columnGridBy: string;
|
|
82218
83834
|
graphSettings?: GraphSettingsDataType;
|
|
@@ -82240,12 +83856,8 @@ declare interface Props_37 {
|
|
|
82240
83856
|
theme?: 'dark' | 'light';
|
|
82241
83857
|
}
|
|
82242
83858
|
|
|
82243
|
-
declare interface Props_38 {
|
|
82244
|
-
config: string | ConfigObject;
|
|
82245
|
-
}
|
|
82246
|
-
|
|
82247
83859
|
declare interface Props_39 {
|
|
82248
|
-
config: string |
|
|
83860
|
+
config: string | ConfigObject;
|
|
82249
83861
|
}
|
|
82250
83862
|
|
|
82251
83863
|
declare interface Props_4 {
|
|
@@ -82360,14 +83972,18 @@ declare interface Props_4 {
|
|
|
82360
83972
|
}
|
|
82361
83973
|
|
|
82362
83974
|
declare interface Props_40 {
|
|
82363
|
-
config: string |
|
|
83975
|
+
config: string | ConfigObject_2;
|
|
82364
83976
|
}
|
|
82365
83977
|
|
|
82366
83978
|
declare interface Props_41 {
|
|
82367
|
-
config: string |
|
|
83979
|
+
config: string | ConfigObject_3;
|
|
82368
83980
|
}
|
|
82369
83981
|
|
|
82370
83982
|
declare interface Props_42 {
|
|
83983
|
+
config: string | ConfigObject_4;
|
|
83984
|
+
}
|
|
83985
|
+
|
|
83986
|
+
declare interface Props_43 {
|
|
82371
83987
|
/** Array of data objects */
|
|
82372
83988
|
data: BarGraphWithDateDataType[];
|
|
82373
83989
|
/** Orientation of the graph */
|
|
@@ -82478,7 +84094,7 @@ declare interface Props_42 {
|
|
|
82478
84094
|
graphID?: string;
|
|
82479
84095
|
}
|
|
82480
84096
|
|
|
82481
|
-
declare interface
|
|
84097
|
+
declare interface Props_44 {
|
|
82482
84098
|
/** Array of data objects */
|
|
82483
84099
|
data: ButterflyChartWithDateDataType[];
|
|
82484
84100
|
/** Title of the graph */
|
|
@@ -82577,7 +84193,7 @@ declare interface Props_43 {
|
|
|
82577
84193
|
graphID?: string;
|
|
82578
84194
|
}
|
|
82579
84195
|
|
|
82580
|
-
declare interface
|
|
84196
|
+
declare interface Props_45 {
|
|
82581
84197
|
/** Array of data objects */
|
|
82582
84198
|
data: DumbbellChartWithDateDataType[];
|
|
82583
84199
|
/** Orientation of the graph */
|
|
@@ -82688,7 +84304,7 @@ declare interface Props_44 {
|
|
|
82688
84304
|
graphID?: string;
|
|
82689
84305
|
}
|
|
82690
84306
|
|
|
82691
|
-
declare interface
|
|
84307
|
+
declare interface Props_46 {
|
|
82692
84308
|
data: BivariateMapWithDateDataType[];
|
|
82693
84309
|
/** Title of the graph */
|
|
82694
84310
|
graphTitle?: string;
|
|
@@ -82782,7 +84398,7 @@ declare interface Props_45 {
|
|
|
82782
84398
|
graphID?: string;
|
|
82783
84399
|
}
|
|
82784
84400
|
|
|
82785
|
-
declare interface
|
|
84401
|
+
declare interface Props_47 {
|
|
82786
84402
|
/** Array of data objects */
|
|
82787
84403
|
data: ChoroplethMapWithDateDataType[];
|
|
82788
84404
|
/** Title of the graph */
|
|
@@ -82839,6 +84455,8 @@ declare interface Props_46 {
|
|
|
82839
84455
|
zoomTranslateExtend?: [[number, number], [number, number]];
|
|
82840
84456
|
/** Countries or regions to be highlighted */
|
|
82841
84457
|
highlightedIds?: string[];
|
|
84458
|
+
/** Scale for the colors in the cell */
|
|
84459
|
+
scaleType?: Exclude<ScaleDataType, 'linear'>;
|
|
82842
84460
|
/** Toggles if the color scaling is categorical or not */
|
|
82843
84461
|
categorical?: boolean;
|
|
82844
84462
|
/** Toggle visibility of color scale. This is only applicable if the data props hae color parameter */
|
|
@@ -82875,7 +84493,7 @@ declare interface Props_46 {
|
|
|
82875
84493
|
graphID?: string;
|
|
82876
84494
|
}
|
|
82877
84495
|
|
|
82878
|
-
declare interface
|
|
84496
|
+
declare interface Props_48 {
|
|
82879
84497
|
/** Array of data objects */
|
|
82880
84498
|
data: DotDensityMapWithDateDataType[];
|
|
82881
84499
|
/** Title of the graph */
|
|
@@ -82968,7 +84586,7 @@ declare interface Props_47 {
|
|
|
82968
84586
|
graphID?: string;
|
|
82969
84587
|
}
|
|
82970
84588
|
|
|
82971
|
-
declare interface
|
|
84589
|
+
declare interface Props_49 {
|
|
82972
84590
|
/** Array of data objects */
|
|
82973
84591
|
data: ScatterPlotWithDateDataType[];
|
|
82974
84592
|
/** Title of the graph */
|
|
@@ -83087,18 +84705,6 @@ declare interface Props_48 {
|
|
|
83087
84705
|
graphID?: string;
|
|
83088
84706
|
}
|
|
83089
84707
|
|
|
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
84708
|
declare interface Props_5 {
|
|
83103
84709
|
/** Array of data objects */
|
|
83104
84710
|
data: BeeSwarmChartDataType[];
|
|
@@ -83191,8 +84797,11 @@ declare interface Props_5 {
|
|
|
83191
84797
|
declare interface Props_50 {
|
|
83192
84798
|
buttonContent?: string | JSX.Element;
|
|
83193
84799
|
buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
|
|
83194
|
-
|
|
83195
|
-
|
|
84800
|
+
csvData: any;
|
|
84801
|
+
fileName?: string;
|
|
84802
|
+
headers: string[];
|
|
84803
|
+
xlsxHeader: any;
|
|
84804
|
+
wscols: WsColInterface[];
|
|
83196
84805
|
buttonSmall?: boolean;
|
|
83197
84806
|
className?: string;
|
|
83198
84807
|
}
|
|
@@ -83207,6 +84816,15 @@ declare interface Props_51 {
|
|
|
83207
84816
|
}
|
|
83208
84817
|
|
|
83209
84818
|
declare interface Props_52 {
|
|
84819
|
+
buttonContent?: string | JSX.Element;
|
|
84820
|
+
buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
|
|
84821
|
+
nodeID: string | HTMLElement;
|
|
84822
|
+
filename?: string;
|
|
84823
|
+
buttonSmall?: boolean;
|
|
84824
|
+
className?: string;
|
|
84825
|
+
}
|
|
84826
|
+
|
|
84827
|
+
declare interface Props_53 {
|
|
83210
84828
|
buttonContent?: string | JSX.Element;
|
|
83211
84829
|
buttonType?: 'primary' | 'primary-without-icon' | 'secondary' | 'secondary-without-icon' | 'tertiary';
|
|
83212
84830
|
csvData: any;
|
|
@@ -83217,7 +84835,7 @@ declare interface Props_52 {
|
|
|
83217
84835
|
className?: string;
|
|
83218
84836
|
}
|
|
83219
84837
|
|
|
83220
|
-
declare interface
|
|
84838
|
+
declare interface Props_54 {
|
|
83221
84839
|
text: string;
|
|
83222
84840
|
successMessage?: string;
|
|
83223
84841
|
buttonText?: string;
|
|
@@ -83225,7 +84843,7 @@ declare interface Props_53 {
|
|
|
83225
84843
|
className?: string;
|
|
83226
84844
|
}
|
|
83227
84845
|
|
|
83228
|
-
declare interface
|
|
84846
|
+
declare interface Props_55 {
|
|
83229
84847
|
colors: string[];
|
|
83230
84848
|
colorDomain: (string | number)[];
|
|
83231
84849
|
colorLegendTitle?: string;
|
|
@@ -83235,9 +84853,9 @@ declare interface Props_54 {
|
|
|
83235
84853
|
className?: string;
|
|
83236
84854
|
}
|
|
83237
84855
|
|
|
83238
|
-
declare interface
|
|
84856
|
+
declare interface Props_56 {
|
|
83239
84857
|
colors: string[];
|
|
83240
|
-
colorDomain: string[];
|
|
84858
|
+
colorDomain: (string | number)[];
|
|
83241
84859
|
colorLegendTitle?: string;
|
|
83242
84860
|
showNAColor: boolean;
|
|
83243
84861
|
setSelectedColor: (_d?: string) => void;
|
|
@@ -83246,7 +84864,7 @@ declare interface Props_55 {
|
|
|
83246
84864
|
className?: string;
|
|
83247
84865
|
}
|
|
83248
84866
|
|
|
83249
|
-
declare interface
|
|
84867
|
+
declare interface Props_57 {
|
|
83250
84868
|
colors: string[];
|
|
83251
84869
|
colorDomain: number[];
|
|
83252
84870
|
colorLegendTitle?: string;
|
|
@@ -83254,7 +84872,7 @@ declare interface Props_56 {
|
|
|
83254
84872
|
className?: string;
|
|
83255
84873
|
}
|
|
83256
84874
|
|
|
83257
|
-
declare interface
|
|
84875
|
+
declare interface Props_58 {
|
|
83258
84876
|
colors: string[];
|
|
83259
84877
|
colorDomain: number[];
|
|
83260
84878
|
colorLegendTitle?: string;
|
|
@@ -83265,7 +84883,7 @@ declare interface Props_57 {
|
|
|
83265
84883
|
showNAColor: boolean;
|
|
83266
84884
|
}
|
|
83267
84885
|
|
|
83268
|
-
declare interface
|
|
84886
|
+
declare interface Props_59 {
|
|
83269
84887
|
footNote?: string;
|
|
83270
84888
|
sources?: SourcesDataType[];
|
|
83271
84889
|
width?: number;
|
|
@@ -83279,23 +84897,6 @@ declare interface Props_58 {
|
|
|
83279
84897
|
};
|
|
83280
84898
|
}
|
|
83281
84899
|
|
|
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
84900
|
declare interface Props_6 {
|
|
83300
84901
|
/** Array of data objects */
|
|
83301
84902
|
data: DualAxisLineChartDataType[];
|
|
@@ -83386,18 +84987,35 @@ declare interface Props_6 {
|
|
|
83386
84987
|
}
|
|
83387
84988
|
|
|
83388
84989
|
declare interface Props_60 {
|
|
84990
|
+
graphTitle?: string;
|
|
84991
|
+
graphDescription?: string;
|
|
84992
|
+
width?: number;
|
|
84993
|
+
graphDownload?: HTMLDivElement | null;
|
|
84994
|
+
dataDownload?: any;
|
|
84995
|
+
isDashboard?: boolean;
|
|
84996
|
+
styles?: {
|
|
84997
|
+
title?: React.CSSProperties;
|
|
84998
|
+
description?: React.CSSProperties;
|
|
84999
|
+
};
|
|
85000
|
+
classNames?: {
|
|
85001
|
+
title?: string;
|
|
85002
|
+
description?: string;
|
|
85003
|
+
};
|
|
85004
|
+
}
|
|
85005
|
+
|
|
85006
|
+
declare interface Props_61 {
|
|
83389
85007
|
text: string;
|
|
83390
85008
|
style?: React.CSSProperties;
|
|
83391
85009
|
className?: string;
|
|
83392
85010
|
}
|
|
83393
85011
|
|
|
83394
|
-
declare interface
|
|
85012
|
+
declare interface Props_62 {
|
|
83395
85013
|
text: string;
|
|
83396
85014
|
style?: React.CSSProperties;
|
|
83397
85015
|
className?: string;
|
|
83398
85016
|
}
|
|
83399
85017
|
|
|
83400
|
-
declare interface
|
|
85018
|
+
declare interface Props_63 {
|
|
83401
85019
|
text: string;
|
|
83402
85020
|
isDashboard?: boolean;
|
|
83403
85021
|
style?: React.CSSProperties;
|
|
@@ -83713,6 +85331,15 @@ declare interface Props_9 {
|
|
|
83713
85331
|
graphID?: string;
|
|
83714
85332
|
}
|
|
83715
85333
|
|
|
85334
|
+
export declare function RadarChart(props: Props_34): JSX_2.Element;
|
|
85335
|
+
|
|
85336
|
+
declare interface RadarChartDataType {
|
|
85337
|
+
values: number[];
|
|
85338
|
+
label?: string | number;
|
|
85339
|
+
color?: string;
|
|
85340
|
+
data?: object;
|
|
85341
|
+
}
|
|
85342
|
+
|
|
83716
85343
|
declare interface ReferenceDataType {
|
|
83717
85344
|
value: number | null;
|
|
83718
85345
|
text: string;
|
|
@@ -83778,9 +85405,9 @@ export declare function SimpleBarGraph(props: Props): JSX_2.Element;
|
|
|
83778
85405
|
|
|
83779
85406
|
export declare function SimpleLineChart(props: Props_8): JSX_2.Element;
|
|
83780
85407
|
|
|
83781
|
-
export declare function SingleGraphDashboard(props:
|
|
85408
|
+
export declare function SingleGraphDashboard(props: Props_37): JSX_2.Element;
|
|
83782
85409
|
|
|
83783
|
-
export declare function SingleGraphDashboardFromConfig(props:
|
|
85410
|
+
export declare function SingleGraphDashboardFromConfig(props: Props_41): JSX_2.Element;
|
|
83784
85411
|
|
|
83785
85412
|
export declare function SlopeChart(props: Props_20): JSX_2.Element;
|
|
83786
85413
|
|
|
@@ -84064,9 +85691,9 @@ declare interface StyleObject {
|
|
|
84064
85691
|
*/
|
|
84065
85692
|
export declare function svgDownload(node: HTMLElement, filename: string): void;
|
|
84066
85693
|
|
|
84067
|
-
export declare function SVGDownloadButton(props:
|
|
85694
|
+
export declare function SVGDownloadButton(props: Props_52): JSX_2.Element;
|
|
84068
85695
|
|
|
84069
|
-
export declare function ThresholdColorLegendWithMouseOver(props:
|
|
85696
|
+
export declare function ThresholdColorLegendWithMouseOver(props: Props_58): JSX_2.Element;
|
|
84070
85697
|
|
|
84071
85698
|
/**
|
|
84072
85699
|
* Transforms specified columns of the CSV data into arrays, splitting the string values based on a delimiter.
|