@visactor/vseed 0.0.25 → 0.0.27
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/builder/builder/builder.d.ts +3 -0
- package/dist/index.cjs +101 -35
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +101 -35
- package/dist/index.js.map +1 -1
- package/dist/pipeline/spec/chart/pipes/dataset/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/dataset/progressive.d.ts +2 -0
- package/dist/types/chartType/area/area.d.ts +237 -6
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +237 -6
- package/dist/types/chartType/areaRange/areaRange.d.ts +237 -6
- package/dist/types/chartType/bar/bar.d.ts +78 -2
- package/dist/types/chartType/barParallel/barParallel.d.ts +78 -2
- package/dist/types/chartType/barPercent/barPercent.d.ts +78 -2
- package/dist/types/chartType/column/column.d.ts +78 -2
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +78 -2
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +78 -2
- package/dist/types/chartType/line/line.d.ts +163 -4
- package/dist/types/chartType/scatter/scatter.d.ts +82 -2
- package/dist/types/vseed.d.ts +1505 -117
- package/dist/umd/index.js +101 -35
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
package/dist/umd/index.js
CHANGED
@@ -3201,6 +3201,20 @@
|
|
3201
3201
|
records: records
|
3202
3202
|
};
|
3203
3203
|
};
|
3204
|
+
const progressive = (spec, context)=>{
|
3205
|
+
const result = {
|
3206
|
+
...spec
|
3207
|
+
};
|
3208
|
+
const { advancedVSeed } = context;
|
3209
|
+
const { dataset } = advancedVSeed;
|
3210
|
+
const size = dataset.length;
|
3211
|
+
if (size < 5000) return result;
|
3212
|
+
result.large = true;
|
3213
|
+
result.largeThreshold = 5000;
|
3214
|
+
result.progressiveStep = 400;
|
3215
|
+
result.progressiveThreshold = 8000;
|
3216
|
+
return result;
|
3217
|
+
};
|
3204
3218
|
const initColumn = (spec, context)=>{
|
3205
3219
|
const result = {
|
3206
3220
|
...spec
|
@@ -3255,7 +3269,7 @@
|
|
3255
3269
|
result.direction = 'horizontal';
|
3256
3270
|
result.yField = [
|
3257
3271
|
encoding[0].y[0],
|
3258
|
-
unfoldInfo.
|
3272
|
+
unfoldInfo.groupId
|
3259
3273
|
];
|
3260
3274
|
result.xField = encoding[0].x[0];
|
3261
3275
|
result.seriesField = encoding[0].group[0];
|
@@ -3404,7 +3418,7 @@
|
|
3404
3418
|
result.direction = 'vertical';
|
3405
3419
|
result.xField = [
|
3406
3420
|
encoding[0].x[0],
|
3407
|
-
unfoldInfo.
|
3421
|
+
unfoldInfo.groupId
|
3408
3422
|
];
|
3409
3423
|
result.yField = encoding[0].y[0];
|
3410
3424
|
result.seriesField = encoding[0].group[0];
|
@@ -3424,7 +3438,7 @@
|
|
3424
3438
|
const { advancedVSeed } = context;
|
3425
3439
|
const { encoding, dataset } = advancedVSeed;
|
3426
3440
|
if (!encoding[0].angle || !encoding[0].radius || !encoding[0].group) return result;
|
3427
|
-
const showStroke = dataset.length
|
3441
|
+
const showStroke = dataset.length <= 30;
|
3428
3442
|
result.type = 'pie';
|
3429
3443
|
result.outerRadius = 0.8;
|
3430
3444
|
result.innerRadius = 0;
|
@@ -3460,7 +3474,7 @@
|
|
3460
3474
|
const { advancedVSeed } = context;
|
3461
3475
|
const { encoding, dataset } = advancedVSeed;
|
3462
3476
|
if (!encoding[0].angle || !encoding[0].radius || !encoding[0].group) return result;
|
3463
|
-
const showStroke = dataset.length
|
3477
|
+
const showStroke = dataset.length <= 30;
|
3464
3478
|
result.type = 'pie';
|
3465
3479
|
result.outerRadius = 0.8;
|
3466
3480
|
result.innerRadius = 0.8 * result.outerRadius;
|
@@ -3535,7 +3549,7 @@
|
|
3535
3549
|
result.type = 'rose';
|
3536
3550
|
result.categoryField = [
|
3537
3551
|
encoding[0].angle[0],
|
3538
|
-
unfoldInfo.
|
3552
|
+
unfoldInfo.groupId
|
3539
3553
|
];
|
3540
3554
|
result.valueField = encoding[0].radius[0];
|
3541
3555
|
result.seriesField = encoding[0].group[0];
|
@@ -4186,7 +4200,7 @@
|
|
4186
4200
|
...spec
|
4187
4201
|
};
|
4188
4202
|
const { advancedVSeed } = context;
|
4189
|
-
const { measures, datasetReshapeInfo, chartType } = advancedVSeed;
|
4203
|
+
const { measures, datasetReshapeInfo, chartType, locale } = advancedVSeed;
|
4190
4204
|
const baseConfig = advancedVSeed.config[chartType];
|
4191
4205
|
const { tooltip = {
|
4192
4206
|
enable: true
|
@@ -4215,7 +4229,7 @@
|
|
4215
4229
|
const formatter = createFormatter(format);
|
4216
4230
|
return formatter(value);
|
4217
4231
|
}
|
4218
|
-
if (autoFormat) return autoFormatter(value);
|
4232
|
+
if (autoFormat) return autoFormatter(value, locale);
|
4219
4233
|
return String(value);
|
4220
4234
|
}
|
4221
4235
|
}
|
@@ -4237,7 +4251,7 @@
|
|
4237
4251
|
const formatter = createFormatter(format);
|
4238
4252
|
return formatter(value);
|
4239
4253
|
}
|
4240
|
-
if (autoFormat) return autoFormatter(value);
|
4254
|
+
if (autoFormat) return autoFormatter(value, locale);
|
4241
4255
|
return String(value);
|
4242
4256
|
}
|
4243
4257
|
}
|
@@ -4928,14 +4942,15 @@
|
|
4928
4942
|
].includes(selector.op));
|
4929
4943
|
const barStyle_barStyle = (spec, context)=>{
|
4930
4944
|
const { advancedVSeed } = context;
|
4931
|
-
const { markStyle } = advancedVSeed;
|
4945
|
+
const { markStyle, dataset } = advancedVSeed;
|
4932
4946
|
const { barStyle } = markStyle;
|
4947
|
+
const showStroke = dataset.length <= 100;
|
4933
4948
|
const result = {
|
4934
4949
|
...spec,
|
4935
4950
|
bar: {
|
4936
4951
|
style: {
|
4937
4952
|
stroke: '#fff',
|
4938
|
-
lineWidth: 1
|
4953
|
+
lineWidth: showStroke ? 1 : 0
|
4939
4954
|
},
|
4940
4955
|
state: {
|
4941
4956
|
hover: {
|
@@ -4971,10 +4986,13 @@
|
|
4971
4986
|
style: {
|
4972
4987
|
fill: barColor,
|
4973
4988
|
fillOpacity: barColorOpacity,
|
4974
|
-
|
4975
|
-
|
4976
|
-
|
4977
|
-
|
4989
|
+
cornerRadius: barRadius,
|
4990
|
+
innerBorder: {
|
4991
|
+
stroke: barBorderColor,
|
4992
|
+
lineWidth: barBorderWidth,
|
4993
|
+
distance: (barBorderWidth || 0) / 2,
|
4994
|
+
lineDash: lineDash
|
4995
|
+
}
|
4978
4996
|
}
|
4979
4997
|
}
|
4980
4998
|
};
|
@@ -5023,9 +5041,12 @@
|
|
5023
5041
|
size: pointSize,
|
5024
5042
|
fill: pointColor,
|
5025
5043
|
fillOpacity: pointColorOpacity,
|
5026
|
-
|
5027
|
-
|
5028
|
-
|
5044
|
+
innerBorder: {
|
5045
|
+
stroke: pointBorderColor,
|
5046
|
+
lineWidth: pointBorderWidth,
|
5047
|
+
distance: (pointBorderWidth || 0) / 2,
|
5048
|
+
lineDash: lineDash
|
5049
|
+
}
|
5029
5050
|
}
|
5030
5051
|
}
|
5031
5052
|
};
|
@@ -5865,6 +5886,7 @@
|
|
5865
5886
|
color_color,
|
5866
5887
|
background_backgroundColor,
|
5867
5888
|
datasetXY,
|
5889
|
+
progressive,
|
5868
5890
|
xBand,
|
5869
5891
|
yLinear,
|
5870
5892
|
label_label,
|
@@ -5889,6 +5911,7 @@
|
|
5889
5911
|
color_color,
|
5890
5912
|
background_backgroundColor,
|
5891
5913
|
datasetXY,
|
5914
|
+
progressive,
|
5892
5915
|
xBand,
|
5893
5916
|
yLinear,
|
5894
5917
|
label_label,
|
@@ -5916,6 +5939,7 @@
|
|
5916
5939
|
color_color,
|
5917
5940
|
background_backgroundColor,
|
5918
5941
|
datasetXY,
|
5942
|
+
progressive,
|
5919
5943
|
xBand,
|
5920
5944
|
yLinear,
|
5921
5945
|
label_label,
|
@@ -5940,6 +5964,7 @@
|
|
5940
5964
|
color_color,
|
5941
5965
|
background_backgroundColor,
|
5942
5966
|
datasetXY,
|
5967
|
+
progressive,
|
5943
5968
|
xBand,
|
5944
5969
|
yLinear,
|
5945
5970
|
label_label,
|
@@ -5964,6 +5989,7 @@
|
|
5964
5989
|
color_color,
|
5965
5990
|
background_backgroundColor,
|
5966
5991
|
datasetXY,
|
5992
|
+
progressive,
|
5967
5993
|
xBand,
|
5968
5994
|
yLinear,
|
5969
5995
|
label_label,
|
@@ -5987,6 +6013,7 @@
|
|
5987
6013
|
color_color,
|
5988
6014
|
background_backgroundColor,
|
5989
6015
|
datasetXY,
|
6016
|
+
progressive,
|
5990
6017
|
xBand,
|
5991
6018
|
yLinear,
|
5992
6019
|
label_label,
|
@@ -6013,6 +6040,7 @@
|
|
6013
6040
|
background_backgroundColor,
|
6014
6041
|
percent,
|
6015
6042
|
datasetXY,
|
6043
|
+
progressive,
|
6016
6044
|
xBand,
|
6017
6045
|
yLinear,
|
6018
6046
|
label_label,
|
@@ -6038,6 +6066,7 @@
|
|
6038
6066
|
percent,
|
6039
6067
|
background_backgroundColor,
|
6040
6068
|
datasetXY,
|
6069
|
+
progressive,
|
6041
6070
|
xBand,
|
6042
6071
|
yLinear,
|
6043
6072
|
label_label,
|
@@ -6062,6 +6091,7 @@
|
|
6062
6091
|
color_color,
|
6063
6092
|
background_backgroundColor,
|
6064
6093
|
datasetYX,
|
6094
|
+
progressive,
|
6065
6095
|
xLinear,
|
6066
6096
|
yBand,
|
6067
6097
|
label_label,
|
@@ -6085,6 +6115,7 @@
|
|
6085
6115
|
color_color,
|
6086
6116
|
background_backgroundColor,
|
6087
6117
|
datasetYX,
|
6118
|
+
progressive,
|
6088
6119
|
xLinear,
|
6089
6120
|
yBand,
|
6090
6121
|
label_label,
|
@@ -6110,6 +6141,7 @@
|
|
6110
6141
|
color_color,
|
6111
6142
|
background_backgroundColor,
|
6112
6143
|
datasetYX,
|
6144
|
+
progressive,
|
6113
6145
|
xLinear,
|
6114
6146
|
yBand,
|
6115
6147
|
label_label,
|
@@ -6158,6 +6190,7 @@
|
|
6158
6190
|
background_backgroundColor,
|
6159
6191
|
percent,
|
6160
6192
|
datasetYX,
|
6193
|
+
progressive,
|
6161
6194
|
xLinear,
|
6162
6195
|
yBand,
|
6163
6196
|
label_label,
|
@@ -6206,6 +6239,7 @@
|
|
6206
6239
|
color_color,
|
6207
6240
|
background_backgroundColor,
|
6208
6241
|
datasetXY,
|
6242
|
+
progressive,
|
6209
6243
|
xBand,
|
6210
6244
|
yLinear,
|
6211
6245
|
label_label,
|
@@ -6232,6 +6266,7 @@
|
|
6232
6266
|
background_backgroundColor,
|
6233
6267
|
stackInverse,
|
6234
6268
|
datasetXY,
|
6269
|
+
progressive,
|
6235
6270
|
xBand,
|
6236
6271
|
yLinear,
|
6237
6272
|
label_label,
|
@@ -6260,6 +6295,7 @@
|
|
6260
6295
|
background_backgroundColor,
|
6261
6296
|
percent,
|
6262
6297
|
datasetXY,
|
6298
|
+
progressive,
|
6263
6299
|
xBand,
|
6264
6300
|
yLinear,
|
6265
6301
|
label_label,
|
@@ -6286,6 +6322,7 @@
|
|
6286
6322
|
background_backgroundColor,
|
6287
6323
|
percent,
|
6288
6324
|
datasetXY,
|
6325
|
+
progressive,
|
6289
6326
|
xBand,
|
6290
6327
|
yLinear,
|
6291
6328
|
label_label,
|
@@ -6322,6 +6359,7 @@
|
|
6322
6359
|
pointStateDimensionHover
|
6323
6360
|
]),
|
6324
6361
|
datasetXY,
|
6362
|
+
progressive,
|
6325
6363
|
background_backgroundColor,
|
6326
6364
|
xBand,
|
6327
6365
|
yLinear,
|
@@ -6354,6 +6392,7 @@
|
|
6354
6392
|
]),
|
6355
6393
|
background_backgroundColor,
|
6356
6394
|
datasetXY,
|
6395
|
+
progressive,
|
6357
6396
|
xBand,
|
6358
6397
|
yLinear,
|
6359
6398
|
label_label,
|
@@ -6374,6 +6413,7 @@
|
|
6374
6413
|
color_color,
|
6375
6414
|
background_backgroundColor,
|
6376
6415
|
datasetXY,
|
6416
|
+
progressive,
|
6377
6417
|
xLinear,
|
6378
6418
|
yLinear,
|
6379
6419
|
label_label,
|
@@ -6398,6 +6438,7 @@
|
|
6398
6438
|
color_color,
|
6399
6439
|
background_backgroundColor,
|
6400
6440
|
datasetXY,
|
6441
|
+
progressive,
|
6401
6442
|
xLinear,
|
6402
6443
|
yLinear,
|
6403
6444
|
label_label,
|
@@ -6423,6 +6464,7 @@
|
|
6423
6464
|
color_color,
|
6424
6465
|
background_backgroundColor,
|
6425
6466
|
datasetXY,
|
6467
|
+
progressive,
|
6426
6468
|
label_label,
|
6427
6469
|
tooltip_tooltip,
|
6428
6470
|
discreteLegend,
|
@@ -6441,6 +6483,7 @@
|
|
6441
6483
|
color_color,
|
6442
6484
|
background_backgroundColor,
|
6443
6485
|
datasetXY,
|
6486
|
+
progressive,
|
6444
6487
|
label_label,
|
6445
6488
|
tooltip_tooltip,
|
6446
6489
|
annotationPoint_annotationPoint,
|
@@ -6460,6 +6503,7 @@
|
|
6460
6503
|
color_color,
|
6461
6504
|
background_backgroundColor,
|
6462
6505
|
datasetXY,
|
6506
|
+
progressive,
|
6463
6507
|
label_label,
|
6464
6508
|
tooltip_tooltip,
|
6465
6509
|
discreteLegend,
|
@@ -6478,6 +6522,7 @@
|
|
6478
6522
|
color_color,
|
6479
6523
|
background_backgroundColor,
|
6480
6524
|
datasetXY,
|
6525
|
+
progressive,
|
6481
6526
|
label_label,
|
6482
6527
|
tooltip_tooltip,
|
6483
6528
|
annotationPoint_annotationPoint,
|
@@ -6499,6 +6544,7 @@
|
|
6499
6544
|
color_color,
|
6500
6545
|
background_backgroundColor,
|
6501
6546
|
datasetXY,
|
6547
|
+
progressive,
|
6502
6548
|
radiusAxis,
|
6503
6549
|
angleAxis,
|
6504
6550
|
label_label,
|
@@ -6518,6 +6564,7 @@
|
|
6518
6564
|
color_color,
|
6519
6565
|
background_backgroundColor,
|
6520
6566
|
datasetXY,
|
6567
|
+
progressive,
|
6521
6568
|
radiusAxis,
|
6522
6569
|
angleAxis,
|
6523
6570
|
label_label,
|
@@ -6537,6 +6584,7 @@
|
|
6537
6584
|
color_color,
|
6538
6585
|
background_backgroundColor,
|
6539
6586
|
datasetXY,
|
6587
|
+
progressive,
|
6540
6588
|
radiusAxis,
|
6541
6589
|
angleAxis,
|
6542
6590
|
label_label,
|
@@ -6559,6 +6607,7 @@
|
|
6559
6607
|
color_color,
|
6560
6608
|
background_backgroundColor,
|
6561
6609
|
datasetXY,
|
6610
|
+
progressive,
|
6562
6611
|
radiusAxis,
|
6563
6612
|
angleAxis,
|
6564
6613
|
label_label,
|
@@ -6581,6 +6630,7 @@
|
|
6581
6630
|
color_color,
|
6582
6631
|
background_backgroundColor,
|
6583
6632
|
datasetXY,
|
6633
|
+
progressive,
|
6584
6634
|
radarAngleAxis,
|
6585
6635
|
radarRadiusAxis,
|
6586
6636
|
label_label,
|
@@ -6602,6 +6652,7 @@
|
|
6602
6652
|
color_color,
|
6603
6653
|
background_backgroundColor,
|
6604
6654
|
datasetXY,
|
6655
|
+
progressive,
|
6605
6656
|
radarAngleAxis,
|
6606
6657
|
radarRadiusAxis,
|
6607
6658
|
label_label,
|
@@ -7491,6 +7542,7 @@
|
|
7491
7542
|
selectionStyle
|
7492
7543
|
];
|
7493
7544
|
const buildAdvanced = (builder)=>{
|
7545
|
+
const start = 'undefined' != typeof performance ? performance.now() : Date.now();
|
7494
7546
|
const { chartType } = builder.vseed;
|
7495
7547
|
if (!chartType) throw new Error('chartType is nil in buildAdvanced');
|
7496
7548
|
const pipeline = builder.getAdvancedPipeline(chartType);
|
@@ -7504,9 +7556,13 @@
|
|
7504
7556
|
} catch (e) {
|
7505
7557
|
console.error(e);
|
7506
7558
|
throw new Error("buildAdvanced error, see error info in console");
|
7559
|
+
} finally{
|
7560
|
+
const end = 'undefined' != typeof performance ? performance.now() : Date.now();
|
7561
|
+
builder.performance['buildAdvanced'] = `${(end - start).toFixed(4)}ms`;
|
7507
7562
|
}
|
7508
7563
|
};
|
7509
7564
|
const buildSpec = (builder, advancedVSeed)=>{
|
7565
|
+
const start = 'undefined' != typeof performance ? performance.now() : Date.now();
|
7510
7566
|
const { chartType } = builder.vseed;
|
7511
7567
|
if (!chartType) throw new Error('chartType is nil in buildSpec');
|
7512
7568
|
const pipeline = builder.getSpecPipeline(chartType);
|
@@ -7520,6 +7576,9 @@
|
|
7520
7576
|
} catch (e) {
|
7521
7577
|
console.error(e);
|
7522
7578
|
throw new Error("buildSpec error, see error info in console");
|
7579
|
+
} finally{
|
7580
|
+
const end = 'undefined' != typeof performance ? performance.now() : Date.now();
|
7581
|
+
builder.performance['buildSpec'] = `${(end - start).toFixed(4)}ms`;
|
7523
7582
|
}
|
7524
7583
|
};
|
7525
7584
|
const build = (builder)=>{
|
@@ -7555,6 +7614,7 @@
|
|
7555
7614
|
_vseed;
|
7556
7615
|
_advancedVSeed = null;
|
7557
7616
|
_spec = null;
|
7617
|
+
_performance = {};
|
7558
7618
|
constructor(vseed){
|
7559
7619
|
this._vseed = vseed;
|
7560
7620
|
this._vseed.locale = vseed.locale || intl.getLocale();
|
@@ -7596,6 +7656,12 @@
|
|
7596
7656
|
set spec(value) {
|
7597
7657
|
this._spec = value;
|
7598
7658
|
}
|
7659
|
+
get performance() {
|
7660
|
+
return this._performance;
|
7661
|
+
}
|
7662
|
+
set performance(value) {
|
7663
|
+
this._performance = value;
|
7664
|
+
}
|
7599
7665
|
static _advancedPipelineMap = {};
|
7600
7666
|
static _specPipelineMap = {};
|
7601
7667
|
static _customAdvancedPipe = {};
|
@@ -19709,8 +19775,8 @@
|
|
19709
19775
|
sortAxis: zSortAxis.optional(),
|
19710
19776
|
sortLegend: zSortLegend.optional(),
|
19711
19777
|
theme: zTheme.optional(),
|
19712
|
-
pointStyle: zPointStyle.optional(),
|
19713
|
-
lineStyle: zLineStyle.optional(),
|
19778
|
+
pointStyle: schemas_array(zPointStyle).or(zPointStyle).optional(),
|
19779
|
+
lineStyle: schemas_array(zLineStyle).or(zLineStyle).optional(),
|
19714
19780
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19715
19781
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19716
19782
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19732,7 +19798,7 @@
|
|
19732
19798
|
crosshairRect: zCrosshairRect.optional(),
|
19733
19799
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19734
19800
|
theme: zTheme.optional(),
|
19735
|
-
barStyle: zBarStyle.optional(),
|
19801
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19736
19802
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19737
19803
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19738
19804
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19754,7 +19820,7 @@
|
|
19754
19820
|
crosshairRect: zCrosshairRect.optional(),
|
19755
19821
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19756
19822
|
theme: zTheme.optional(),
|
19757
|
-
barStyle: zBarStyle.optional(),
|
19823
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19758
19824
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19759
19825
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19760
19826
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19776,7 +19842,7 @@
|
|
19776
19842
|
crosshairRect: zCrosshairRect.optional(),
|
19777
19843
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19778
19844
|
theme: zTheme.optional(),
|
19779
|
-
barStyle: zBarStyle.optional(),
|
19845
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19780
19846
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19781
19847
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19782
19848
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19798,7 +19864,7 @@
|
|
19798
19864
|
crosshairRect: zCrosshairRect.optional(),
|
19799
19865
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19800
19866
|
theme: zTheme.optional(),
|
19801
|
-
barStyle: zBarStyle.optional(),
|
19867
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19802
19868
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19803
19869
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19804
19870
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19820,7 +19886,7 @@
|
|
19820
19886
|
crosshairRect: zCrosshairRect.optional(),
|
19821
19887
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19822
19888
|
theme: zTheme.optional(),
|
19823
|
-
barStyle: zBarStyle.optional(),
|
19889
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19824
19890
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19825
19891
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19826
19892
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19842,7 +19908,7 @@
|
|
19842
19908
|
crosshairRect: zCrosshairRect.optional(),
|
19843
19909
|
stackCornerRadius: zStackCornerRadius.optional(),
|
19844
19910
|
theme: zTheme.optional(),
|
19845
|
-
barStyle: zBarStyle.optional(),
|
19911
|
+
barStyle: schemas_array(zBarStyle).or(zBarStyle).optional(),
|
19846
19912
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19847
19913
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19848
19914
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19863,9 +19929,9 @@
|
|
19863
19929
|
yAxis: zYLinearAxis.optional(),
|
19864
19930
|
crosshairLine: zCrosshairLine.optional(),
|
19865
19931
|
theme: zTheme.optional(),
|
19866
|
-
pointStyle: zPointStyle.optional(),
|
19867
|
-
lineStyle: zLineStyle.optional(),
|
19868
|
-
areaStyle: zAreaStyle.optional(),
|
19932
|
+
pointStyle: schemas_array(zPointStyle).or(zPointStyle).optional(),
|
19933
|
+
lineStyle: schemas_array(zLineStyle).or(zLineStyle).optional(),
|
19934
|
+
areaStyle: schemas_array(zAreaStyle).or(zAreaStyle).optional(),
|
19869
19935
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19870
19936
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19871
19937
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19886,9 +19952,9 @@
|
|
19886
19952
|
yAxis: zYLinearAxis.optional(),
|
19887
19953
|
crosshairLine: zCrosshairLine.optional(),
|
19888
19954
|
theme: zTheme.optional(),
|
19889
|
-
pointStyle: zPointStyle.optional(),
|
19890
|
-
lineStyle: zLineStyle.optional(),
|
19891
|
-
areaStyle: zAreaStyle.optional(),
|
19955
|
+
pointStyle: schemas_array(zPointStyle).or(zPointStyle).optional(),
|
19956
|
+
lineStyle: schemas_array(zLineStyle).or(zLineStyle).optional(),
|
19957
|
+
areaStyle: schemas_array(zAreaStyle).or(zAreaStyle).optional(),
|
19892
19958
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19893
19959
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19894
19960
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19906,9 +19972,9 @@
|
|
19906
19972
|
yAxis: zYLinearAxis.optional(),
|
19907
19973
|
crosshairLine: zCrosshairLine.optional(),
|
19908
19974
|
theme: zTheme.optional(),
|
19909
|
-
pointStyle: zPointStyle.optional(),
|
19910
|
-
lineStyle: zLineStyle.optional(),
|
19911
|
-
areaStyle: zAreaStyle.optional(),
|
19975
|
+
pointStyle: schemas_array(zPointStyle).or(zPointStyle).optional(),
|
19976
|
+
lineStyle: schemas_array(zLineStyle).or(zLineStyle).optional(),
|
19977
|
+
areaStyle: schemas_array(zAreaStyle).or(zAreaStyle).optional(),
|
19912
19978
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19913
19979
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19914
19980
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|
@@ -19929,7 +19995,7 @@
|
|
19929
19995
|
yAxis: zYLinearAxis.optional(),
|
19930
19996
|
crosshairLine: zCrosshairLine.optional(),
|
19931
19997
|
theme: zTheme.optional(),
|
19932
|
-
pointStyle: zPointStyle.optional(),
|
19998
|
+
pointStyle: schemas_array(zPointStyle).or(zPointStyle).optional(),
|
19933
19999
|
annotationPoint: schemas_array(zAnnotationPoint).or(zAnnotationPoint).optional(),
|
19934
20000
|
annotationVerticalLine: schemas_array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).optional(),
|
19935
20001
|
annotationHorizontalLine: schemas_array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).optional(),
|