Skip to content

Commit 13f13f2

Browse files
committed
Aspose.Cells for Node.js via C++ v25.12 Api Reference
1 parent 7b75b79 commit 13f13f2

File tree

47 files changed

+740
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+740
-309
lines changed

english/nodejs-cpp/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ is_root: true
6363
| [ChartCalculateOptions](./chartcalculateoptions) | Represents the options for calculating chart. |
6464
| [ChartCollection](./chartcollection) | Encapsulates a collection of [Chart](../nodejs-cpp/chart/) objects. |
6565
| [ChartDataTable](./chartdatatable) | Represents a chart data table. |
66+
| [ChartDataValue](./chartdatavalue) | Encapsulates chart data value |
6667
| [ChartFrame](./chartframe) | Encapsulates the object that represents the frame object in a chart. |
6768
| [ChartGlobalizationSettings](./chartglobalizationsettings) | Represents the globalization settings for chart. |
6869
| [ChartPoint](./chartpoint) | Represents a single point in a series in a chart. |
@@ -585,6 +586,7 @@ is_root: true
585586
| [DataBarBorderType](./databarbordertype) | Specifies the border type of a data bar. |
586587
| [DataBarFillType](./databarfilltype) | Specifies how a data bar is filled with color. |
587588
| [DataBarNegativeColorType](./databarnegativecolortype) | Specifies whether to use the same border and fill color as positive data bars. |
589+
| [DataBarRenderMode](./databarrendermode) | Represents the DataBar render mode. |
588590
| [DataLabelShapeType](./datalabelshapetype) | Specifies the preset shape geometry that is to be used for a chart. |
589591
| [DataLabelsSeparatorType](./datalabelsseparatortype) | Represents the separator type of DataLabels. |
590592
| [DateTimeGroupingType](./datetimegroupingtype) | Specifies how to group dateTime values. |

english/nodejs-cpp/arcshape/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3402,16 +3402,16 @@ removeHyperlink() : void;
34023402
Moves the shape to a specified range.
34033403

34043404
```javascript
3405-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
3405+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
34063406
```
34073407

34083408
**Parameters:**
34093409
| Parameter | Type | Description |
34103410
| --- | --- | --- |
3411-
| upperLeftRow | number | Upper left row index. |
3412-
| upperLeftColumn | number | Upper left column index. |
3413-
| lowerRightRow | number | Lower right row index |
3414-
| lowerRightColumn | number | Lower right column index |
3411+
| topRow | number | Upper left row index. |
3412+
| leftColumn | number | Upper left column index. |
3413+
| bottomRow | number | Lower right row index |
3414+
| rightColumn | number | Lower right column index |
34153415

34163416
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
34173417

english/nodejs-cpp/autofilltype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Represents the auto fill type.
1313
| --- | --- | --- |
1414
| Copy | `1` | Copies the value and format of the source area to the target area |
1515
| Default | `0` | Automatically fills the target area with the value and format. |
16-
| Formats | `3` | Copies only the format of the source area to the target area, |
16+
| Formats | `3` | Only copies the format of the source area to the target area. |
1717
| Series | `2` | Extend the value in the source area to the target area in the form of a series and copy format to the target area. |
1818
| Values | `4` | Copies only the value of the source area to the target area, |
1919

english/nodejs-cpp/axis/_index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ workbook.save("output/ChartsAxis.xlsx");
7575
| [tickLabelPosition](#tickLabelPosition--)| TickLabelPositionType | Represents the position of tick-mark labels on the specified axis. |
7676
| [crossAt](#crossAt--)| number | Represents the point on the value axis where the category axis crosses it. |
7777
| [crossType](#crossType--)| CrossType | Represents the [CrossType](../crosstype/) on the specified axis where the other axis crosses. |
78-
| [logBase](#logBase--)| number | Represents the logarithmic base. Default value is 10.Only applies for Excel2007. |
78+
| [logBase](#logBase--)| number | Represents the logarithmic base. Default value is 10. |
7979
| [isLogarithmic](#isLogarithmic--)| boolean | Represents if the value axis scale type is logarithmic or not. |
8080
| [isPlotOrderReversed](#isPlotOrderReversed--)| boolean | Represents if Microsoft Excel plots data points from last to first. |
8181
| [axisBetweenCategories](#axisBetweenCategories--)| boolean | Represents if the value axis crosses the category axis between categories. |
@@ -88,8 +88,8 @@ workbook.save("output/ChartsAxis.xlsx");
8888
| [customDisplayUnit](#customDisplayUnit--)| number | Specifies a custom value for the display unit. |
8989
| [displayUnitLabel](#displayUnitLabel--)| DisplayUnitLabel | Readonly. Represents a unit label on an axis in the specified chart. Unit labels are useful for charting large values— for example, in the millions or billions. |
9090
| [isDisplayUnitLabelShown](#isDisplayUnitLabelShown--)| boolean | Represents if the display unit label is shown on the specified axis. |
91-
| [title](#title--)| Title | Readonly. Gets the axis' title. |
92-
| [categoryType](#categoryType--)| CategoryType | Represents the category axis type. |
91+
| [title](#title--)| Title | Readonly. Gets the title of this axis in the chart. |
92+
| [categoryType](#categoryType--)| CategoryType | Represents the type of the category axis. |
9393
| [baseUnitScale](#baseUnitScale--)| TimeUnit | Represents the base unit scale for the category axis. |
9494
| [majorUnitScale](#majorUnitScale--)| TimeUnit | Represents the major unit scale for the category axis. |
9595
| [minorUnitScale](#minorUnitScale--)| TimeUnit | Represents the major unit scale for the category axis. |
@@ -131,8 +131,8 @@ workbook.save("output/ChartsAxis.xlsx");
131131
| [setCrossAt(number)](#setCrossAt-number-)| <b>@deprecated.</b> Please use the 'crossAt' property instead. Represents the point on the value axis where the category axis crosses it. |
132132
| [getCrossType()](#getCrossType--)| <b>@deprecated.</b> Please use the 'crossType' property instead. Represents the [CrossType](../crosstype/) on the specified axis where the other axis crosses. |
133133
| [setCrossType(CrossType)](#setCrossType-crosstype-)| <b>@deprecated.</b> Please use the 'crossType' property instead. Represents the [CrossType](../crosstype/) on the specified axis where the other axis crosses. |
134-
| [getLogBase()](#getLogBase--)| <b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.Only applies for Excel2007. |
135-
| [setLogBase(number)](#setLogBase-number-)| <b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.Only applies for Excel2007. |
134+
| [getLogBase()](#getLogBase--)| <b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10. |
135+
| [setLogBase(number)](#setLogBase-number-)| <b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10. |
136136
| [isLogarithmic()](#isLogarithmic--)| <b>@deprecated.</b> Please use the 'isLogarithmic' property instead. Represents if the value axis scale type is logarithmic or not. |
137137
| [setIsLogarithmic(boolean)](#setIsLogarithmic-boolean-)| <b>@deprecated.</b> Please use the 'isLogarithmic' property instead. Represents if the value axis scale type is logarithmic or not. |
138138
| [isPlotOrderReversed()](#isPlotOrderReversed--)| <b>@deprecated.</b> Please use the 'isPlotOrderReversed' property instead. Represents if Microsoft Excel plots data points from last to first. |
@@ -155,9 +155,9 @@ workbook.save("output/ChartsAxis.xlsx");
155155
| [getDisplayUnitLabel()](#getDisplayUnitLabel--)| <b>@deprecated.</b> Please use the 'displayUnitLabel' property instead. Represents a unit label on an axis in the specified chart. Unit labels are useful for charting large values— for example, in the millions or billions. |
156156
| [isDisplayUnitLabelShown()](#isDisplayUnitLabelShown--)| <b>@deprecated.</b> Please use the 'isDisplayUnitLabelShown' property instead. Represents if the display unit label is shown on the specified axis. |
157157
| [setIsDisplayUnitLabelShown(boolean)](#setIsDisplayUnitLabelShown-boolean-)| <b>@deprecated.</b> Please use the 'isDisplayUnitLabelShown' property instead. Represents if the display unit label is shown on the specified axis. |
158-
| [getTitle()](#getTitle--)| <b>@deprecated.</b> Please use the 'title' property instead. Gets the axis' title. |
159-
| [getCategoryType()](#getCategoryType--)| <b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the category axis type. |
160-
| [setCategoryType(CategoryType)](#setCategoryType-categorytype-)| <b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the category axis type. |
158+
| [getTitle()](#getTitle--)| <b>@deprecated.</b> Please use the 'title' property instead. Gets the title of this axis in the chart. |
159+
| [getCategoryType()](#getCategoryType--)| <b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the type of the category axis. |
160+
| [setCategoryType(CategoryType)](#setCategoryType-categorytype-)| <b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the type of the category axis. |
161161
| [getBaseUnitScale()](#getBaseUnitScale--)| <b>@deprecated.</b> Please use the 'baseUnitScale' property instead. Represents the base unit scale for the category axis. |
162162
| [setBaseUnitScale(TimeUnit)](#setBaseUnitScale-timeunit-)| <b>@deprecated.</b> Please use the 'baseUnitScale' property instead. Represents the base unit scale for the category axis. |
163163
| [getMajorUnitScale()](#getMajorUnitScale--)| <b>@deprecated.</b> Please use the 'majorUnitScale' property instead. Represents the major unit scale for the category axis. |
@@ -332,7 +332,7 @@ crossType : CrossType;
332332

333333
### logBase {#logBase--}
334334

335-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
335+
Represents the logarithmic base. Default value is 10.
336336

337337
```javascript
338338
logBase : number;
@@ -469,7 +469,7 @@ The default value is True.
469469

470470
### title {#title--}
471471

472-
Readonly. Gets the axis' title.
472+
Readonly. Gets the title of this axis in the chart.
473473

474474
```javascript
475475
title : Title;
@@ -478,7 +478,7 @@ title : Title;
478478

479479
### categoryType {#categoryType--}
480480

481-
Represents the category axis type.
481+
Represents the type of the category axis.
482482

483483
```javascript
484484
categoryType : CategoryType;
@@ -1027,7 +1027,7 @@ setCrossType(value: CrossType) : void;
10271027

10281028
### getLogBase() {#getLogBase--}
10291029

1030-
<b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
1030+
<b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.
10311031

10321032
```javascript
10331033
getLogBase() : number;
@@ -1036,7 +1036,7 @@ getLogBase() : number;
10361036

10371037
### setLogBase(number) {#setLogBase-number-}
10381038

1039-
<b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
1039+
<b>@deprecated.</b> Please use the 'logBase' property instead. Represents the logarithmic base. Default value is 10.
10401040

10411041
```javascript
10421042
setLogBase(value: number) : void;
@@ -1339,7 +1339,7 @@ The default value is True.
13391339

13401340
### getTitle() {#getTitle--}
13411341

1342-
<b>@deprecated.</b> Please use the 'title' property instead. Gets the axis' title.
1342+
<b>@deprecated.</b> Please use the 'title' property instead. Gets the title of this axis in the chart.
13431343

13441344
```javascript
13451345
getTitle() : Title;
@@ -1352,7 +1352,7 @@ getTitle() : Title;
13521352

13531353
### getCategoryType() {#getCategoryType--}
13541354

1355-
<b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the category axis type.
1355+
<b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the type of the category axis.
13561356

13571357
```javascript
13581358
getCategoryType() : CategoryType;
@@ -1365,7 +1365,7 @@ getCategoryType() : CategoryType;
13651365

13661366
### setCategoryType(CategoryType) {#setCategoryType-categorytype-}
13671367

1368-
<b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the category axis type.
1368+
<b>@deprecated.</b> Please use the 'categoryType' property instead. Represents the type of the category axis.
13691369

13701370
```javascript
13711371
setCategoryType(value: CategoryType) : void;

english/nodejs-cpp/button/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3392,16 +3392,16 @@ removeHyperlink() : void;
33923392
Moves the shape to a specified range.
33933393

33943394
```javascript
3395-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
3395+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
33963396
```
33973397

33983398
**Parameters:**
33993399
| Parameter | Type | Description |
34003400
| --- | --- | --- |
3401-
| upperLeftRow | number | Upper left row index. |
3402-
| upperLeftColumn | number | Upper left column index. |
3403-
| lowerRightRow | number | Lower right row index |
3404-
| lowerRightColumn | number | Lower right column index |
3401+
| topRow | number | Upper left row index. |
3402+
| leftColumn | number | Upper left column index. |
3403+
| bottomRow | number | Lower right row index |
3404+
| rightColumn | number | Lower right column index |
34053405

34063406
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
34073407

english/nodejs-cpp/cellsdrawing/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3364,16 +3364,16 @@ removeHyperlink() : void;
33643364
Moves the shape to a specified range.
33653365

33663366
```javascript
3367-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
3367+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
33683368
```
33693369

33703370
**Parameters:**
33713371
| Parameter | Type | Description |
33723372
| --- | --- | --- |
3373-
| upperLeftRow | number | Upper left row index. |
3374-
| upperLeftColumn | number | Upper left column index. |
3375-
| lowerRightRow | number | Lower right row index |
3376-
| lowerRightColumn | number | Lower right column index |
3373+
| topRow | number | Upper left row index. |
3374+
| leftColumn | number | Upper left column index. |
3375+
| bottomRow | number | Lower right row index |
3376+
| rightColumn | number | Lower right column index |
33773377

33783378
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
33793379

english/nodejs-cpp/chart/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,16 +1685,16 @@ changeTemplate(data: Uint8Array) : void;
16851685
Moves the chart to a specified location.
16861686

16871687
```javascript
1688-
move(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
1688+
move(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
16891689
```
16901690

16911691
**Parameters:**
16921692
| Parameter | Type | Description |
16931693
| --- | --- | --- |
1694-
| upperLeftRow | number | Upper left row index. |
1695-
| upperLeftColumn | number | Upper left column index. |
1696-
| lowerRightRow | number | Lower right row index |
1697-
| lowerRightColumn | number | Lower right column index |
1694+
| topRow | number | Upper left row index. |
1695+
| leftColumn | number | Upper left column index. |
1696+
| bottomRow | number | Lower right row index |
1697+
| rightColumn | number | Lower right column index |
16981698

16991699
### calculate() {#calculate--}
17001700

english/nodejs-cpp/chartcollection/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ addFloatingChart(type: ChartType, left: number, top: number, width: number, heig
102102
Adds a chart to the collection.
103103

104104
```javascript
105-
add(type: ChartType, upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : number;
105+
add(type: ChartType, topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : number;
106106
```
107107

108108
**Parameters:**
109109
| Parameter | Type | Description |
110110
| --- | --- | --- |
111111
| type | [ChartType](../charttype/) | Chart type |
112-
| upperLeftRow | number | Upper left row index. |
113-
| upperLeftColumn | number | Upper left column index. |
114-
| lowerRightRow | number | Lower right row index |
115-
| lowerRightColumn | number | Lower right column index |
112+
| topRow | number | Upper left row index. |
113+
| leftColumn | number | Upper left column index. |
114+
| bottomRow | number | Lower right row index |
115+
| rightColumn | number | Lower right column index |
116116

117117
**Returns**
118118

0 commit comments

Comments
 (0)