aspose.cells.node 25.12.1 → 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.
- package/aspose.cells.js +24 -6
- package/package.json +6 -6
- package/types.d.ts +171 -135
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.
|
|
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.
|
|
39
|
-
"aspose.cells.node.linux.x64": "~25.12.
|
|
40
|
-
"aspose.cells.node.linux.arm64": "~25.12.
|
|
41
|
-
"aspose.cells.node.darwin.x64": "~25.12.
|
|
42
|
-
"aspose.cells.node.darwin.arm64": "~25.12.
|
|
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
|
|
15821
|
+
* Represents type how to export hyperlinks to json.
|
|
15774
15822
|
*/
|
|
15775
15823
|
export enum JsonExportHyperlinkType {
|
|
15776
15824
|
/**
|
|
@@ -24668,6 +24716,19 @@ export class PivotField {
|
|
|
24668
24716
|
* False means this field could not be grouped by date time.
|
|
24669
24717
|
*/
|
|
24670
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;
|
|
24671
24732
|
/**
|
|
24672
24733
|
* Group the file by number.
|
|
24673
24734
|
* @param start - The start value
|
|
@@ -24676,8 +24737,22 @@ export class PivotField {
|
|
|
24676
24737
|
* @param newField - Indicates whether adding a new field to the pivottable
|
|
24677
24738
|
* @returns
|
|
24678
24739
|
* False means this field could not be grouped by date time.
|
|
24740
|
+
*
|
|
24741
|
+
* @remarks
|
|
24679
24742
|
*/
|
|
24680
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;
|
|
24681
24756
|
/**
|
|
24682
24757
|
* Custom group the field.
|
|
24683
24758
|
* @param customGroupItems - The custom group items.
|
|
@@ -32966,14 +33041,6 @@ export class ExternalConnectionCollection {
|
|
|
32966
33041
|
* The element with the specified name.
|
|
32967
33042
|
*/
|
|
32968
33043
|
get(connectionName: string) : ExternalConnection;
|
|
32969
|
-
/**
|
|
32970
|
-
* Gets the <see cref="ExternalConnection"/> element at the specified index.
|
|
32971
|
-
* @param value - The value to set.
|
|
32972
|
-
* @param index - The zero based index of the element.
|
|
32973
|
-
* @returns
|
|
32974
|
-
* The element at the specified index.
|
|
32975
|
-
*/
|
|
32976
|
-
set(value: ExternalConnection, index: number) : void;
|
|
32977
33044
|
/**
|
|
32978
33045
|
* Gets the <see cref="ExternalConnection"/> element with the specified id.
|
|
32979
33046
|
* @param connId - external connection id
|
|
@@ -33600,14 +33667,6 @@ export class ConnectionParameterCollection {
|
|
|
33600
33667
|
* The element with the specified name.
|
|
33601
33668
|
*/
|
|
33602
33669
|
get(connParamName: string) : ConnectionParameter;
|
|
33603
|
-
/**
|
|
33604
|
-
* Gets the <see cref="ConnectionParameter"/> element at the specified index.
|
|
33605
|
-
* @param value - The value to set.
|
|
33606
|
-
* @param index - The zero based index of the element.
|
|
33607
|
-
* @returns
|
|
33608
|
-
* The element at the specified index.
|
|
33609
|
-
*/
|
|
33610
|
-
set(value: ConnectionParameter, index: number) : void;
|
|
33611
33670
|
/**
|
|
33612
33671
|
* Gets the number of elements contained in.
|
|
33613
33672
|
*/
|
|
@@ -34342,6 +34401,14 @@ export class ConditionalFormattingIconCollection {
|
|
|
34342
34401
|
/**
|
|
34343
34402
|
* Adds <see cref="ConditionalFormattingIcon"/> object.
|
|
34344
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.
|
|
34345
34412
|
*/
|
|
34346
34413
|
add(cficon: ConditionalFormattingIcon) : number;
|
|
34347
34414
|
/**
|
|
@@ -36167,24 +36234,6 @@ export enum SlicerCacheCrossFilterType {
|
|
|
36167
36234
|
ShowItemsWithNoData = 2,
|
|
36168
36235
|
}
|
|
36169
36236
|
|
|
36170
|
-
/**
|
|
36171
|
-
* Specify the sort type of SlicerCacheItem
|
|
36172
|
-
*/
|
|
36173
|
-
export enum SlicerCacheItemSortType {
|
|
36174
|
-
/**
|
|
36175
|
-
* Original data order.
|
|
36176
|
-
*/
|
|
36177
|
-
Natural = 0,
|
|
36178
|
-
/**
|
|
36179
|
-
* Ascending sort type
|
|
36180
|
-
*/
|
|
36181
|
-
Ascending = 1,
|
|
36182
|
-
/**
|
|
36183
|
-
* Descending sort type
|
|
36184
|
-
*/
|
|
36185
|
-
Descending = 2,
|
|
36186
|
-
}
|
|
36187
|
-
|
|
36188
36237
|
/**
|
|
36189
36238
|
* Represent slicer data source item
|
|
36190
36239
|
*/
|
|
@@ -36315,6 +36364,21 @@ export enum SlicerStyleType {
|
|
|
36315
36364
|
* summary description of Slicer View
|
|
36316
36365
|
*/
|
|
36317
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;
|
|
36318
36382
|
/**
|
|
36319
36383
|
* @deprecated Please use the 'title' property instead.
|
|
36320
36384
|
* Specifies the title of the current Slicer object.
|
|
@@ -40290,14 +40354,6 @@ export class GradientStopCollection {
|
|
|
40290
40354
|
* The gradient stop.
|
|
40291
40355
|
*/
|
|
40292
40356
|
get(index: number) : GradientStop;
|
|
40293
|
-
/**
|
|
40294
|
-
* Gets the gradient stop by the index.
|
|
40295
|
-
* @param value - The value to set.
|
|
40296
|
-
* @param index - The index.
|
|
40297
|
-
* @returns
|
|
40298
|
-
* The gradient stop.
|
|
40299
|
-
*/
|
|
40300
|
-
set(value: GradientStop, index: number) : void;
|
|
40301
40357
|
/**
|
|
40302
40358
|
* Add a gradient stop.
|
|
40303
40359
|
* @param position - The position of the stop,in unit of percentage.
|
|
@@ -48551,40 +48607,37 @@ export class HtmlSaveOptions extends SaveOptions {
|
|
|
48551
48607
|
setEmbeddedFontType(value: HtmlEmbeddedFontType) : void;
|
|
48552
48608
|
/**
|
|
48553
48609
|
* @deprecated Please use the 'exportNamedRangeAnchors' property instead.
|
|
48554
|
-
* Indicates whether to export anchor elements
|
|
48610
|
+
* Indicates whether to export anchor elements for named ranges when saving as HTML.
|
|
48555
48611
|
* Default value is true.
|
|
48556
48612
|
*/
|
|
48557
48613
|
getExportNamedRangeAnchors() : boolean;
|
|
48558
48614
|
/**
|
|
48559
|
-
* Indicates whether to export anchor elements
|
|
48615
|
+
* Indicates whether to export anchor elements for named ranges when saving as HTML.
|
|
48560
48616
|
* Default value is true.
|
|
48561
48617
|
*/
|
|
48562
48618
|
exportNamedRangeAnchors : boolean;
|
|
48563
48619
|
/**
|
|
48564
48620
|
* @deprecated Please use the 'exportNamedRangeAnchors' property instead.
|
|
48565
|
-
* Indicates whether to export anchor elements
|
|
48621
|
+
* Indicates whether to export anchor elements for named ranges when saving as HTML.
|
|
48566
48622
|
* Default value is true.
|
|
48567
48623
|
* @param value - The value to set.
|
|
48568
48624
|
*/
|
|
48569
48625
|
setExportNamedRangeAnchors(value: boolean) : void;
|
|
48570
48626
|
/**
|
|
48571
48627
|
* @deprecated Please use the 'dataBarRenderMode' property instead.
|
|
48572
|
-
*
|
|
48573
|
-
* Default value is <see cref="DataBarRenderMode.BackgroundColor"
|
|
48574
|
-
* </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"/>.
|
|
48575
48630
|
*/
|
|
48576
48631
|
getDataBarRenderMode() : DataBarRenderMode;
|
|
48577
48632
|
/**
|
|
48578
|
-
*
|
|
48579
|
-
* Default value is <see cref="DataBarRenderMode.BackgroundColor"
|
|
48580
|
-
* </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"/>.
|
|
48581
48635
|
*/
|
|
48582
48636
|
dataBarRenderMode : DataBarRenderMode;
|
|
48583
48637
|
/**
|
|
48584
48638
|
* @deprecated Please use the 'dataBarRenderMode' property instead.
|
|
48585
|
-
*
|
|
48586
|
-
* Default value is <see cref="DataBarRenderMode.BackgroundColor"
|
|
48587
|
-
* </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"/>.
|
|
48588
48641
|
* @param value - The value to set.
|
|
48589
48642
|
*/
|
|
48590
48643
|
setDataBarRenderMode(value: DataBarRenderMode) : void;
|
|
@@ -49041,6 +49094,21 @@ export class PasteOptions {
|
|
|
49041
49094
|
* @param value - The value to set.
|
|
49042
49095
|
*/
|
|
49043
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;
|
|
49044
49112
|
/**
|
|
49045
49113
|
* @deprecated Please use the 'skipBlanks' property instead.
|
|
49046
49114
|
* Indicates whether skips blank cells.
|
|
@@ -50857,8 +50925,21 @@ export class SparklineCollection {
|
|
|
50857
50925
|
/**
|
|
50858
50926
|
* Removes the sparkline
|
|
50859
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.
|
|
50860
50936
|
*/
|
|
50861
50937
|
remove(o: Object) : void;
|
|
50938
|
+
/**
|
|
50939
|
+
* Removes the sparkline
|
|
50940
|
+
* @param o -
|
|
50941
|
+
*/
|
|
50942
|
+
removeSparkline(o: Sparkline) : void;
|
|
50862
50943
|
/**
|
|
50863
50944
|
* Gets the number of elements contained in.
|
|
50864
50945
|
*/
|
|
@@ -53171,104 +53252,44 @@ export class Series {
|
|
|
53171
53252
|
setValues(value: string) : void;
|
|
53172
53253
|
/**
|
|
53173
53254
|
* @deprecated Please use the 'pointValues' property instead.
|
|
53174
|
-
*
|
|
53175
|
-
*
|
|
53176
|
-
* When Series.Values is a link, you can use this attribute to get specific data.
|
|
53177
|
-
* <example>
|
|
53178
|
-
* <code>
|
|
53179
|
-
* [C#]
|
|
53180
|
-
* Workbook workbook = new Workbook("YourFilePathName");
|
|
53181
|
-
* Worksheet worksheet = workbook.Worksheets[0];
|
|
53182
|
-
* Chart chart = worksheet.Charts[0];
|
|
53183
|
-
* chart.Calculate();
|
|
53184
|
-
* Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",
|
|
53185
|
-
* string Values = chart.NSeries[0].Values;
|
|
53186
|
-
* But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",
|
|
53187
|
-
* For example, "External.xlsx" does not exist, then you can use PointValues,
|
|
53188
|
-
* It will return the values actually displayed in the Excel interface in the form of an array.
|
|
53189
|
-
* ChartDataValue[] v1 = chart.NSeries[0].PointValues;
|
|
53190
|
-
* </code>
|
|
53191
|
-
* </example>
|
|
53255
|
+
* Gets the actual values that are used to plot every point
|
|
53256
|
+
* of this series in the chart.
|
|
53192
53257
|
*
|
|
53193
53258
|
* @remarks
|
|
53194
|
-
*
|
|
53195
|
-
* to the data defined by <see cref="Series.Values"
|
|
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.
|
|
53196
53262
|
*/
|
|
53197
53263
|
getPointValues() : ChartDataValue[];
|
|
53198
53264
|
/**
|
|
53199
|
-
*
|
|
53200
|
-
*
|
|
53201
|
-
* When Series.Values is a link, you can use this attribute to get specific data.
|
|
53202
|
-
* <example>
|
|
53203
|
-
* <code>
|
|
53204
|
-
* [C#]
|
|
53205
|
-
* Workbook workbook = new Workbook("YourFilePathName");
|
|
53206
|
-
* Worksheet worksheet = workbook.Worksheets[0];
|
|
53207
|
-
* Chart chart = worksheet.Charts[0];
|
|
53208
|
-
* chart.Calculate();
|
|
53209
|
-
* Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",
|
|
53210
|
-
* string Values = chart.NSeries[0].Values;
|
|
53211
|
-
* But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",
|
|
53212
|
-
* For example, "External.xlsx" does not exist, then you can use PointValues,
|
|
53213
|
-
* It will return the values actually displayed in the Excel interface in the form of an array.
|
|
53214
|
-
* ChartDataValue[] v1 = chart.NSeries[0].PointValues;
|
|
53215
|
-
* </code>
|
|
53216
|
-
* </example>
|
|
53265
|
+
* Gets the actual values that are used to plot every point
|
|
53266
|
+
* of this series in the chart.
|
|
53217
53267
|
*
|
|
53218
53268
|
* @remarks
|
|
53219
|
-
*
|
|
53220
|
-
* to the data defined by <see cref="Series.Values"
|
|
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.
|
|
53221
53272
|
*/
|
|
53222
53273
|
readonly pointValues : ChartDataValue[];
|
|
53223
53274
|
/**
|
|
53224
53275
|
* @deprecated Please use the 'categoryValues' property instead.
|
|
53225
|
-
*
|
|
53226
|
-
*
|
|
53227
|
-
* When Series.XValues is a link, you can use this attribute to get specific data.
|
|
53228
|
-
* <example>
|
|
53229
|
-
* <code>
|
|
53230
|
-
* [C#]
|
|
53231
|
-
* Workbook workbook = new Workbook("YourFilePathName");
|
|
53232
|
-
* Worksheet worksheet = workbook.Worksheets[0];
|
|
53233
|
-
* Chart chart = worksheet.Charts[0];
|
|
53234
|
-
* chart.Calculate();
|
|
53235
|
-
* XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",
|
|
53236
|
-
* string XValues = chart.NSeries[0].XValues;
|
|
53237
|
-
* But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",
|
|
53238
|
-
* For example, "External.xlsx" does not exist, then you can use CategoryValues,
|
|
53239
|
-
* It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.
|
|
53240
|
-
* ChartDataValue[][] v1 = chart.NSeries[0].CategoryValues;
|
|
53241
|
-
* </code>
|
|
53242
|
-
* </example>
|
|
53276
|
+
* Gets the actual category values that are used to plot every point
|
|
53277
|
+
* of this series in the chart.
|
|
53243
53278
|
*
|
|
53244
53279
|
* @remarks
|
|
53245
|
-
*
|
|
53246
|
-
* to the data defined by <see cref="Series.XValues"
|
|
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.
|
|
53247
53283
|
*/
|
|
53248
53284
|
getCategoryValues() : ChartDataValue[][];
|
|
53249
53285
|
/**
|
|
53250
|
-
*
|
|
53251
|
-
*
|
|
53252
|
-
* When Series.XValues is a link, you can use this attribute to get specific data.
|
|
53253
|
-
* <example>
|
|
53254
|
-
* <code>
|
|
53255
|
-
* [C#]
|
|
53256
|
-
* Workbook workbook = new Workbook("YourFilePathName");
|
|
53257
|
-
* Worksheet worksheet = workbook.Worksheets[0];
|
|
53258
|
-
* Chart chart = worksheet.Charts[0];
|
|
53259
|
-
* chart.Calculate();
|
|
53260
|
-
* XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",
|
|
53261
|
-
* string XValues = chart.NSeries[0].XValues;
|
|
53262
|
-
* But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",
|
|
53263
|
-
* For example, "External.xlsx" does not exist, then you can use CategoryValues,
|
|
53264
|
-
* It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.
|
|
53265
|
-
* ChartDataValue[][] v1 = chart.NSeries[0].CategoryValues;
|
|
53266
|
-
* </code>
|
|
53267
|
-
* </example>
|
|
53286
|
+
* Gets the actual category values that are used to plot every point
|
|
53287
|
+
* of this series in the chart.
|
|
53268
53288
|
*
|
|
53269
53289
|
* @remarks
|
|
53270
|
-
*
|
|
53271
|
-
* to the data defined by <see cref="Series.XValues"
|
|
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.
|
|
53272
53293
|
*/
|
|
53273
53294
|
readonly categoryValues : ChartDataValue[][];
|
|
53274
53295
|
/**
|
|
@@ -70102,8 +70123,23 @@ export class RangeCollection {
|
|
|
70102
70123
|
/**
|
|
70103
70124
|
* Adds a <see cref="Range"/> item to the collection.
|
|
70104
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.
|
|
70105
70134
|
*/
|
|
70106
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;
|
|
70107
70143
|
/**
|
|
70108
70144
|
* Gets the number of elements contained in.
|
|
70109
70145
|
*/
|