@gooddata/sdk-code-schemas 11.46.0-alpha.4 → 11.46.0-alpha.6
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/esm/sdk-code-schemas.d.ts +442 -31
- package/esm/v1/metadata.d.ts +409 -18
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +22 -2
- package/esm/v1/schema.d.ts +20 -0
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
package/esm/v1/metadata.d.ts
CHANGED
|
@@ -624,17 +624,17 @@ export type RankingFilter = BOTTOM | TOP;
|
|
|
624
624
|
*/
|
|
625
625
|
export type MetricIdentifier4 = string;
|
|
626
626
|
/**
|
|
627
|
-
*
|
|
627
|
+
* A label identifier in the form of label/\{id\}.
|
|
628
628
|
*/
|
|
629
|
-
export type
|
|
629
|
+
export type LabelIdentifier11 = string;
|
|
630
630
|
/**
|
|
631
631
|
* Metric identifier to use for this filter.
|
|
632
632
|
*/
|
|
633
633
|
export type MetricIdentifier5 = string;
|
|
634
634
|
/**
|
|
635
|
-
*
|
|
635
|
+
* A label identifier in the form of label/\{id\}.
|
|
636
636
|
*/
|
|
637
|
-
export type
|
|
637
|
+
export type LabelIdentifier12 = string;
|
|
638
638
|
export type Filter6 = {
|
|
639
639
|
[k: string]: unknown;
|
|
640
640
|
};
|
|
@@ -646,7 +646,7 @@ export type CalculatedMetricFieldGuard = CalculatedMetricField | CalculatedMetri
|
|
|
646
646
|
/**
|
|
647
647
|
* A attribute identifier in the form of attribute/\{id\}.
|
|
648
648
|
*/
|
|
649
|
-
export type
|
|
649
|
+
export type AttributeIdentifier12 = string;
|
|
650
650
|
/**
|
|
651
651
|
* Attribute identifier to use for this field.
|
|
652
652
|
*/
|
|
@@ -654,7 +654,7 @@ export type FactIdentifier1 = string;
|
|
|
654
654
|
/**
|
|
655
655
|
* Attribute identifier to use for this field.
|
|
656
656
|
*/
|
|
657
|
-
export type
|
|
657
|
+
export type LabelIdentifier13 = string;
|
|
658
658
|
export type InlineMetricFieldGuard = InlineMetricField | InlineMetricFieldGuard1;
|
|
659
659
|
export type ArithmeticMetricFieldGuard = ArithmeticMetricField | ArithmeticMetricFieldGuard1;
|
|
660
660
|
export type PoPMetricFieldGuard = PoPMetricField | PoPMetricFieldGuard1;
|
|
@@ -664,20 +664,20 @@ export type Sort1 = AttributeSort;
|
|
|
664
664
|
/**
|
|
665
665
|
* A attribute identifier in the form of attribute/\{id\}.
|
|
666
666
|
*/
|
|
667
|
-
export type
|
|
667
|
+
export type AttributeIdentifier13 = string;
|
|
668
668
|
/**
|
|
669
669
|
* Local attribute or label to use in this sort.
|
|
670
670
|
*/
|
|
671
|
-
export type
|
|
671
|
+
export type LabelIdentifier14 = string;
|
|
672
672
|
export type Sort2 = MetricSort;
|
|
673
673
|
/**
|
|
674
674
|
* A attribute identifier in the form of attribute/\{id\}.
|
|
675
675
|
*/
|
|
676
|
-
export type
|
|
676
|
+
export type AttributeIdentifier14 = string;
|
|
677
677
|
/**
|
|
678
678
|
* Local attribute or label to use in this sort.
|
|
679
679
|
*/
|
|
680
|
-
export type
|
|
680
|
+
export type LabelIdentifier15 = string;
|
|
681
681
|
export type Sort3 = {
|
|
682
682
|
[k: string]: unknown;
|
|
683
683
|
};
|
|
@@ -2277,9 +2277,9 @@ export interface BOTTOM {
|
|
|
2277
2277
|
*/
|
|
2278
2278
|
using: MetricIdentifier4;
|
|
2279
2279
|
/**
|
|
2280
|
-
*
|
|
2280
|
+
* Label reference or local identifier to use for this filter.
|
|
2281
2281
|
*/
|
|
2282
|
-
attribute?:
|
|
2282
|
+
attribute?: LabelIdentifier11;
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Number of bottom N values to use in this filter.
|
|
2285
2285
|
*/
|
|
@@ -2300,9 +2300,9 @@ export interface TOP {
|
|
|
2300
2300
|
*/
|
|
2301
2301
|
using: MetricIdentifier5;
|
|
2302
2302
|
/**
|
|
2303
|
-
*
|
|
2303
|
+
* Label reference or local identifier to use for this filter.
|
|
2304
2304
|
*/
|
|
2305
|
-
attribute?:
|
|
2305
|
+
attribute?: LabelIdentifier12;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* Number of bottom N values to use in this filter.
|
|
2308
2308
|
*/
|
|
@@ -2357,7 +2357,7 @@ export interface CalculatedMetricField {
|
|
|
2357
2357
|
/**
|
|
2358
2358
|
* Attribute identifier to use for this field.
|
|
2359
2359
|
*/
|
|
2360
|
-
using: (
|
|
2360
|
+
using: (AttributeIdentifier12 | FactIdentifier1 | LabelIdentifier13) & string;
|
|
2361
2361
|
}
|
|
2362
2362
|
/**
|
|
2363
2363
|
* A list of filters in this query.
|
|
@@ -2561,7 +2561,7 @@ export interface AttributeSort {
|
|
|
2561
2561
|
/**
|
|
2562
2562
|
* Local attribute or label to use in this sort.
|
|
2563
2563
|
*/
|
|
2564
|
-
by: string |
|
|
2564
|
+
by: string | AttributeIdentifier13 | LabelIdentifier14;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* Sort direction.
|
|
2567
2567
|
*/
|
|
@@ -2585,7 +2585,7 @@ export interface MetricSort {
|
|
|
2585
2585
|
/**
|
|
2586
2586
|
* Local attribute or label to use in this sort.
|
|
2587
2587
|
*/
|
|
2588
|
-
by: string |
|
|
2588
|
+
by: string | AttributeIdentifier14 | LabelIdentifier15;
|
|
2589
2589
|
/**
|
|
2590
2590
|
* Value of attribute or label to use for this sort.
|
|
2591
2591
|
*/
|
|
@@ -2599,7 +2599,7 @@ export interface MetricSort {
|
|
|
2599
2599
|
/**
|
|
2600
2600
|
* Local attribute or label to use in this sort.
|
|
2601
2601
|
*/
|
|
2602
|
-
by: string |
|
|
2602
|
+
by: string | AttributeIdentifier14 | LabelIdentifier15;
|
|
2603
2603
|
/**
|
|
2604
2604
|
* Value of attribute or label to use for this sort.
|
|
2605
2605
|
*/
|
|
@@ -2782,6 +2782,23 @@ export interface VisualisationConfig {
|
|
|
2782
2782
|
enable_accessibility?: boolean;
|
|
2783
2783
|
line_style_control_metrics?: string[];
|
|
2784
2784
|
line_style_excluded_metrics?: string[];
|
|
2785
|
+
/**
|
|
2786
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
2787
|
+
*/
|
|
2788
|
+
custom_tooltip?: {
|
|
2789
|
+
/**
|
|
2790
|
+
* Whether the custom tooltip section is rendered.
|
|
2791
|
+
*/
|
|
2792
|
+
enabled?: boolean;
|
|
2793
|
+
/**
|
|
2794
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
2795
|
+
*/
|
|
2796
|
+
content?: string;
|
|
2797
|
+
/**
|
|
2798
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
2799
|
+
*/
|
|
2800
|
+
placement?: "above" | "below" | "replace";
|
|
2801
|
+
};
|
|
2785
2802
|
/**
|
|
2786
2803
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
2787
2804
|
*/
|
|
@@ -3131,6 +3148,23 @@ export interface VisualisationConfig1 {
|
|
|
3131
3148
|
enable_accessibility?: boolean;
|
|
3132
3149
|
line_style_control_metrics?: string[];
|
|
3133
3150
|
line_style_excluded_metrics?: string[];
|
|
3151
|
+
/**
|
|
3152
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
3153
|
+
*/
|
|
3154
|
+
custom_tooltip?: {
|
|
3155
|
+
/**
|
|
3156
|
+
* Whether the custom tooltip section is rendered.
|
|
3157
|
+
*/
|
|
3158
|
+
enabled?: boolean;
|
|
3159
|
+
/**
|
|
3160
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
3161
|
+
*/
|
|
3162
|
+
content?: string;
|
|
3163
|
+
/**
|
|
3164
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
3165
|
+
*/
|
|
3166
|
+
placement?: "above" | "below" | "replace";
|
|
3167
|
+
};
|
|
3134
3168
|
/**
|
|
3135
3169
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3136
3170
|
*/
|
|
@@ -3416,6 +3450,23 @@ export interface VisualisationConfig2 {
|
|
|
3416
3450
|
enable_accessibility?: boolean;
|
|
3417
3451
|
line_style_control_metrics?: string[];
|
|
3418
3452
|
line_style_excluded_metrics?: string[];
|
|
3453
|
+
/**
|
|
3454
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
3455
|
+
*/
|
|
3456
|
+
custom_tooltip?: {
|
|
3457
|
+
/**
|
|
3458
|
+
* Whether the custom tooltip section is rendered.
|
|
3459
|
+
*/
|
|
3460
|
+
enabled?: boolean;
|
|
3461
|
+
/**
|
|
3462
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
3463
|
+
*/
|
|
3464
|
+
content?: string;
|
|
3465
|
+
/**
|
|
3466
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
3467
|
+
*/
|
|
3468
|
+
placement?: "above" | "below" | "replace";
|
|
3469
|
+
};
|
|
3419
3470
|
/**
|
|
3420
3471
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3421
3472
|
*/
|
|
@@ -3701,6 +3752,23 @@ export interface VisualisationConfig3 {
|
|
|
3701
3752
|
enable_accessibility?: boolean;
|
|
3702
3753
|
line_style_control_metrics?: string[];
|
|
3703
3754
|
line_style_excluded_metrics?: string[];
|
|
3755
|
+
/**
|
|
3756
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
3757
|
+
*/
|
|
3758
|
+
custom_tooltip?: {
|
|
3759
|
+
/**
|
|
3760
|
+
* Whether the custom tooltip section is rendered.
|
|
3761
|
+
*/
|
|
3762
|
+
enabled?: boolean;
|
|
3763
|
+
/**
|
|
3764
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
3765
|
+
*/
|
|
3766
|
+
content?: string;
|
|
3767
|
+
/**
|
|
3768
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
3769
|
+
*/
|
|
3770
|
+
placement?: "above" | "below" | "replace";
|
|
3771
|
+
};
|
|
3704
3772
|
/**
|
|
3705
3773
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3706
3774
|
*/
|
|
@@ -3986,6 +4054,23 @@ export interface VisualisationConfig4 {
|
|
|
3986
4054
|
enable_accessibility?: boolean;
|
|
3987
4055
|
line_style_control_metrics?: string[];
|
|
3988
4056
|
line_style_excluded_metrics?: string[];
|
|
4057
|
+
/**
|
|
4058
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
4059
|
+
*/
|
|
4060
|
+
custom_tooltip?: {
|
|
4061
|
+
/**
|
|
4062
|
+
* Whether the custom tooltip section is rendered.
|
|
4063
|
+
*/
|
|
4064
|
+
enabled?: boolean;
|
|
4065
|
+
/**
|
|
4066
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
4067
|
+
*/
|
|
4068
|
+
content?: string;
|
|
4069
|
+
/**
|
|
4070
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
4071
|
+
*/
|
|
4072
|
+
placement?: "above" | "below" | "replace";
|
|
4073
|
+
};
|
|
3989
4074
|
/**
|
|
3990
4075
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3991
4076
|
*/
|
|
@@ -4271,6 +4356,23 @@ export interface VisualisationConfig5 {
|
|
|
4271
4356
|
enable_accessibility?: boolean;
|
|
4272
4357
|
line_style_control_metrics?: string[];
|
|
4273
4358
|
line_style_excluded_metrics?: string[];
|
|
4359
|
+
/**
|
|
4360
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
4361
|
+
*/
|
|
4362
|
+
custom_tooltip?: {
|
|
4363
|
+
/**
|
|
4364
|
+
* Whether the custom tooltip section is rendered.
|
|
4365
|
+
*/
|
|
4366
|
+
enabled?: boolean;
|
|
4367
|
+
/**
|
|
4368
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
4369
|
+
*/
|
|
4370
|
+
content?: string;
|
|
4371
|
+
/**
|
|
4372
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
4373
|
+
*/
|
|
4374
|
+
placement?: "above" | "below" | "replace";
|
|
4375
|
+
};
|
|
4274
4376
|
/**
|
|
4275
4377
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4276
4378
|
*/
|
|
@@ -4556,6 +4658,23 @@ export interface VisualisationConfig6 {
|
|
|
4556
4658
|
enable_accessibility?: boolean;
|
|
4557
4659
|
line_style_control_metrics?: string[];
|
|
4558
4660
|
line_style_excluded_metrics?: string[];
|
|
4661
|
+
/**
|
|
4662
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
4663
|
+
*/
|
|
4664
|
+
custom_tooltip?: {
|
|
4665
|
+
/**
|
|
4666
|
+
* Whether the custom tooltip section is rendered.
|
|
4667
|
+
*/
|
|
4668
|
+
enabled?: boolean;
|
|
4669
|
+
/**
|
|
4670
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
4671
|
+
*/
|
|
4672
|
+
content?: string;
|
|
4673
|
+
/**
|
|
4674
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
4675
|
+
*/
|
|
4676
|
+
placement?: "above" | "below" | "replace";
|
|
4677
|
+
};
|
|
4559
4678
|
/**
|
|
4560
4679
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4561
4680
|
*/
|
|
@@ -4837,6 +4956,23 @@ export interface VisualisationConfig7 {
|
|
|
4837
4956
|
enable_accessibility?: boolean;
|
|
4838
4957
|
line_style_control_metrics?: string[];
|
|
4839
4958
|
line_style_excluded_metrics?: string[];
|
|
4959
|
+
/**
|
|
4960
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
4961
|
+
*/
|
|
4962
|
+
custom_tooltip?: {
|
|
4963
|
+
/**
|
|
4964
|
+
* Whether the custom tooltip section is rendered.
|
|
4965
|
+
*/
|
|
4966
|
+
enabled?: boolean;
|
|
4967
|
+
/**
|
|
4968
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
4969
|
+
*/
|
|
4970
|
+
content?: string;
|
|
4971
|
+
/**
|
|
4972
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
4973
|
+
*/
|
|
4974
|
+
placement?: "above" | "below" | "replace";
|
|
4975
|
+
};
|
|
4840
4976
|
/**
|
|
4841
4977
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4842
4978
|
*/
|
|
@@ -5118,6 +5254,23 @@ export interface VisualisationConfig8 {
|
|
|
5118
5254
|
enable_accessibility?: boolean;
|
|
5119
5255
|
line_style_control_metrics?: string[];
|
|
5120
5256
|
line_style_excluded_metrics?: string[];
|
|
5257
|
+
/**
|
|
5258
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
5259
|
+
*/
|
|
5260
|
+
custom_tooltip?: {
|
|
5261
|
+
/**
|
|
5262
|
+
* Whether the custom tooltip section is rendered.
|
|
5263
|
+
*/
|
|
5264
|
+
enabled?: boolean;
|
|
5265
|
+
/**
|
|
5266
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
5267
|
+
*/
|
|
5268
|
+
content?: string;
|
|
5269
|
+
/**
|
|
5270
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
5271
|
+
*/
|
|
5272
|
+
placement?: "above" | "below" | "replace";
|
|
5273
|
+
};
|
|
5121
5274
|
/**
|
|
5122
5275
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5123
5276
|
*/
|
|
@@ -5399,6 +5552,23 @@ export interface VisualisationConfig9 {
|
|
|
5399
5552
|
enable_accessibility?: boolean;
|
|
5400
5553
|
line_style_control_metrics?: string[];
|
|
5401
5554
|
line_style_excluded_metrics?: string[];
|
|
5555
|
+
/**
|
|
5556
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
5557
|
+
*/
|
|
5558
|
+
custom_tooltip?: {
|
|
5559
|
+
/**
|
|
5560
|
+
* Whether the custom tooltip section is rendered.
|
|
5561
|
+
*/
|
|
5562
|
+
enabled?: boolean;
|
|
5563
|
+
/**
|
|
5564
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
5565
|
+
*/
|
|
5566
|
+
content?: string;
|
|
5567
|
+
/**
|
|
5568
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
5569
|
+
*/
|
|
5570
|
+
placement?: "above" | "below" | "replace";
|
|
5571
|
+
};
|
|
5402
5572
|
/**
|
|
5403
5573
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5404
5574
|
*/
|
|
@@ -5680,6 +5850,23 @@ export interface VisualisationConfig10 {
|
|
|
5680
5850
|
enable_accessibility?: boolean;
|
|
5681
5851
|
line_style_control_metrics?: string[];
|
|
5682
5852
|
line_style_excluded_metrics?: string[];
|
|
5853
|
+
/**
|
|
5854
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
5855
|
+
*/
|
|
5856
|
+
custom_tooltip?: {
|
|
5857
|
+
/**
|
|
5858
|
+
* Whether the custom tooltip section is rendered.
|
|
5859
|
+
*/
|
|
5860
|
+
enabled?: boolean;
|
|
5861
|
+
/**
|
|
5862
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
5863
|
+
*/
|
|
5864
|
+
content?: string;
|
|
5865
|
+
/**
|
|
5866
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
5867
|
+
*/
|
|
5868
|
+
placement?: "above" | "below" | "replace";
|
|
5869
|
+
};
|
|
5683
5870
|
/**
|
|
5684
5871
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5685
5872
|
*/
|
|
@@ -5961,6 +6148,23 @@ export interface VisualisationConfig11 {
|
|
|
5961
6148
|
enable_accessibility?: boolean;
|
|
5962
6149
|
line_style_control_metrics?: string[];
|
|
5963
6150
|
line_style_excluded_metrics?: string[];
|
|
6151
|
+
/**
|
|
6152
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
6153
|
+
*/
|
|
6154
|
+
custom_tooltip?: {
|
|
6155
|
+
/**
|
|
6156
|
+
* Whether the custom tooltip section is rendered.
|
|
6157
|
+
*/
|
|
6158
|
+
enabled?: boolean;
|
|
6159
|
+
/**
|
|
6160
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
6161
|
+
*/
|
|
6162
|
+
content?: string;
|
|
6163
|
+
/**
|
|
6164
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
6165
|
+
*/
|
|
6166
|
+
placement?: "above" | "below" | "replace";
|
|
6167
|
+
};
|
|
5964
6168
|
/**
|
|
5965
6169
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5966
6170
|
*/
|
|
@@ -6250,6 +6454,23 @@ export interface VisualisationConfig12 {
|
|
|
6250
6454
|
enable_accessibility?: boolean;
|
|
6251
6455
|
line_style_control_metrics?: string[];
|
|
6252
6456
|
line_style_excluded_metrics?: string[];
|
|
6457
|
+
/**
|
|
6458
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
6459
|
+
*/
|
|
6460
|
+
custom_tooltip?: {
|
|
6461
|
+
/**
|
|
6462
|
+
* Whether the custom tooltip section is rendered.
|
|
6463
|
+
*/
|
|
6464
|
+
enabled?: boolean;
|
|
6465
|
+
/**
|
|
6466
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
6467
|
+
*/
|
|
6468
|
+
content?: string;
|
|
6469
|
+
/**
|
|
6470
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
6471
|
+
*/
|
|
6472
|
+
placement?: "above" | "below" | "replace";
|
|
6473
|
+
};
|
|
6253
6474
|
/**
|
|
6254
6475
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6255
6476
|
*/
|
|
@@ -6531,6 +6752,23 @@ export interface VisualisationConfig13 {
|
|
|
6531
6752
|
enable_accessibility?: boolean;
|
|
6532
6753
|
line_style_control_metrics?: string[];
|
|
6533
6754
|
line_style_excluded_metrics?: string[];
|
|
6755
|
+
/**
|
|
6756
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
6757
|
+
*/
|
|
6758
|
+
custom_tooltip?: {
|
|
6759
|
+
/**
|
|
6760
|
+
* Whether the custom tooltip section is rendered.
|
|
6761
|
+
*/
|
|
6762
|
+
enabled?: boolean;
|
|
6763
|
+
/**
|
|
6764
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
6765
|
+
*/
|
|
6766
|
+
content?: string;
|
|
6767
|
+
/**
|
|
6768
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
6769
|
+
*/
|
|
6770
|
+
placement?: "above" | "below" | "replace";
|
|
6771
|
+
};
|
|
6534
6772
|
/**
|
|
6535
6773
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6536
6774
|
*/
|
|
@@ -6812,6 +7050,23 @@ export interface VisualisationConfig14 {
|
|
|
6812
7050
|
enable_accessibility?: boolean;
|
|
6813
7051
|
line_style_control_metrics?: string[];
|
|
6814
7052
|
line_style_excluded_metrics?: string[];
|
|
7053
|
+
/**
|
|
7054
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
7055
|
+
*/
|
|
7056
|
+
custom_tooltip?: {
|
|
7057
|
+
/**
|
|
7058
|
+
* Whether the custom tooltip section is rendered.
|
|
7059
|
+
*/
|
|
7060
|
+
enabled?: boolean;
|
|
7061
|
+
/**
|
|
7062
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
7063
|
+
*/
|
|
7064
|
+
content?: string;
|
|
7065
|
+
/**
|
|
7066
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
7067
|
+
*/
|
|
7068
|
+
placement?: "above" | "below" | "replace";
|
|
7069
|
+
};
|
|
6815
7070
|
/**
|
|
6816
7071
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6817
7072
|
*/
|
|
@@ -7095,6 +7350,23 @@ export interface VisualisationConfig15 {
|
|
|
7095
7350
|
enable_accessibility?: boolean;
|
|
7096
7351
|
line_style_control_metrics?: string[];
|
|
7097
7352
|
line_style_excluded_metrics?: string[];
|
|
7353
|
+
/**
|
|
7354
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
7355
|
+
*/
|
|
7356
|
+
custom_tooltip?: {
|
|
7357
|
+
/**
|
|
7358
|
+
* Whether the custom tooltip section is rendered.
|
|
7359
|
+
*/
|
|
7360
|
+
enabled?: boolean;
|
|
7361
|
+
/**
|
|
7362
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
7363
|
+
*/
|
|
7364
|
+
content?: string;
|
|
7365
|
+
/**
|
|
7366
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
7367
|
+
*/
|
|
7368
|
+
placement?: "above" | "below" | "replace";
|
|
7369
|
+
};
|
|
7098
7370
|
/**
|
|
7099
7371
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7100
7372
|
*/
|
|
@@ -7378,6 +7650,23 @@ export interface VisualisationConfig16 {
|
|
|
7378
7650
|
enable_accessibility?: boolean;
|
|
7379
7651
|
line_style_control_metrics?: string[];
|
|
7380
7652
|
line_style_excluded_metrics?: string[];
|
|
7653
|
+
/**
|
|
7654
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
7655
|
+
*/
|
|
7656
|
+
custom_tooltip?: {
|
|
7657
|
+
/**
|
|
7658
|
+
* Whether the custom tooltip section is rendered.
|
|
7659
|
+
*/
|
|
7660
|
+
enabled?: boolean;
|
|
7661
|
+
/**
|
|
7662
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
7663
|
+
*/
|
|
7664
|
+
content?: string;
|
|
7665
|
+
/**
|
|
7666
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
7667
|
+
*/
|
|
7668
|
+
placement?: "above" | "below" | "replace";
|
|
7669
|
+
};
|
|
7381
7670
|
/**
|
|
7382
7671
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7383
7672
|
*/
|
|
@@ -7659,6 +7948,23 @@ export interface VisualisationConfig17 {
|
|
|
7659
7948
|
enable_accessibility?: boolean;
|
|
7660
7949
|
line_style_control_metrics?: string[];
|
|
7661
7950
|
line_style_excluded_metrics?: string[];
|
|
7951
|
+
/**
|
|
7952
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
7953
|
+
*/
|
|
7954
|
+
custom_tooltip?: {
|
|
7955
|
+
/**
|
|
7956
|
+
* Whether the custom tooltip section is rendered.
|
|
7957
|
+
*/
|
|
7958
|
+
enabled?: boolean;
|
|
7959
|
+
/**
|
|
7960
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
7961
|
+
*/
|
|
7962
|
+
content?: string;
|
|
7963
|
+
/**
|
|
7964
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
7965
|
+
*/
|
|
7966
|
+
placement?: "above" | "below" | "replace";
|
|
7967
|
+
};
|
|
7662
7968
|
/**
|
|
7663
7969
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7664
7970
|
*/
|
|
@@ -7940,6 +8246,23 @@ export interface VisualisationConfig18 {
|
|
|
7940
8246
|
enable_accessibility?: boolean;
|
|
7941
8247
|
line_style_control_metrics?: string[];
|
|
7942
8248
|
line_style_excluded_metrics?: string[];
|
|
8249
|
+
/**
|
|
8250
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
8251
|
+
*/
|
|
8252
|
+
custom_tooltip?: {
|
|
8253
|
+
/**
|
|
8254
|
+
* Whether the custom tooltip section is rendered.
|
|
8255
|
+
*/
|
|
8256
|
+
enabled?: boolean;
|
|
8257
|
+
/**
|
|
8258
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
8259
|
+
*/
|
|
8260
|
+
content?: string;
|
|
8261
|
+
/**
|
|
8262
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
8263
|
+
*/
|
|
8264
|
+
placement?: "above" | "below" | "replace";
|
|
8265
|
+
};
|
|
7943
8266
|
/**
|
|
7944
8267
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7945
8268
|
*/
|
|
@@ -8225,6 +8548,23 @@ export interface VisualisationConfig19 {
|
|
|
8225
8548
|
enable_accessibility?: boolean;
|
|
8226
8549
|
line_style_control_metrics?: string[];
|
|
8227
8550
|
line_style_excluded_metrics?: string[];
|
|
8551
|
+
/**
|
|
8552
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
8553
|
+
*/
|
|
8554
|
+
custom_tooltip?: {
|
|
8555
|
+
/**
|
|
8556
|
+
* Whether the custom tooltip section is rendered.
|
|
8557
|
+
*/
|
|
8558
|
+
enabled?: boolean;
|
|
8559
|
+
/**
|
|
8560
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
8561
|
+
*/
|
|
8562
|
+
content?: string;
|
|
8563
|
+
/**
|
|
8564
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
8565
|
+
*/
|
|
8566
|
+
placement?: "above" | "below" | "replace";
|
|
8567
|
+
};
|
|
8228
8568
|
/**
|
|
8229
8569
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8230
8570
|
*/
|
|
@@ -8483,6 +8823,23 @@ export interface VisualisationConfig20 {
|
|
|
8483
8823
|
enable_accessibility?: boolean;
|
|
8484
8824
|
line_style_control_metrics?: string[];
|
|
8485
8825
|
line_style_excluded_metrics?: string[];
|
|
8826
|
+
/**
|
|
8827
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
8828
|
+
*/
|
|
8829
|
+
custom_tooltip?: {
|
|
8830
|
+
/**
|
|
8831
|
+
* Whether the custom tooltip section is rendered.
|
|
8832
|
+
*/
|
|
8833
|
+
enabled?: boolean;
|
|
8834
|
+
/**
|
|
8835
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
8836
|
+
*/
|
|
8837
|
+
content?: string;
|
|
8838
|
+
/**
|
|
8839
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
8840
|
+
*/
|
|
8841
|
+
placement?: "above" | "below" | "replace";
|
|
8842
|
+
};
|
|
8486
8843
|
/**
|
|
8487
8844
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8488
8845
|
*/
|
|
@@ -8768,6 +9125,23 @@ export interface VisualisationConfig21 {
|
|
|
8768
9125
|
enable_accessibility?: boolean;
|
|
8769
9126
|
line_style_control_metrics?: string[];
|
|
8770
9127
|
line_style_excluded_metrics?: string[];
|
|
9128
|
+
/**
|
|
9129
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
9130
|
+
*/
|
|
9131
|
+
custom_tooltip?: {
|
|
9132
|
+
/**
|
|
9133
|
+
* Whether the custom tooltip section is rendered.
|
|
9134
|
+
*/
|
|
9135
|
+
enabled?: boolean;
|
|
9136
|
+
/**
|
|
9137
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
9138
|
+
*/
|
|
9139
|
+
content?: string;
|
|
9140
|
+
/**
|
|
9141
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
9142
|
+
*/
|
|
9143
|
+
placement?: "above" | "below" | "replace";
|
|
9144
|
+
};
|
|
8771
9145
|
/**
|
|
8772
9146
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8773
9147
|
*/
|
|
@@ -9057,6 +9431,23 @@ export interface VisualisationConfig22 {
|
|
|
9057
9431
|
enable_accessibility?: boolean;
|
|
9058
9432
|
line_style_control_metrics?: string[];
|
|
9059
9433
|
line_style_excluded_metrics?: string[];
|
|
9434
|
+
/**
|
|
9435
|
+
* Custom tooltip section rendered in the visualization tooltip, authored in Markdown with metric/attribute references that resolve per hovered data point.
|
|
9436
|
+
*/
|
|
9437
|
+
custom_tooltip?: {
|
|
9438
|
+
/**
|
|
9439
|
+
* Whether the custom tooltip section is rendered.
|
|
9440
|
+
*/
|
|
9441
|
+
enabled?: boolean;
|
|
9442
|
+
/**
|
|
9443
|
+
* Markdown content. Supports headings, bold/italic, ordered/unordered lists, images, links, horizontal rules, and metric/attribute references (\{metric/id\}, \{label/id\}) that resolve per hovered data point.
|
|
9444
|
+
*/
|
|
9445
|
+
content?: string;
|
|
9446
|
+
/**
|
|
9447
|
+
* Placement of the custom section relative to the default tooltip content. Defaults to "above".
|
|
9448
|
+
*/
|
|
9449
|
+
placement?: "above" | "below" | "replace";
|
|
9450
|
+
};
|
|
9060
9451
|
/**
|
|
9061
9452
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
9062
9453
|
*/
|