aspose.cells.node 25.12.0 → 25.12.2

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.
Files changed (3) hide show
  1. package/aspose.cells.js +24 -6
  2. package/package.json +6 -6
  3. package/types.d.ts +227 -62
package/aspose.cells.js CHANGED
@@ -1528,12 +1528,6 @@ exports.SlicerCacheCrossFilterType = {
1528
1528
  ShowItemsWithNoData : 2,
1529
1529
  };
1530
1530
 
1531
- exports.SlicerCacheItemSortType = {
1532
- Natural : 0,
1533
- Ascending : 1,
1534
- Descending : 2,
1535
- };
1536
-
1537
1531
  exports.SlicerStyleType = {
1538
1532
  SlicerStyleLight1 : 0,
1539
1533
  SlicerStyleLight2 : 1,
@@ -6227,6 +6221,12 @@ Object.assign(exports.EbookLoadOptions.prototype, {
6227
6221
  },
6228
6222
  getTableLoadOptions() {
6229
6223
  return this.tableLoadOptions;
6224
+ },
6225
+ getDetectLaTeX() {
6226
+ return this.detectLaTeX;
6227
+ },
6228
+ setDetectLaTeX(value) {
6229
+ this.detectLaTeX = value;
6230
6230
  }
6231
6231
  });
6232
6232
 
@@ -7986,6 +7986,12 @@ Object.assign(exports.HtmlLoadOptions.prototype, {
7986
7986
  getTableLoadOptions() {
7987
7987
  return this.tableLoadOptions;
7988
7988
  },
7989
+ getDetectLaTeX() {
7990
+ return this.detectLaTeX;
7991
+ },
7992
+ setDetectLaTeX(value) {
7993
+ this.detectLaTeX = value;
7994
+ },
7989
7995
  getLoadFormat() {
7990
7996
  return this.loadFormat;
7991
7997
  },
@@ -19083,6 +19089,12 @@ Object.assign(exports.SlicerCacheItemCollection.prototype, {
19083
19089
  });
19084
19090
 
19085
19091
  Object.assign(exports.Slicer.prototype, {
19092
+ getSortOrderType() {
19093
+ return this.sortOrderType;
19094
+ },
19095
+ setSortOrderType(value) {
19096
+ this.sortOrderType = value;
19097
+ },
19086
19098
  getTitle() {
19087
19099
  return this.title;
19088
19100
  },
@@ -22020,6 +22032,12 @@ Object.assign(exports.PasteOptions.prototype, {
22020
22032
  setPasteType(value) {
22021
22033
  this.pasteType = value;
22022
22034
  },
22035
+ getShiftFormulasOfShapes() {
22036
+ return this.shiftFormulasOfShapes;
22037
+ },
22038
+ setShiftFormulasOfShapes(value) {
22039
+ this.shiftFormulasOfShapes = value;
22040
+ },
22023
22041
  getSkipBlanks() {
22024
22042
  return this.skipBlanks;
22025
22043
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.cells.node",
3
- "version": "25.12.0",
3
+ "version": "25.12.2",
4
4
  "description": "Aspose.Cells for Node.js via C++ is a high-performance and powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV, and HTML files, offering a comprehensive set of features for creating, editing, converting, and rendering spreadsheets within Node.js applications.",
5
5
  "main": "aspose.cells.js",
6
6
  "types": "types.d.ts",
@@ -35,10 +35,10 @@
35
35
  "license": "Commercial",
36
36
  "homepage": "https://www.aspose.com",
37
37
  "optionalDependencies": {
38
- "aspose.cells.node.win32.x64": "~25.12.0",
39
- "aspose.cells.node.linux.x64": "~25.12.0",
40
- "aspose.cells.node.linux.arm64": "~25.12.0",
41
- "aspose.cells.node.darwin.x64": "~25.12.0",
42
- "aspose.cells.node.darwin.arm64": "~25.12.0"
38
+ "aspose.cells.node.win32.x64": "~25.12.2",
39
+ "aspose.cells.node.linux.x64": "~25.12.2",
40
+ "aspose.cells.node.linux.arm64": "~25.12.2",
41
+ "aspose.cells.node.darwin.x64": "~25.12.2",
42
+ "aspose.cells.node.darwin.arm64": "~25.12.2"
43
43
  }
44
44
  }
package/types.d.ts CHANGED
@@ -2939,6 +2939,14 @@ export class HtmlTableLoadOptionCollection {
2939
2939
  * @param item - one HtmlTableLoadOption
2940
2940
  * @returns
2941
2941
  * the index of the added item
2942
+ *
2943
+ * @remarks
2944
+ * NOTE: This member is now obsolete. Instead,
2945
+ * please use AddTableLoadOption() method.
2946
+ * This method will be removed 6 months later since December 2025.
2947
+ * Aspose apologizes for any inconvenience you may have experienced.
2948
+ * @deprecated
2949
+ * Use HtmlTableLoadOptionCollection.AddTableLoadOption(HtmlTableLoadOption) method instead.
2942
2950
  */
2943
2951
  add(item: HtmlTableLoadOption) : number;
2944
2952
  /**
@@ -2977,6 +2985,13 @@ export class HtmlTableLoadOptionCollection {
2977
2985
  * @param originalSheetIndex - The original index of worksheet in the html
2978
2986
  */
2979
2987
  add(tableId: string, targetSheetIndex: number, originalSheetIndex: number) : number;
2988
+ /**
2989
+ * Adds one HtmlTableLoadOption into this collection.
2990
+ * @param item - one HtmlTableLoadOption
2991
+ * @returns
2992
+ * the index of the added item
2993
+ */
2994
+ addTableLoadOption(item: HtmlTableLoadOption) : number;
2980
2995
  /**
2981
2996
  * Gets the number of elements contained in.
2982
2997
  */
@@ -4467,6 +4482,14 @@ export class PivotAreaCollection {
4467
4482
  /**
4468
4483
  * Adds pivot area.
4469
4484
  * @param pivotArea - The pivot area.
4485
+ *
4486
+ * @remarks
4487
+ * NOTE: This member is now obsolete. Instead,
4488
+ * please use AddPivotArea() method.
4489
+ * This method will be removed 6 months later since December 2025.
4490
+ * Aspose apologizes for any inconvenience you may have experienced.
4491
+ * @deprecated
4492
+ * Use PivotAreaCollection.AddPivotArea(PivotArea) method instead.
4470
4493
  */
4471
4494
  add(pivotArea: PivotArea) : number;
4472
4495
  /**
@@ -4474,6 +4497,13 @@ export class PivotAreaCollection {
4474
4497
  * @param cellArea - The area based on pivot table view.
4475
4498
  */
4476
4499
  add(cellArea: CellArea) : void;
4500
+ /**
4501
+ * Adds pivot area into this collection.
4502
+ * @param pivotArea -
4503
+ * @returns
4504
+ * index of the added pivot area in this collection
4505
+ */
4506
+ addPivotArea(pivotArea: PivotArea) : number;
4477
4507
  /**
4478
4508
  * Remove one pivot conditional formatted area setting.
4479
4509
  * @param index - The index
@@ -6785,6 +6815,24 @@ export class HtmlLoadOptions extends AbstractTextLoadOptions {
6785
6815
  * Get the HtmlTableLoadOptionCollection instance
6786
6816
  */
6787
6817
  readonly tableLoadOptions : HtmlTableLoadOptionCollection;
6818
+ /**
6819
+ * @deprecated Please use the 'detectLaTeX' property instead.
6820
+ * Indicates whether to detect LaTeX formula in the HTML file.
6821
+ * The default value is false.
6822
+ */
6823
+ getDetectLaTeX() : boolean;
6824
+ /**
6825
+ * Indicates whether to detect LaTeX formula in the HTML file.
6826
+ * The default value is false.
6827
+ */
6828
+ detectLaTeX : boolean;
6829
+ /**
6830
+ * @deprecated Please use the 'detectLaTeX' property instead.
6831
+ * Indicates whether to detect LaTeX formula in the HTML file.
6832
+ * The default value is false.
6833
+ * @param value - The value to set.
6834
+ */
6835
+ setDetectLaTeX(value: boolean) : void;
6788
6836
  /**
6789
6837
  * Checks whether the implementation object is null.
6790
6838
  */
@@ -15770,7 +15818,7 @@ export class ConversionUtility {
15770
15818
  }
15771
15819
 
15772
15820
  /**
15773
- * Represents type of exporting hyperlinks to json.
15821
+ * Represents type how to export hyperlinks to json.
15774
15822
  */
15775
15823
  export enum JsonExportHyperlinkType {
15776
15824
  /**
@@ -24626,6 +24674,20 @@ export class PivotField {
24626
24674
  * @param value - The value to set.
24627
24675
  */
24628
24676
  setShowCompact(value: boolean) : void;
24677
+ /**
24678
+ * Gets the max value of this field.
24679
+ *
24680
+ * @remarks
24681
+ * Only works for row or column fields which value must be date time, number or blank.
24682
+ */
24683
+ getMaxValue() : CellValue;
24684
+ /**
24685
+ * Gets the max value of this field.
24686
+ *
24687
+ * @remarks
24688
+ * Only works for row or column fields which value must be date time, number or blank.
24689
+ */
24690
+ getMinValue() : CellValue;
24629
24691
  /**
24630
24692
  * Init the pivot items of the pivot field
24631
24693
  */
@@ -24636,6 +24698,13 @@ export class PivotField {
24636
24698
  * @param newField - Indicates whether adding a new field to the pivottable.
24637
24699
  */
24638
24700
  groupBy(interval: number, newField: boolean) : void;
24701
+ /**
24702
+ * Automatically group the field with internal
24703
+ * @param groups - Group types
24704
+ * @param interval - The internal of group. /// Automatic value will be assigned if it's zero,
24705
+ * @param newField - Indicates whether adding a new field to the pivottable.
24706
+ */
24707
+ groupBy(groups: PivotGroupByType[], interval: number, newField: boolean) : void;
24639
24708
  /**
24640
24709
  * Group the file by the date group types.
24641
24710
  * @param start - The start datetime
@@ -24647,6 +24716,19 @@ export class PivotField {
24647
24716
  * False means this field could not be grouped by date time.
24648
24717
  */
24649
24718
  groupBy(start: Date, end: Date, groups: PivotGroupByType[], interval: number, firstAsNewField: boolean) : boolean;
24719
+ /**
24720
+ * Group the file by the date group types.
24721
+ * @param isAutoStart - Indicates whether to auto detect the start date time value.
24722
+ * @param start - The start datetime
24723
+ * @param isAutoEnd - Indicates whether to auto detect the end date time value.
24724
+ * @param end - The end of datetime
24725
+ * @param groups - Group types
24726
+ * @param interval - The interval
24727
+ * @param firstAsNewField - Indicates whether adding a new field to the pivottable. /// Only for the first group item.
24728
+ * @returns
24729
+ * False means this field could not be grouped by date time.
24730
+ */
24731
+ groupBy(isAutoStart: boolean, start: Date, isAutoEnd: boolean, end: Date, groups: PivotGroupByType[], interval: number, firstAsNewField: boolean) : boolean;
24650
24732
  /**
24651
24733
  * Group the file by number.
24652
24734
  * @param start - The start value
@@ -24655,8 +24737,22 @@ export class PivotField {
24655
24737
  * @param newField - Indicates whether adding a new field to the pivottable
24656
24738
  * @returns
24657
24739
  * False means this field could not be grouped by date time.
24740
+ *
24741
+ * @remarks
24658
24742
  */
24659
24743
  groupBy(start: number, end: number, interval: number, newField: boolean) : boolean;
24744
+ /**
24745
+ * Group the file by number.
24746
+ * @param isAutoStart - Indicates whether to auto detect the start value.
24747
+ * @param start - The start value
24748
+ * @param isAutoEnd - Indicates whether to auto detect the end value.
24749
+ * @param end - The end of value
24750
+ * @param interval - The interval
24751
+ * @param newField - Indicates whether adding a new field to the pivottable
24752
+ * @returns
24753
+ * False means this field could not be grouped by date time.
24754
+ */
24755
+ groupBy(isAutoStart: boolean, start: number, isAutoEnd: boolean, end: number, interval: number, newField: boolean) : boolean;
24660
24756
  /**
24661
24757
  * Custom group the field.
24662
24758
  * @param customGroupItems - The custom group items.
@@ -32945,14 +33041,6 @@ export class ExternalConnectionCollection {
32945
33041
  * The element with the specified name.
32946
33042
  */
32947
33043
  get(connectionName: string) : ExternalConnection;
32948
- /**
32949
- * Gets the <see cref="ExternalConnection"/> element at the specified index.
32950
- * @param value - The value to set.
32951
- * @param index - The zero based index of the element.
32952
- * @returns
32953
- * The element at the specified index.
32954
- */
32955
- set(value: ExternalConnection, index: number) : void;
32956
33044
  /**
32957
33045
  * Gets the <see cref="ExternalConnection"/> element with the specified id.
32958
33046
  * @param connId - external connection id
@@ -33579,14 +33667,6 @@ export class ConnectionParameterCollection {
33579
33667
  * The element with the specified name.
33580
33668
  */
33581
33669
  get(connParamName: string) : ConnectionParameter;
33582
- /**
33583
- * Gets the <see cref="ConnectionParameter"/> element at the specified index.
33584
- * @param value - The value to set.
33585
- * @param index - The zero based index of the element.
33586
- * @returns
33587
- * The element at the specified index.
33588
- */
33589
- set(value: ConnectionParameter, index: number) : void;
33590
33670
  /**
33591
33671
  * Gets the number of elements contained in.
33592
33672
  */
@@ -34321,6 +34401,14 @@ export class ConditionalFormattingIconCollection {
34321
34401
  /**
34322
34402
  * Adds <see cref="ConditionalFormattingIcon"/> object.
34323
34403
  * @param cficon - Returns the index of new object in the list.
34404
+ *
34405
+ * @remarks
34406
+ * NOTE: This member is now obsolete. Instead,
34407
+ * please use Add(IconSetType, int) method.
34408
+ * This method will be removed 6 months later since December 2025.
34409
+ * Aspose apologizes for any inconvenience you may have experienced.
34410
+ * @deprecated
34411
+ * Use ConditionalFormattingIconCollection.Add(IconSetType, int) method instead.
34324
34412
  */
34325
34413
  add(cficon: ConditionalFormattingIcon) : number;
34326
34414
  /**
@@ -36146,24 +36234,6 @@ export enum SlicerCacheCrossFilterType {
36146
36234
  ShowItemsWithNoData = 2,
36147
36235
  }
36148
36236
 
36149
- /**
36150
- * Specify the sort type of SlicerCacheItem
36151
- */
36152
- export enum SlicerCacheItemSortType {
36153
- /**
36154
- * Original data order.
36155
- */
36156
- Natural = 0,
36157
- /**
36158
- * Ascending sort type
36159
- */
36160
- Ascending = 1,
36161
- /**
36162
- * Descending sort type
36163
- */
36164
- Descending = 2,
36165
- }
36166
-
36167
36237
  /**
36168
36238
  * Represent slicer data source item
36169
36239
  */
@@ -36294,6 +36364,21 @@ export enum SlicerStyleType {
36294
36364
  * summary description of Slicer View
36295
36365
  */
36296
36366
  export class Slicer {
36367
+ /**
36368
+ * @deprecated Please use the 'sortOrderType' property instead.
36369
+ * Indicates the type of sorting items.
36370
+ */
36371
+ getSortOrderType() : SortOrder;
36372
+ /**
36373
+ * Indicates the type of sorting items.
36374
+ */
36375
+ sortOrderType : SortOrder;
36376
+ /**
36377
+ * @deprecated Please use the 'sortOrderType' property instead.
36378
+ * Indicates the type of sorting items.
36379
+ * @param value - The value to set.
36380
+ */
36381
+ setSortOrderType(value: SortOrder) : void;
36297
36382
  /**
36298
36383
  * @deprecated Please use the 'title' property instead.
36299
36384
  * Specifies the title of the current Slicer object.
@@ -40269,14 +40354,6 @@ export class GradientStopCollection {
40269
40354
  * The gradient stop.
40270
40355
  */
40271
40356
  get(index: number) : GradientStop;
40272
- /**
40273
- * Gets the gradient stop by the index.
40274
- * @param value - The value to set.
40275
- * @param index - The index.
40276
- * @returns
40277
- * The gradient stop.
40278
- */
40279
- set(value: GradientStop, index: number) : void;
40280
40357
  /**
40281
40358
  * Add a gradient stop.
40282
40359
  * @param position - The position of the stop,in unit of percentage.
@@ -48530,40 +48607,37 @@ export class HtmlSaveOptions extends SaveOptions {
48530
48607
  setEmbeddedFontType(value: HtmlEmbeddedFontType) : void;
48531
48608
  /**
48532
48609
  * @deprecated Please use the 'exportNamedRangeAnchors' property instead.
48533
- * Indicates whether to export anchor elements generated for named ranges when saving to HTML.
48610
+ * Indicates whether to export anchor elements for named ranges when saving as HTML.
48534
48611
  * Default value is true.
48535
48612
  */
48536
48613
  getExportNamedRangeAnchors() : boolean;
48537
48614
  /**
48538
- * Indicates whether to export anchor elements generated for named ranges when saving to HTML.
48615
+ * Indicates whether to export anchor elements for named ranges when saving as HTML.
48539
48616
  * Default value is true.
48540
48617
  */
48541
48618
  exportNamedRangeAnchors : boolean;
48542
48619
  /**
48543
48620
  * @deprecated Please use the 'exportNamedRangeAnchors' property instead.
48544
- * Indicates whether to export anchor elements generated for named ranges when saving to HTML.
48621
+ * Indicates whether to export anchor elements for named ranges when saving as HTML.
48545
48622
  * Default value is true.
48546
48623
  * @param value - The value to set.
48547
48624
  */
48548
48625
  setExportNamedRangeAnchors(value: boolean) : void;
48549
48626
  /**
48550
48627
  * @deprecated Please use the 'dataBarRenderMode' property instead.
48551
- * Indicates whether to display the DataBar as an image when saving to HTML..
48552
- * Default value is <see cref="DataBarRenderMode.BackgroundColor">.
48553
- * </summary>
48628
+ * Represents the mode of how to render DataBar when converting Excel files to html files.
48629
+ * Default value is <see cref="DataBarRenderMode.BackgroundColor"/>.
48554
48630
  */
48555
48631
  getDataBarRenderMode() : DataBarRenderMode;
48556
48632
  /**
48557
- * Indicates whether to display the DataBar as an image when saving to HTML..
48558
- * Default value is <see cref="DataBarRenderMode.BackgroundColor">.
48559
- * </summary>
48633
+ * Represents the mode of how to render DataBar when converting Excel files to html files.
48634
+ * Default value is <see cref="DataBarRenderMode.BackgroundColor"/>.
48560
48635
  */
48561
48636
  dataBarRenderMode : DataBarRenderMode;
48562
48637
  /**
48563
48638
  * @deprecated Please use the 'dataBarRenderMode' property instead.
48564
- * Indicates whether to display the DataBar as an image when saving to HTML..
48565
- * Default value is <see cref="DataBarRenderMode.BackgroundColor">.
48566
- * </summary>
48639
+ * Represents the mode of how to render DataBar when converting Excel files to html files.
48640
+ * Default value is <see cref="DataBarRenderMode.BackgroundColor"/>.
48567
48641
  * @param value - The value to set.
48568
48642
  */
48569
48643
  setDataBarRenderMode(value: DataBarRenderMode) : void;
@@ -49020,6 +49094,21 @@ export class PasteOptions {
49020
49094
  * @param value - The value to set.
49021
49095
  */
49022
49096
  setPasteType(value: PasteType) : void;
49097
+ /**
49098
+ * @deprecated Please use the 'shiftFormulasOfShapes' property instead.
49099
+ * Indicates whether to shift formulas of the shapes when copying ranges.
49100
+ */
49101
+ getShiftFormulasOfShapes() : boolean;
49102
+ /**
49103
+ * Indicates whether to shift formulas of the shapes when copying ranges.
49104
+ */
49105
+ shiftFormulasOfShapes : boolean;
49106
+ /**
49107
+ * @deprecated Please use the 'shiftFormulasOfShapes' property instead.
49108
+ * Indicates whether to shift formulas of the shapes when copying ranges.
49109
+ * @param value - The value to set.
49110
+ */
49111
+ setShiftFormulasOfShapes(value: boolean) : void;
49023
49112
  /**
49024
49113
  * @deprecated Please use the 'skipBlanks' property instead.
49025
49114
  * Indicates whether skips blank cells.
@@ -50836,8 +50925,21 @@ export class SparklineCollection {
50836
50925
  /**
50837
50926
  * Removes the sparkline
50838
50927
  * @param o -
50928
+ *
50929
+ * @remarks
50930
+ * NOTE: This member is now obsolete. Instead,
50931
+ * please use RemoveSparkline() method.
50932
+ * This method will be removed 6 months later since December 2025.
50933
+ * Aspose apologizes for any inconvenience you may have experienced.
50934
+ * @deprecated
50935
+ * Use SparklineCollection.RemoveSparkline(Sparkline) method instead.
50839
50936
  */
50840
50937
  remove(o: Object) : void;
50938
+ /**
50939
+ * Removes the sparkline
50940
+ * @param o -
50941
+ */
50942
+ removeSparkline(o: Sparkline) : void;
50841
50943
  /**
50842
50944
  * Gets the number of elements contained in.
50843
50945
  */
@@ -53124,34 +53226,70 @@ export class Series {
53124
53226
  /**
53125
53227
  * @deprecated Please use the 'values' property instead.
53126
53228
  * Represents the Y values of this chart series.
53229
+ *
53230
+ * @remarks
53231
+ * To get the actual values(corresponding to every point of this series) defined
53232
+ * by this property, please use <see cref="PointValues"/>.
53127
53233
  */
53128
53234
  getValues() : string;
53129
53235
  /**
53130
53236
  * Represents the Y values of this chart series.
53237
+ *
53238
+ * @remarks
53239
+ * To get the actual values(corresponding to every point of this series) defined
53240
+ * by this property, please use <see cref="PointValues"/>.
53131
53241
  */
53132
53242
  values : string;
53133
53243
  /**
53134
53244
  * @deprecated Please use the 'values' property instead.
53135
53245
  * Represents the Y values of this chart series.
53136
53246
  * @param value - The value to set.
53247
+ *
53248
+ * @remarks
53249
+ * To get the actual values(corresponding to every point of this series) defined
53250
+ * by this property, please use <see cref="PointValues"/>.
53137
53251
  */
53138
53252
  setValues(value: string) : void;
53139
53253
  /**
53140
53254
  * @deprecated Please use the 'pointValues' property instead.
53141
- * Gets the values for the points of the series
53255
+ * Gets the actual values that are used to plot every point
53256
+ * of this series in the chart.
53257
+ *
53258
+ * @remarks
53259
+ * This property provides one convenient way to get the actual values corresponding
53260
+ * to the data defined by <see cref="Series.Values"/>,
53261
+ * especially when the specified data source is external link, formula, ...etc.
53142
53262
  */
53143
53263
  getPointValues() : ChartDataValue[];
53144
53264
  /**
53145
- * Gets the values for the points of the series
53265
+ * Gets the actual values that are used to plot every point
53266
+ * of this series in the chart.
53267
+ *
53268
+ * @remarks
53269
+ * This property provides one convenient way to get the actual values corresponding
53270
+ * to the data defined by <see cref="Series.Values"/>,
53271
+ * especially when the specified data source is external link, formula, ...etc.
53146
53272
  */
53147
53273
  readonly pointValues : ChartDataValue[];
53148
53274
  /**
53149
53275
  * @deprecated Please use the 'categoryValues' property instead.
53150
- * Gets the category values of the series
53276
+ * Gets the actual category values that are used to plot every point
53277
+ * of this series in the chart.
53278
+ *
53279
+ * @remarks
53280
+ * This property provides one convenient way to get the actual values corresponding
53281
+ * to the data defined by <see cref="Series.XValues"/>,
53282
+ * especially when the specified data source is external link, formula, ...etc.
53151
53283
  */
53152
53284
  getCategoryValues() : ChartDataValue[][];
53153
53285
  /**
53154
- * Gets the category values of the series
53286
+ * Gets the actual category values that are used to plot every point
53287
+ * of this series in the chart.
53288
+ *
53289
+ * @remarks
53290
+ * This property provides one convenient way to get the actual values corresponding
53291
+ * to the data defined by <see cref="Series.XValues"/>,
53292
+ * especially when the specified data source is external link, formula, ...etc.
53155
53293
  */
53156
53294
  readonly categoryValues : ChartDataValue[][];
53157
53295
  /**
@@ -53186,17 +53324,29 @@ export class Series {
53186
53324
  setXValuesFormatCode(value: string) : void;
53187
53325
  /**
53188
53326
  * @deprecated Please use the 'xValues' property instead.
53189
- * Represents the x values of the chart series.
53327
+ * Represents the X values of this chart series.
53328
+ *
53329
+ * @remarks
53330
+ * To get the actual values(corresponding to every point of this series) defined
53331
+ * by this property, please use <see cref="CategoryValues"/>.
53190
53332
  */
53191
53333
  getXValues() : string;
53192
53334
  /**
53193
- * Represents the x values of the chart series.
53335
+ * Represents the X values of this chart series.
53336
+ *
53337
+ * @remarks
53338
+ * To get the actual values(corresponding to every point of this series) defined
53339
+ * by this property, please use <see cref="CategoryValues"/>.
53194
53340
  */
53195
53341
  xValues : string;
53196
53342
  /**
53197
53343
  * @deprecated Please use the 'xValues' property instead.
53198
- * Represents the x values of the chart series.
53344
+ * Represents the X values of this chart series.
53199
53345
  * @param value - The value to set.
53346
+ *
53347
+ * @remarks
53348
+ * To get the actual values(corresponding to every point of this series) defined
53349
+ * by this property, please use <see cref="CategoryValues"/>.
53200
53350
  */
53201
53351
  setXValues(value: string) : void;
53202
53352
  /**
@@ -69973,8 +70123,23 @@ export class RangeCollection {
69973
70123
  /**
69974
70124
  * Adds a <see cref="Range"/> item to the collection.
69975
70125
  * @param range - Range object
70126
+ *
70127
+ * @remarks
70128
+ * NOTE: This member is now obsolete. Instead,
70129
+ * please use AddRange() method.
70130
+ * This method will be removed 6 months later since December 2025.
70131
+ * Aspose apologizes for any inconvenience you may have experienced.
70132
+ * @deprecated
70133
+ * Use RangeCollection.AddRange(Range) method instead.
69976
70134
  */
69977
70135
  add(range: Range) : number;
70136
+ /**
70137
+ * Adds a <see cref="Range"/> item to the collection.
70138
+ * @param range - the range to be added
70139
+ * @returns
70140
+ * index of the added range in this collection
70141
+ */
70142
+ addRange(range: Range) : number;
69978
70143
  /**
69979
70144
  * Gets the number of elements contained in.
69980
70145
  */