@gooddata/sdk-code-schemas 11.47.0-alpha.1 → 11.47.0-alpha.3
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 +70 -0
- package/esm/v1/metadata.d.ts +38 -0
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +30 -0
- package/esm/v1/schema.d.ts +30 -0
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -2301,6 +2301,22 @@ declare interface LineChart {
|
|
|
2301
2301
|
segment_by?: Bucket[];
|
|
2302
2302
|
}
|
|
2303
2303
|
|
|
2304
|
+
/**
|
|
2305
|
+
* Per-series line style and weight overrides. Keys are measure identifiers.
|
|
2306
|
+
*/
|
|
2307
|
+
declare interface LineStyleMapping {
|
|
2308
|
+
[k: string]: {
|
|
2309
|
+
/**
|
|
2310
|
+
* Line stroke style for this series.
|
|
2311
|
+
*/
|
|
2312
|
+
style?: "solid" | "dashed" | "dotted";
|
|
2313
|
+
/**
|
|
2314
|
+
* Line stroke width in pixels for this series.
|
|
2315
|
+
*/
|
|
2316
|
+
width?: 1 | 2 | 3 | 4;
|
|
2317
|
+
};
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2304
2320
|
/**
|
|
2305
2321
|
* A map of colors in this visualisation.
|
|
2306
2322
|
*/
|
|
@@ -4959,6 +4975,10 @@ export declare const metadata_v1: {
|
|
|
4959
4975
|
};
|
|
4960
4976
|
};
|
|
4961
4977
|
};
|
|
4978
|
+
line_style_mapping: {
|
|
4979
|
+
$ref: string;
|
|
4980
|
+
description: string;
|
|
4981
|
+
};
|
|
4962
4982
|
conditional_formatting: {
|
|
4963
4983
|
type: string;
|
|
4964
4984
|
description: string;
|
|
@@ -7087,6 +7107,32 @@ export declare const metadata_v1: {
|
|
|
7087
7107
|
snippets: string[];
|
|
7088
7108
|
})[];
|
|
7089
7109
|
};
|
|
7110
|
+
lineStyleMapping: {
|
|
7111
|
+
title: string;
|
|
7112
|
+
type: string;
|
|
7113
|
+
$semantic: {
|
|
7114
|
+
type: string;
|
|
7115
|
+
source: string;
|
|
7116
|
+
mode: string;
|
|
7117
|
+
};
|
|
7118
|
+
additionalProperties: {
|
|
7119
|
+
type: string;
|
|
7120
|
+
additionalProperties: boolean;
|
|
7121
|
+
minProperties: number;
|
|
7122
|
+
properties: {
|
|
7123
|
+
style: {
|
|
7124
|
+
type: string;
|
|
7125
|
+
enum: string[];
|
|
7126
|
+
description: string;
|
|
7127
|
+
};
|
|
7128
|
+
width: {
|
|
7129
|
+
type: string;
|
|
7130
|
+
enum: number[];
|
|
7131
|
+
description: string;
|
|
7132
|
+
};
|
|
7133
|
+
};
|
|
7134
|
+
};
|
|
7135
|
+
};
|
|
7090
7136
|
complexColorItem: {
|
|
7091
7137
|
title: string;
|
|
7092
7138
|
oneOf: ({
|
|
@@ -11359,6 +11405,7 @@ export declare namespace v1 {
|
|
|
11359
11405
|
TotalValueWithAttribute,
|
|
11360
11406
|
ListOfColors,
|
|
11361
11407
|
ColorDefinition,
|
|
11408
|
+
LineStyleMapping,
|
|
11362
11409
|
ComplexBucket,
|
|
11363
11410
|
Total,
|
|
11364
11411
|
BarChart,
|
|
@@ -11733,6 +11780,7 @@ declare interface VisualisationConfig {
|
|
|
11733
11780
|
*/
|
|
11734
11781
|
placement?: "above" | "below" | "replace";
|
|
11735
11782
|
};
|
|
11783
|
+
line_style_mapping?: LineStyleMapping;
|
|
11736
11784
|
/**
|
|
11737
11785
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
11738
11786
|
*/
|
|
@@ -11985,6 +12033,7 @@ declare interface VisualisationConfig1 {
|
|
|
11985
12033
|
*/
|
|
11986
12034
|
placement?: "above" | "below" | "replace";
|
|
11987
12035
|
};
|
|
12036
|
+
line_style_mapping?: LineStyleMapping;
|
|
11988
12037
|
/**
|
|
11989
12038
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
11990
12039
|
*/
|
|
@@ -12237,6 +12286,7 @@ declare interface VisualisationConfig10 {
|
|
|
12237
12286
|
*/
|
|
12238
12287
|
placement?: "above" | "below" | "replace";
|
|
12239
12288
|
};
|
|
12289
|
+
line_style_mapping?: LineStyleMapping;
|
|
12240
12290
|
/**
|
|
12241
12291
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
12242
12292
|
*/
|
|
@@ -12489,6 +12539,7 @@ declare interface VisualisationConfig11 {
|
|
|
12489
12539
|
*/
|
|
12490
12540
|
placement?: "above" | "below" | "replace";
|
|
12491
12541
|
};
|
|
12542
|
+
line_style_mapping?: LineStyleMapping;
|
|
12492
12543
|
/**
|
|
12493
12544
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
12494
12545
|
*/
|
|
@@ -12741,6 +12792,7 @@ declare interface VisualisationConfig12 {
|
|
|
12741
12792
|
*/
|
|
12742
12793
|
placement?: "above" | "below" | "replace";
|
|
12743
12794
|
};
|
|
12795
|
+
line_style_mapping?: LineStyleMapping;
|
|
12744
12796
|
/**
|
|
12745
12797
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
12746
12798
|
*/
|
|
@@ -12993,6 +13045,7 @@ declare interface VisualisationConfig13 {
|
|
|
12993
13045
|
*/
|
|
12994
13046
|
placement?: "above" | "below" | "replace";
|
|
12995
13047
|
};
|
|
13048
|
+
line_style_mapping?: LineStyleMapping;
|
|
12996
13049
|
/**
|
|
12997
13050
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
12998
13051
|
*/
|
|
@@ -13245,6 +13298,7 @@ declare interface VisualisationConfig14 {
|
|
|
13245
13298
|
*/
|
|
13246
13299
|
placement?: "above" | "below" | "replace";
|
|
13247
13300
|
};
|
|
13301
|
+
line_style_mapping?: LineStyleMapping;
|
|
13248
13302
|
/**
|
|
13249
13303
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
13250
13304
|
*/
|
|
@@ -13497,6 +13551,7 @@ declare interface VisualisationConfig15 {
|
|
|
13497
13551
|
*/
|
|
13498
13552
|
placement?: "above" | "below" | "replace";
|
|
13499
13553
|
};
|
|
13554
|
+
line_style_mapping?: LineStyleMapping;
|
|
13500
13555
|
/**
|
|
13501
13556
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
13502
13557
|
*/
|
|
@@ -13749,6 +13804,7 @@ declare interface VisualisationConfig16 {
|
|
|
13749
13804
|
*/
|
|
13750
13805
|
placement?: "above" | "below" | "replace";
|
|
13751
13806
|
};
|
|
13807
|
+
line_style_mapping?: LineStyleMapping;
|
|
13752
13808
|
/**
|
|
13753
13809
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
13754
13810
|
*/
|
|
@@ -14001,6 +14057,7 @@ declare interface VisualisationConfig17 {
|
|
|
14001
14057
|
*/
|
|
14002
14058
|
placement?: "above" | "below" | "replace";
|
|
14003
14059
|
};
|
|
14060
|
+
line_style_mapping?: LineStyleMapping;
|
|
14004
14061
|
/**
|
|
14005
14062
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
14006
14063
|
*/
|
|
@@ -14253,6 +14310,7 @@ declare interface VisualisationConfig18 {
|
|
|
14253
14310
|
*/
|
|
14254
14311
|
placement?: "above" | "below" | "replace";
|
|
14255
14312
|
};
|
|
14313
|
+
line_style_mapping?: LineStyleMapping;
|
|
14256
14314
|
/**
|
|
14257
14315
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
14258
14316
|
*/
|
|
@@ -14505,6 +14563,7 @@ declare interface VisualisationConfig19 {
|
|
|
14505
14563
|
*/
|
|
14506
14564
|
placement?: "above" | "below" | "replace";
|
|
14507
14565
|
};
|
|
14566
|
+
line_style_mapping?: LineStyleMapping;
|
|
14508
14567
|
/**
|
|
14509
14568
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
14510
14569
|
*/
|
|
@@ -14757,6 +14816,7 @@ declare interface VisualisationConfig2 {
|
|
|
14757
14816
|
*/
|
|
14758
14817
|
placement?: "above" | "below" | "replace";
|
|
14759
14818
|
};
|
|
14819
|
+
line_style_mapping?: LineStyleMapping;
|
|
14760
14820
|
/**
|
|
14761
14821
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
14762
14822
|
*/
|
|
@@ -15009,6 +15069,7 @@ declare interface VisualisationConfig20 {
|
|
|
15009
15069
|
*/
|
|
15010
15070
|
placement?: "above" | "below" | "replace";
|
|
15011
15071
|
};
|
|
15072
|
+
line_style_mapping?: LineStyleMapping;
|
|
15012
15073
|
/**
|
|
15013
15074
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
15014
15075
|
*/
|
|
@@ -15261,6 +15322,7 @@ declare interface VisualisationConfig21 {
|
|
|
15261
15322
|
*/
|
|
15262
15323
|
placement?: "above" | "below" | "replace";
|
|
15263
15324
|
};
|
|
15325
|
+
line_style_mapping?: LineStyleMapping;
|
|
15264
15326
|
/**
|
|
15265
15327
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
15266
15328
|
*/
|
|
@@ -15513,6 +15575,7 @@ declare interface VisualisationConfig22 {
|
|
|
15513
15575
|
*/
|
|
15514
15576
|
placement?: "above" | "below" | "replace";
|
|
15515
15577
|
};
|
|
15578
|
+
line_style_mapping?: LineStyleMapping;
|
|
15516
15579
|
/**
|
|
15517
15580
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
15518
15581
|
*/
|
|
@@ -15765,6 +15828,7 @@ declare interface VisualisationConfig3 {
|
|
|
15765
15828
|
*/
|
|
15766
15829
|
placement?: "above" | "below" | "replace";
|
|
15767
15830
|
};
|
|
15831
|
+
line_style_mapping?: LineStyleMapping;
|
|
15768
15832
|
/**
|
|
15769
15833
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
15770
15834
|
*/
|
|
@@ -16017,6 +16081,7 @@ declare interface VisualisationConfig4 {
|
|
|
16017
16081
|
*/
|
|
16018
16082
|
placement?: "above" | "below" | "replace";
|
|
16019
16083
|
};
|
|
16084
|
+
line_style_mapping?: LineStyleMapping;
|
|
16020
16085
|
/**
|
|
16021
16086
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
16022
16087
|
*/
|
|
@@ -16269,6 +16334,7 @@ declare interface VisualisationConfig5 {
|
|
|
16269
16334
|
*/
|
|
16270
16335
|
placement?: "above" | "below" | "replace";
|
|
16271
16336
|
};
|
|
16337
|
+
line_style_mapping?: LineStyleMapping;
|
|
16272
16338
|
/**
|
|
16273
16339
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
16274
16340
|
*/
|
|
@@ -16521,6 +16587,7 @@ declare interface VisualisationConfig6 {
|
|
|
16521
16587
|
*/
|
|
16522
16588
|
placement?: "above" | "below" | "replace";
|
|
16523
16589
|
};
|
|
16590
|
+
line_style_mapping?: LineStyleMapping;
|
|
16524
16591
|
/**
|
|
16525
16592
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
16526
16593
|
*/
|
|
@@ -16773,6 +16840,7 @@ declare interface VisualisationConfig7 {
|
|
|
16773
16840
|
*/
|
|
16774
16841
|
placement?: "above" | "below" | "replace";
|
|
16775
16842
|
};
|
|
16843
|
+
line_style_mapping?: LineStyleMapping;
|
|
16776
16844
|
/**
|
|
16777
16845
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
16778
16846
|
*/
|
|
@@ -17025,6 +17093,7 @@ declare interface VisualisationConfig8 {
|
|
|
17025
17093
|
*/
|
|
17026
17094
|
placement?: "above" | "below" | "replace";
|
|
17027
17095
|
};
|
|
17096
|
+
line_style_mapping?: LineStyleMapping;
|
|
17028
17097
|
/**
|
|
17029
17098
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
17030
17099
|
*/
|
|
@@ -17277,6 +17346,7 @@ declare interface VisualisationConfig9 {
|
|
|
17277
17346
|
*/
|
|
17278
17347
|
placement?: "above" | "below" | "replace";
|
|
17279
17348
|
};
|
|
17349
|
+
line_style_mapping?: LineStyleMapping;
|
|
17280
17350
|
/**
|
|
17281
17351
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
17282
17352
|
*/
|
package/esm/v1/metadata.d.ts
CHANGED
|
@@ -2799,6 +2799,7 @@ export interface VisualisationConfig {
|
|
|
2799
2799
|
*/
|
|
2800
2800
|
placement?: "above" | "below" | "replace";
|
|
2801
2801
|
};
|
|
2802
|
+
line_style_mapping?: LineStyleMapping;
|
|
2802
2803
|
/**
|
|
2803
2804
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
2804
2805
|
*/
|
|
@@ -2893,6 +2894,21 @@ export interface ColorDefinition {
|
|
|
2893
2894
|
positive?: Color3;
|
|
2894
2895
|
[k: string]: unknown;
|
|
2895
2896
|
}
|
|
2897
|
+
/**
|
|
2898
|
+
* Per-series line style and weight overrides. Keys are measure identifiers.
|
|
2899
|
+
*/
|
|
2900
|
+
export interface LineStyleMapping {
|
|
2901
|
+
[k: string]: {
|
|
2902
|
+
/**
|
|
2903
|
+
* Line stroke style for this series.
|
|
2904
|
+
*/
|
|
2905
|
+
style?: "solid" | "dashed" | "dotted";
|
|
2906
|
+
/**
|
|
2907
|
+
* Line stroke width in pixels for this series.
|
|
2908
|
+
*/
|
|
2909
|
+
width?: 1 | 2 | 3 | 4;
|
|
2910
|
+
};
|
|
2911
|
+
}
|
|
2896
2912
|
export interface ComplexBucket {
|
|
2897
2913
|
/**
|
|
2898
2914
|
* A field name in the report.
|
|
@@ -3165,6 +3181,7 @@ export interface VisualisationConfig1 {
|
|
|
3165
3181
|
*/
|
|
3166
3182
|
placement?: "above" | "below" | "replace";
|
|
3167
3183
|
};
|
|
3184
|
+
line_style_mapping?: LineStyleMapping;
|
|
3168
3185
|
/**
|
|
3169
3186
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3170
3187
|
*/
|
|
@@ -3467,6 +3484,7 @@ export interface VisualisationConfig2 {
|
|
|
3467
3484
|
*/
|
|
3468
3485
|
placement?: "above" | "below" | "replace";
|
|
3469
3486
|
};
|
|
3487
|
+
line_style_mapping?: LineStyleMapping;
|
|
3470
3488
|
/**
|
|
3471
3489
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3472
3490
|
*/
|
|
@@ -3769,6 +3787,7 @@ export interface VisualisationConfig3 {
|
|
|
3769
3787
|
*/
|
|
3770
3788
|
placement?: "above" | "below" | "replace";
|
|
3771
3789
|
};
|
|
3790
|
+
line_style_mapping?: LineStyleMapping;
|
|
3772
3791
|
/**
|
|
3773
3792
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
3774
3793
|
*/
|
|
@@ -4071,6 +4090,7 @@ export interface VisualisationConfig4 {
|
|
|
4071
4090
|
*/
|
|
4072
4091
|
placement?: "above" | "below" | "replace";
|
|
4073
4092
|
};
|
|
4093
|
+
line_style_mapping?: LineStyleMapping;
|
|
4074
4094
|
/**
|
|
4075
4095
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4076
4096
|
*/
|
|
@@ -4373,6 +4393,7 @@ export interface VisualisationConfig5 {
|
|
|
4373
4393
|
*/
|
|
4374
4394
|
placement?: "above" | "below" | "replace";
|
|
4375
4395
|
};
|
|
4396
|
+
line_style_mapping?: LineStyleMapping;
|
|
4376
4397
|
/**
|
|
4377
4398
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4378
4399
|
*/
|
|
@@ -4675,6 +4696,7 @@ export interface VisualisationConfig6 {
|
|
|
4675
4696
|
*/
|
|
4676
4697
|
placement?: "above" | "below" | "replace";
|
|
4677
4698
|
};
|
|
4699
|
+
line_style_mapping?: LineStyleMapping;
|
|
4678
4700
|
/**
|
|
4679
4701
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4680
4702
|
*/
|
|
@@ -4973,6 +4995,7 @@ export interface VisualisationConfig7 {
|
|
|
4973
4995
|
*/
|
|
4974
4996
|
placement?: "above" | "below" | "replace";
|
|
4975
4997
|
};
|
|
4998
|
+
line_style_mapping?: LineStyleMapping;
|
|
4976
4999
|
/**
|
|
4977
5000
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
4978
5001
|
*/
|
|
@@ -5271,6 +5294,7 @@ export interface VisualisationConfig8 {
|
|
|
5271
5294
|
*/
|
|
5272
5295
|
placement?: "above" | "below" | "replace";
|
|
5273
5296
|
};
|
|
5297
|
+
line_style_mapping?: LineStyleMapping;
|
|
5274
5298
|
/**
|
|
5275
5299
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5276
5300
|
*/
|
|
@@ -5569,6 +5593,7 @@ export interface VisualisationConfig9 {
|
|
|
5569
5593
|
*/
|
|
5570
5594
|
placement?: "above" | "below" | "replace";
|
|
5571
5595
|
};
|
|
5596
|
+
line_style_mapping?: LineStyleMapping;
|
|
5572
5597
|
/**
|
|
5573
5598
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5574
5599
|
*/
|
|
@@ -5867,6 +5892,7 @@ export interface VisualisationConfig10 {
|
|
|
5867
5892
|
*/
|
|
5868
5893
|
placement?: "above" | "below" | "replace";
|
|
5869
5894
|
};
|
|
5895
|
+
line_style_mapping?: LineStyleMapping;
|
|
5870
5896
|
/**
|
|
5871
5897
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
5872
5898
|
*/
|
|
@@ -6165,6 +6191,7 @@ export interface VisualisationConfig11 {
|
|
|
6165
6191
|
*/
|
|
6166
6192
|
placement?: "above" | "below" | "replace";
|
|
6167
6193
|
};
|
|
6194
|
+
line_style_mapping?: LineStyleMapping;
|
|
6168
6195
|
/**
|
|
6169
6196
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6170
6197
|
*/
|
|
@@ -6471,6 +6498,7 @@ export interface VisualisationConfig12 {
|
|
|
6471
6498
|
*/
|
|
6472
6499
|
placement?: "above" | "below" | "replace";
|
|
6473
6500
|
};
|
|
6501
|
+
line_style_mapping?: LineStyleMapping;
|
|
6474
6502
|
/**
|
|
6475
6503
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6476
6504
|
*/
|
|
@@ -6769,6 +6797,7 @@ export interface VisualisationConfig13 {
|
|
|
6769
6797
|
*/
|
|
6770
6798
|
placement?: "above" | "below" | "replace";
|
|
6771
6799
|
};
|
|
6800
|
+
line_style_mapping?: LineStyleMapping;
|
|
6772
6801
|
/**
|
|
6773
6802
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
6774
6803
|
*/
|
|
@@ -7067,6 +7096,7 @@ export interface VisualisationConfig14 {
|
|
|
7067
7096
|
*/
|
|
7068
7097
|
placement?: "above" | "below" | "replace";
|
|
7069
7098
|
};
|
|
7099
|
+
line_style_mapping?: LineStyleMapping;
|
|
7070
7100
|
/**
|
|
7071
7101
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7072
7102
|
*/
|
|
@@ -7367,6 +7397,7 @@ export interface VisualisationConfig15 {
|
|
|
7367
7397
|
*/
|
|
7368
7398
|
placement?: "above" | "below" | "replace";
|
|
7369
7399
|
};
|
|
7400
|
+
line_style_mapping?: LineStyleMapping;
|
|
7370
7401
|
/**
|
|
7371
7402
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7372
7403
|
*/
|
|
@@ -7667,6 +7698,7 @@ export interface VisualisationConfig16 {
|
|
|
7667
7698
|
*/
|
|
7668
7699
|
placement?: "above" | "below" | "replace";
|
|
7669
7700
|
};
|
|
7701
|
+
line_style_mapping?: LineStyleMapping;
|
|
7670
7702
|
/**
|
|
7671
7703
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7672
7704
|
*/
|
|
@@ -7965,6 +7997,7 @@ export interface VisualisationConfig17 {
|
|
|
7965
7997
|
*/
|
|
7966
7998
|
placement?: "above" | "below" | "replace";
|
|
7967
7999
|
};
|
|
8000
|
+
line_style_mapping?: LineStyleMapping;
|
|
7968
8001
|
/**
|
|
7969
8002
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
7970
8003
|
*/
|
|
@@ -8263,6 +8296,7 @@ export interface VisualisationConfig18 {
|
|
|
8263
8296
|
*/
|
|
8264
8297
|
placement?: "above" | "below" | "replace";
|
|
8265
8298
|
};
|
|
8299
|
+
line_style_mapping?: LineStyleMapping;
|
|
8266
8300
|
/**
|
|
8267
8301
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8268
8302
|
*/
|
|
@@ -8565,6 +8599,7 @@ export interface VisualisationConfig19 {
|
|
|
8565
8599
|
*/
|
|
8566
8600
|
placement?: "above" | "below" | "replace";
|
|
8567
8601
|
};
|
|
8602
|
+
line_style_mapping?: LineStyleMapping;
|
|
8568
8603
|
/**
|
|
8569
8604
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8570
8605
|
*/
|
|
@@ -8840,6 +8875,7 @@ export interface VisualisationConfig20 {
|
|
|
8840
8875
|
*/
|
|
8841
8876
|
placement?: "above" | "below" | "replace";
|
|
8842
8877
|
};
|
|
8878
|
+
line_style_mapping?: LineStyleMapping;
|
|
8843
8879
|
/**
|
|
8844
8880
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
8845
8881
|
*/
|
|
@@ -9142,6 +9178,7 @@ export interface VisualisationConfig21 {
|
|
|
9142
9178
|
*/
|
|
9143
9179
|
placement?: "above" | "below" | "replace";
|
|
9144
9180
|
};
|
|
9181
|
+
line_style_mapping?: LineStyleMapping;
|
|
9145
9182
|
/**
|
|
9146
9183
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
9147
9184
|
*/
|
|
@@ -9448,6 +9485,7 @@ export interface VisualisationConfig22 {
|
|
|
9448
9485
|
*/
|
|
9449
9486
|
placement?: "above" | "below" | "replace";
|
|
9450
9487
|
};
|
|
9488
|
+
line_style_mapping?: LineStyleMapping;
|
|
9451
9489
|
/**
|
|
9452
9490
|
* Conditional formatting rules that color cells or rows based on their values.
|
|
9453
9491
|
*/
|