asposeslidescloud 22.4.0 → 22.6.0

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/model.d.ts CHANGED
@@ -487,6 +487,143 @@ export declare class ChartLinesFormat {
487
487
  */
488
488
  lineFormat?: LineFormat;
489
489
  }
490
+ /**
491
+ * Chart series group. Defines common properties for a group of series.
492
+ */
493
+ export declare class ChartSeriesGroup {
494
+ /**
495
+ * Returns a type of this series group.
496
+ */
497
+ type?: ChartSeriesGroup.TypeEnum;
498
+ /**
499
+ * Specifies the space between bar or column clusters, as a percentage of the bar or column width.
500
+ */
501
+ gapWidth?: number;
502
+ /**
503
+ * Returns or sets the distance, as a percentage of the marker width, between the data series in a 3D chart.
504
+ */
505
+ gapDepth?: number;
506
+ /**
507
+ * Gets or sets the angle of the first pie or doughnut chart slice, in degrees (clockwise from up, from 0 to 360 degrees).
508
+ */
509
+ firstSliceAngle?: number;
510
+ /**
511
+ * Specifies that each data marker in the series has a different color.
512
+ */
513
+ isColorVaried?: boolean;
514
+ /**
515
+ * True if chart has series lines. Applied to stacked bar and OfPie charts.
516
+ */
517
+ hasSeriesLines?: boolean;
518
+ /**
519
+ * Specifies how much bars and columns shall overlap on 2-D charts (from -100 to 100).
520
+ */
521
+ overlap?: number;
522
+ /**
523
+ * Specifies the size of the second pie or bar of a pie-of-pie chart or a bar-of-pie chart, as a percentage of the size of the first pie (can be between 5 and 200 percents).
524
+ */
525
+ secondPieSize?: number;
526
+ /**
527
+ * Specifies a value that shall be used to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart. Is used together with PieSplitBy property.
528
+ */
529
+ pieSplitPosition?: number;
530
+ /**
531
+ * Specifies how to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart.
532
+ */
533
+ pieSplitBy?: ChartSeriesGroup.PieSplitByEnum;
534
+ /**
535
+ * Specifies the size of the hole in a doughnut chart (can be between 10 and 90 percents of the size of the plot area.).
536
+ */
537
+ doughnutHoleSize?: number;
538
+ /**
539
+ * Specifies the scale factor for the bubble chart (can be between 0 and 300 percents of the default size). Read/write Int32.
540
+ */
541
+ bubbleSizeScale?: number;
542
+ /**
543
+ * Specifies HiLowLines format. HiLowLines applied with HiLowClose, OpenHiLowClose, VolumeHiLowClose and VolumeOpenHiLowClose chart types.
544
+ */
545
+ hiLowLinesFormat?: ChartLinesFormat;
546
+ /**
547
+ * Specifies how the bubble size values are represented on the bubble chart. Read/write BubbleSizeRepresentationType.
548
+ */
549
+ bubbleSizeRepresentation?: ChartSeriesGroup.BubbleSizeRepresentationEnum;
550
+ }
551
+ export declare namespace ChartSeriesGroup {
552
+ enum TypeEnum {
553
+ BarOfPieChart,
554
+ PieOfPieChart,
555
+ DoughnutChart,
556
+ PieChart,
557
+ AreaChartArea,
558
+ AreaChartPercentsStackedArea,
559
+ AreaChartStackedArea,
560
+ BarChartHorizClustered,
561
+ BarChartHorizStacked,
562
+ BarChartHorizPercentsStacked,
563
+ BarChartVertClustered,
564
+ BarChartVertStacked,
565
+ BarChartVertPercentsStacked,
566
+ LineChartLine,
567
+ LineChartStackedLine,
568
+ LineChartPercentsStackedLine,
569
+ RadarChart,
570
+ FilledRadarChart,
571
+ StockHighLowClose,
572
+ StockOpenHighLowClose,
573
+ StockVolumeHighLowClose,
574
+ StockVolumeOpenHighLowClose,
575
+ ScatterStraightMarker,
576
+ ScatterSmoothMarker,
577
+ AreaChartArea3D,
578
+ AreaChartStackedArea3D,
579
+ AreaChartPercentsStackedArea3D,
580
+ Line3DChart,
581
+ Pie3DChart,
582
+ Bar3DChartVert,
583
+ Bar3DChartVertClustered,
584
+ Bar3DChartVertPercentsStackedColumn3D,
585
+ Bar3DChartVertPercentsStackedCone,
586
+ Bar3DChartVertPercentsStackedCylinder,
587
+ Bar3DChartVertPercentsStackedPyramid,
588
+ Bar3DChartVertStackedColumn3D,
589
+ Bar3DChartVertStackedCone,
590
+ Bar3DChartVertStackedCylinder,
591
+ Bar3DChartVertStackedPyramid,
592
+ Bar3DChartHorizClustered,
593
+ Bar3DChartHorizStackedBar3D,
594
+ Bar3DChartHorizStackedCone,
595
+ Bar3DChartHorizStackedCylinder,
596
+ Bar3DChartHorizStackedPyramid,
597
+ Bar3DChartHorizPercentsStackedBar3D,
598
+ Bar3DChartHorizPercentsStackedCone,
599
+ Bar3DChartHorizPercentsStackedCylinder,
600
+ Bar3DChartHorizPercentsStackedPyramid,
601
+ SurfaceChartContour,
602
+ SurfaceChartWireframeContour,
603
+ SurfaceChartSurface3D,
604
+ SurfaceChartWireframeSurface3D,
605
+ BubbleChart,
606
+ HistogramChart,
607
+ ParetoLineChart,
608
+ BoxAndWhiskerChart,
609
+ WaterfallChart,
610
+ FunnelChart,
611
+ TreemapChart,
612
+ MapChart,
613
+ SunburstChart
614
+ }
615
+ enum PieSplitByEnum {
616
+ Default,
617
+ Custom,
618
+ ByPercentage,
619
+ ByPos,
620
+ ByValue
621
+ }
622
+ enum BubbleSizeRepresentationEnum {
623
+ Area,
624
+ Width
625
+ }
626
+ }
490
627
  /**
491
628
  * Represents chart title
492
629
  */
@@ -1222,6 +1359,33 @@ export declare enum ImageExportFormat {
1222
1359
  'Bmp',
1223
1360
  'Tiff'
1224
1361
  }
1362
+ /**
1363
+ * Image transform effect
1364
+ */
1365
+ export declare class ImageTransformEffect {
1366
+ type?: ImageTransformEffect.TypeEnum;
1367
+ }
1368
+ export declare namespace ImageTransformEffect {
1369
+ enum TypeEnum {
1370
+ AlphaBiLevel,
1371
+ AlphaCeiling,
1372
+ AlphaFloor,
1373
+ AlphaInverse,
1374
+ AlphaModulate,
1375
+ AlphaModulateFixed,
1376
+ AlphaReplace,
1377
+ BiLevel,
1378
+ Blur,
1379
+ ColorChange,
1380
+ ColorReplace,
1381
+ Duotone,
1382
+ FillOverlay,
1383
+ GrayScale,
1384
+ Hsl,
1385
+ Luminance,
1386
+ Tint
1387
+ }
1388
+ }
1225
1389
  /**
1226
1390
  * Represents inner shadow effect
1227
1391
  */
@@ -2135,6 +2299,14 @@ export declare class ResourceUri {
2135
2299
  * Gets or sets the title of link.
2136
2300
  */
2137
2301
  title?: string;
2302
+ /**
2303
+ * Resource slide index.
2304
+ */
2305
+ slideIndex?: number;
2306
+ /**
2307
+ * Resource shape index.
2308
+ */
2309
+ shapeIndex?: number;
2138
2310
  }
2139
2311
  /**
2140
2312
  * A chart series.
@@ -2535,6 +2707,10 @@ export declare class SmartArtNode {
2535
2707
  * Organization chart layout type associated with current node.
2536
2708
  */
2537
2709
  orgChartLayout: SmartArtNode.OrgChartLayoutEnum;
2710
+ /**
2711
+ * Get or sets list to paragraphs list
2712
+ */
2713
+ paragraphs?: ResourceUri;
2538
2714
  }
2539
2715
  export declare namespace SmartArtNode {
2540
2716
  enum OrgChartLayoutEnum {
@@ -2998,6 +3174,74 @@ export declare class AddSlide extends Task {
2998
3174
  }
2999
3175
  export declare namespace AddSlide {
3000
3176
  }
3177
+ /**
3178
+ * Represents an Alpha Bi-Level effect.
3179
+ */
3180
+ export declare class AlphaBiLevelEffect extends ImageTransformEffect {
3181
+ constructor();
3182
+ /**
3183
+ * Returns effect threshold.
3184
+ */
3185
+ threshold: number;
3186
+ }
3187
+ export declare namespace AlphaBiLevelEffect {
3188
+ }
3189
+ /**
3190
+ * Represents an Alpha Ceiling effect.
3191
+ */
3192
+ export declare class AlphaCeilingEffect extends ImageTransformEffect {
3193
+ constructor();
3194
+ }
3195
+ export declare namespace AlphaCeilingEffect {
3196
+ }
3197
+ /**
3198
+ * /// Represents an Alpha Floor effect.
3199
+ */
3200
+ export declare class AlphaFloorEffect extends ImageTransformEffect {
3201
+ constructor();
3202
+ }
3203
+ export declare namespace AlphaFloorEffect {
3204
+ }
3205
+ /**
3206
+ * Represents an Alpha Inverse effect.
3207
+ */
3208
+ export declare class AlphaInverseEffect extends ImageTransformEffect {
3209
+ constructor();
3210
+ }
3211
+ export declare namespace AlphaInverseEffect {
3212
+ }
3213
+ /**
3214
+ * Represents an Alpha Modulate effect.
3215
+ */
3216
+ export declare class AlphaModulateEffect extends ImageTransformEffect {
3217
+ constructor();
3218
+ }
3219
+ export declare namespace AlphaModulateEffect {
3220
+ }
3221
+ /**
3222
+ * Represents an Alpha Modulate Fixed effect.
3223
+ */
3224
+ export declare class AlphaModulateFixedEffect extends ImageTransformEffect {
3225
+ constructor();
3226
+ /**
3227
+ * Returns an amount of effect in percents.
3228
+ */
3229
+ amount: number;
3230
+ }
3231
+ export declare namespace AlphaModulateFixedEffect {
3232
+ }
3233
+ /**
3234
+ * Represents an Alpha Replace Effect effect.
3235
+ */
3236
+ export declare class AlphaReplaceEffect extends ImageTransformEffect {
3237
+ constructor();
3238
+ /**
3239
+ * The new opacity value.
3240
+ */
3241
+ alpha: number;
3242
+ }
3243
+ export declare namespace AlphaReplaceEffect {
3244
+ }
3001
3245
  /**
3002
3246
  * Arc segment of the geometry path
3003
3247
  */
@@ -3100,6 +3344,18 @@ export declare class Base64InputFile extends InputFile {
3100
3344
  }
3101
3345
  export declare namespace Base64InputFile {
3102
3346
  }
3347
+ /**
3348
+ * Represents an BiLevel effect.
3349
+ */
3350
+ export declare class BiLevelEffect extends ImageTransformEffect {
3351
+ constructor();
3352
+ /**
3353
+ * Returns effect threshold.
3354
+ */
3355
+ threshold: number;
3356
+ }
3357
+ export declare namespace BiLevelEffect {
3358
+ }
3103
3359
  /**
3104
3360
  * Specifies an instance of mathematical text that contained within a MathParagraph and starts on its own line.
3105
3361
  */
@@ -3112,6 +3368,22 @@ export declare class BlockElement extends MathElement {
3112
3368
  }
3113
3369
  export declare namespace BlockElement {
3114
3370
  }
3371
+ /**
3372
+ * Represents a Blur effect that is applied to the entire shape, including its fill. All color channels, including alpha, are affected.
3373
+ */
3374
+ export declare class BlurImageEffect extends ImageTransformEffect {
3375
+ constructor();
3376
+ /**
3377
+ * Returns or sets blur radius.
3378
+ */
3379
+ radius: number;
3380
+ /**
3381
+ * Determines whether the bounds of the object should be grown as a result of the blurring. True indicates the bounds are grown while false indicates that they are not.
3382
+ */
3383
+ grow: boolean;
3384
+ }
3385
+ export declare namespace BlurImageEffect {
3386
+ }
3115
3387
  /**
3116
3388
  * Rectangular or some other border around the MathElement.
3117
3389
  */
@@ -3196,6 +3468,34 @@ export declare class ClosePathSegment extends PathSegment {
3196
3468
  }
3197
3469
  export declare namespace ClosePathSegment {
3198
3470
  }
3471
+ /**
3472
+ * Represents a Color Change effect.
3473
+ */
3474
+ export declare class ColorChangeEffect extends ImageTransformEffect {
3475
+ constructor();
3476
+ /**
3477
+ * Color which will be replaced.
3478
+ */
3479
+ fromColor?: string;
3480
+ /**
3481
+ * Color which will replace.
3482
+ */
3483
+ toColor?: string;
3484
+ }
3485
+ export declare namespace ColorChangeEffect {
3486
+ }
3487
+ /**
3488
+ * Represents a Color Replacement effect.
3489
+ */
3490
+ export declare class ColorReplaceEffect extends ImageTransformEffect {
3491
+ constructor();
3492
+ /**
3493
+ * Returns color format which will replace color of every pixel.
3494
+ */
3495
+ color?: string;
3496
+ }
3497
+ export declare namespace ColorReplaceEffect {
3498
+ }
3199
3499
  /**
3200
3500
  * Slide's color scheme DTO
3201
3501
  */
@@ -3376,6 +3676,22 @@ export declare class DocumentProperty extends ResourceBase {
3376
3676
  */
3377
3677
  builtIn: boolean;
3378
3678
  }
3679
+ /**
3680
+ * Represents a Duotone effect.
3681
+ */
3682
+ export declare class DuotoneEffect extends ImageTransformEffect {
3683
+ constructor();
3684
+ /**
3685
+ * Returns target color format for dark pixels.
3686
+ */
3687
+ color1?: string;
3688
+ /**
3689
+ * Returns target color format for light pixels.
3690
+ */
3691
+ color2?: string;
3692
+ }
3693
+ export declare namespace DuotoneEffect {
3694
+ }
3379
3695
  /**
3380
3696
  * File Version
3381
3697
  */
@@ -3390,6 +3706,29 @@ export declare class FileVersion extends StorageFile {
3390
3706
  */
3391
3707
  isLatest: boolean;
3392
3708
  }
3709
+ /**
3710
+ * Represents a Fill Overlay effect. A fill overlay may be used to specify an additional fill for an object and blend the two fills together.
3711
+ */
3712
+ export declare class FillOverlayImageEffect extends ImageTransformEffect {
3713
+ constructor();
3714
+ /**
3715
+ * FillBlendMode.
3716
+ */
3717
+ blend: FillOverlayImageEffect.BlendEnum;
3718
+ /**
3719
+ * Fill format.
3720
+ */
3721
+ fillFormat?: FillFormat;
3722
+ }
3723
+ export declare namespace FillOverlayImageEffect {
3724
+ enum BlendEnum {
3725
+ Darken,
3726
+ Lighten,
3727
+ Multiply,
3728
+ Overlay,
3729
+ Screen
3730
+ }
3731
+ }
3393
3732
  /**
3394
3733
  * Represents font scheme
3395
3734
  */
@@ -3414,21 +3753,21 @@ export declare class FontScheme extends ResourceBase {
3414
3753
  export declare class FormatScheme extends ResourceBase {
3415
3754
  constructor();
3416
3755
  /**
3417
- * Background style links.
3756
+ * Background styles.
3418
3757
  */
3419
- backgroundStyles?: Array<ResourceUri>;
3758
+ backgroundStyles?: Array<FillFormat>;
3420
3759
  /**
3421
- * Effect style links.
3760
+ * Effect styles.
3422
3761
  */
3423
- effectStyles?: Array<ResourceUri>;
3762
+ effectStyles?: Array<EffectFormat>;
3424
3763
  /**
3425
- * Fill style links.
3764
+ * Fill styles.
3426
3765
  */
3427
- fillStyles?: Array<ResourceUri>;
3766
+ fillStyles?: Array<FillFormat>;
3428
3767
  /**
3429
- * Line style links.
3768
+ * Line style.
3430
3769
  */
3431
- lineStyles?: Array<ResourceUri>;
3770
+ lineStyles?: Array<LineFormat>;
3432
3771
  }
3433
3772
  /**
3434
3773
  * Specifies the fraction object, consisting of a numerator and denominator separated by a fraction bar.
@@ -3526,6 +3865,14 @@ export declare namespace GradientFill {
3526
3865
  NotDefined
3527
3866
  }
3528
3867
  }
3868
+ /**
3869
+ * Represents an Gray Scale effect.
3870
+ */
3871
+ export declare class GrayScaleEffect extends ImageTransformEffect {
3872
+ constructor();
3873
+ }
3874
+ export declare namespace GrayScaleEffect {
3875
+ }
3529
3876
  /**
3530
3877
  * Specifies a grouping symbol above or below an expression, usually to highlight the relationship between elements
3531
3878
  */
@@ -3586,6 +3933,26 @@ export declare class HeaderFooter extends ResourceBase {
3586
3933
  */
3587
3934
  isSlideNumberVisible?: boolean;
3588
3935
  }
3936
+ /**
3937
+ * Represents a Hue/Saturation/Luminance effect.
3938
+ */
3939
+ export declare class HslEffect extends ImageTransformEffect {
3940
+ constructor();
3941
+ /**
3942
+ * Hue
3943
+ */
3944
+ hue: number;
3945
+ /**
3946
+ * Saturation
3947
+ */
3948
+ saturation: number;
3949
+ /**
3950
+ * Luminance
3951
+ */
3952
+ luminance: number;
3953
+ }
3954
+ export declare namespace HslEffect {
3955
+ }
3589
3956
  /**
3590
3957
  * Provides options that control how a presentation is saved in Html5 format.
3591
3958
  */
@@ -3844,6 +4211,22 @@ export declare class LineToPathSegment extends PathSegment {
3844
4211
  }
3845
4212
  export declare namespace LineToPathSegment {
3846
4213
  }
4214
+ /**
4215
+ * Represents a Luminance effect.
4216
+ */
4217
+ export declare class LuminanceEffect extends ImageTransformEffect {
4218
+ constructor();
4219
+ /**
4220
+ * Brightness
4221
+ */
4222
+ brightness: number;
4223
+ /**
4224
+ * Contrast
4225
+ */
4226
+ contrast: number;
4227
+ }
4228
+ export declare namespace LuminanceEffect {
4229
+ }
3847
4230
  /**
3848
4231
  * Master slide.
3849
4232
  */
@@ -4070,6 +4453,14 @@ export declare class OneValueChartDataPoint extends DataPoint {
4070
4453
  * Value.
4071
4454
  */
4072
4455
  value: number;
4456
+ /**
4457
+ * SetAsTotal. Applied to Waterfall data points only.
4458
+ */
4459
+ setAsTotal?: boolean;
4460
+ /**
4461
+ * True if the data point shall invert its colors if the value is negative. Applies to bar, column and bubble series.
4462
+ */
4463
+ invertIfNegative?: boolean;
4073
4464
  }
4074
4465
  /**
4075
4466
  * One value series.
@@ -4084,8 +4475,36 @@ export declare class OneValueSeries extends Series {
4084
4475
  * The number format for the series values.
4085
4476
  */
4086
4477
  numberFormatOfValues?: string;
4478
+ /**
4479
+ * True if inner points are shown. Applied to Waterfall series only.
4480
+ */
4481
+ showConnectorLines?: boolean;
4482
+ /**
4483
+ * Quartile method. Applied to BoxAndWhisker series only.
4484
+ */
4485
+ quartileMethod?: OneValueSeries.QuartileMethodEnum;
4486
+ /**
4487
+ * True if inner points are shown. Applied to BoxAndWhisker series only.
4488
+ */
4489
+ showInnerPoints?: boolean;
4490
+ /**
4491
+ * True if mean line is shown. Applied to BoxAndWhisker series only.
4492
+ */
4493
+ showMeanLine?: boolean;
4494
+ /**
4495
+ * True if mean markers are shown. Applied to BoxAndWhisker series only.
4496
+ */
4497
+ showMeanMarkers?: boolean;
4498
+ /**
4499
+ * True if outlier points are shown. Applied to BoxAndWhisker series only.
4500
+ */
4501
+ showOutlierPoints?: boolean;
4087
4502
  }
4088
4503
  export declare namespace OneValueSeries {
4504
+ enum QuartileMethodEnum {
4505
+ Exclusive,
4506
+ Inclusive
4507
+ }
4089
4508
  }
4090
4509
  /**
4091
4510
  * Represents paragraph resource
@@ -4532,6 +4951,10 @@ export declare class PictureFill extends FillFormat {
4532
4951
  * Fill mode.
4533
4952
  */
4534
4953
  pictureFillMode: PictureFill.PictureFillModeEnum;
4954
+ /**
4955
+ * Image transform effects.
4956
+ */
4957
+ imageTransformList?: Array<ImageTransformEffect>;
4535
4958
  }
4536
4959
  export declare namespace PictureFill {
4537
4960
  enum PictureFillModeEnum {
@@ -4826,9 +5249,9 @@ export declare class PptxExportOptions extends ExportOptions {
4826
5249
  }
4827
5250
  export declare namespace PptxExportOptions {
4828
5251
  enum ConformanceEnum {
4829
- Ecma3762006,
4830
- Iso295002008Transitional,
4831
- Iso295002008Strict
5252
+ Ecma376,
5253
+ Iso29500Transitional,
5254
+ Iso29500Strict
4832
5255
  }
4833
5256
  }
4834
5257
  /**
@@ -5758,6 +6181,22 @@ export declare class Theme extends ResourceBase {
5758
6181
  */
5759
6182
  formatScheme?: ResourceUri;
5760
6183
  }
6184
+ /**
6185
+ * Represents a Tint effect.
6186
+ */
6187
+ export declare class TintEffect extends ImageTransformEffect {
6188
+ constructor();
6189
+ /**
6190
+ * Hue
6191
+ */
6192
+ hue: number;
6193
+ /**
6194
+ * Amount
6195
+ */
6196
+ amount: number;
6197
+ }
6198
+ export declare namespace TintEffect {
6199
+ }
5761
6200
  /**
5762
6201
  * Update background task.
5763
6202
  */
@@ -5966,38 +6405,6 @@ export declare class XpsExportOptions extends ExportOptions {
5966
6405
  */
5967
6406
  drawSlidesFrame?: boolean;
5968
6407
  }
5969
- /**
5970
- * One value series.
5971
- */
5972
- export declare class BoxAndWhiskerSeries extends OneValueSeries {
5973
- constructor();
5974
- /**
5975
- * Quartile method.
5976
- */
5977
- quartileMethod?: BoxAndWhiskerSeries.QuartileMethodEnum;
5978
- /**
5979
- * True if inner points are shown.
5980
- */
5981
- showInnerPoints?: boolean;
5982
- /**
5983
- * True if mean line is shown.
5984
- */
5985
- showMeanLine?: boolean;
5986
- /**
5987
- * True if mean markers are shown.
5988
- */
5989
- showMeanMarkers?: boolean;
5990
- /**
5991
- * True if outlier points are shown.
5992
- */
5993
- showOutlierPoints?: boolean;
5994
- }
5995
- export declare namespace BoxAndWhiskerSeries {
5996
- enum QuartileMethodEnum {
5997
- Exclusive,
5998
- Inclusive
5999
- }
6000
- }
6001
6408
  /**
6002
6409
  * Bubble chart data point.
6003
6410
  */
@@ -6073,6 +6480,14 @@ export declare class Chart extends ShapeBase {
6073
6480
  * Gets or sets the plot area.
6074
6481
  */
6075
6482
  plotArea?: PlotArea;
6483
+ /**
6484
+ * Specifies the chart area shall have rounded corners.
6485
+ */
6486
+ hasRoundedCorners?: boolean;
6487
+ /**
6488
+ * Gets groups of series.
6489
+ */
6490
+ seriesGroups?: Array<ChartSeriesGroup>;
6076
6491
  }
6077
6492
  export declare namespace Chart {
6078
6493
  enum ChartTypeEnum {
@@ -6952,28 +7367,6 @@ export declare namespace TiffExportOptions {
6952
7367
  Right
6953
7368
  }
6954
7369
  }
6955
- /**
6956
- * One value chart data point.
6957
- */
6958
- export declare class WaterfallChartDataPoint extends OneValueChartDataPoint {
6959
- constructor();
6960
- /**
6961
- * Value.
6962
- */
6963
- setAsTotal?: boolean;
6964
- }
6965
- /**
6966
- * One value series.
6967
- */
6968
- export declare class WaterfallSeries extends OneValueSeries {
6969
- constructor();
6970
- /**
6971
- * True if inner points are shown.
6972
- */
6973
- showConnectorLines?: boolean;
6974
- }
6975
- export declare namespace WaterfallSeries {
6976
- }
6977
7370
  /**
6978
7371
  * Zoom object.
6979
7372
  */
@@ -7189,6 +7582,10 @@ export declare class VideoFrame extends GeometryShape {
7189
7582
  * Video data encoded in base64.
7190
7583
  */
7191
7584
  base64Data?: string;
7585
+ /**
7586
+ * Picture fill format.
7587
+ */
7588
+ pictureFillFormat?: PictureFill;
7192
7589
  }
7193
7590
  export declare namespace VideoFrame {
7194
7591
  enum PlayModeEnum {