Skip to content

Commit 8bfd9d1

Browse files
committed
aspose.cells for javascript via c++ v25.12 api reference
1 parent 9c9f8df commit 8bfd9d1

File tree

47 files changed

+507
-287
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

+507
-287
lines changed

english/javascript-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](../javascript-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. |
@@ -586,6 +587,7 @@ is_root: true
586587
| [DataBarBorderType](./databarbordertype) | Specifies the border type of a data bar. |
587588
| [DataBarFillType](./databarfilltype) | Specifies how a data bar is filled with color. |
588589
| [DataBarNegativeColorType](./databarnegativecolortype) | Specifies whether to use the same border and fill color as positive data bars. |
590+
| [DataBarRenderMode](./databarrendermode) | Represents the DataBar render mode. |
589591
| [DataLabelShapeType](./datalabelshapetype) | Specifies the preset shape geometry that is to be used for a chart. |
590592
| [DataLabelsSeparatorType](./datalabelsseparatortype) | Represents the separator type of DataLabels. |
591593
| [DateTimeGroupingType](./datetimegroupingtype) | Specifies how to group dateTime values. |

english/javascript-cpp/arcshape/_index.md

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

12241224
```javascript
1225-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
1225+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
12261226
```
12271227

12281228
**Parameters:**
12291229
| Parameter | Type | Description |
12301230
| --- | --- | --- |
1231-
| upperLeftRow | number | Upper left row index. |
1232-
| upperLeftColumn | number | Upper left column index. |
1233-
| lowerRightRow | number | Lower right row index |
1234-
| lowerRightColumn | number | Lower right column index |
1231+
| topRow | number | Upper left row index. |
1232+
| leftColumn | number | Upper left column index. |
1233+
| bottomRow | number | Lower right row index |
1234+
| rightColumn | number | Lower right column index |
12351235

12361236
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
12371237

english/javascript-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/javascript-cpp/axis/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var uint8Array = workbook.save(SaveFormat.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 @@ var uint8Array = workbook.save(SaveFormat.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. |
@@ -263,7 +263,7 @@ crossType : CrossType;
263263

264264
### logBase {#logBase--}
265265

266-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
266+
Represents the logarithmic base. Default value is 10.
267267

268268
```javascript
269269
logBase : number;
@@ -400,7 +400,7 @@ The default value is True.
400400

401401
### title {#title--}
402402

403-
Readonly. Gets the axis' title.
403+
Readonly. Gets the title of this axis in the chart.
404404

405405
```javascript
406406
title : Title;
@@ -409,7 +409,7 @@ title : Title;
409409

410410
### categoryType {#categoryType--}
411411

412-
Represents the category axis type.
412+
Represents the type of the category axis.
413413

414414
```javascript
415415
categoryType : CategoryType;

english/javascript-cpp/button/_index.md

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

12141214
```javascript
1215-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
1215+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
12161216
```
12171217

12181218
**Parameters:**
12191219
| Parameter | Type | Description |
12201220
| --- | --- | --- |
1221-
| upperLeftRow | number | Upper left row index. |
1222-
| upperLeftColumn | number | Upper left column index. |
1223-
| lowerRightRow | number | Lower right row index |
1224-
| lowerRightColumn | number | Lower right column index |
1221+
| topRow | number | Upper left row index. |
1222+
| leftColumn | number | Upper left column index. |
1223+
| bottomRow | number | Lower right row index |
1224+
| rightColumn | number | Lower right column index |
12251225

12261226
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
12271227

english/javascript-cpp/cellsdrawing/_index.md

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

11861186
```javascript
1187-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
1187+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
11881188
```
11891189

11901190
**Parameters:**
11911191
| Parameter | Type | Description |
11921192
| --- | --- | --- |
1193-
| upperLeftRow | number | Upper left row index. |
1194-
| upperLeftColumn | number | Upper left column index. |
1195-
| lowerRightRow | number | Lower right row index |
1196-
| lowerRightColumn | number | Lower right column index |
1193+
| topRow | number | Upper left row index. |
1194+
| leftColumn | number | Upper left column index. |
1195+
| bottomRow | number | Lower right row index |
1196+
| rightColumn | number | Lower right column index |
11971197

11981198
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
11991199

english/javascript-cpp/chart/_index.md

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

676676
```javascript
677-
move(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
677+
move(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
678678
```
679679

680680
**Parameters:**
681681
| Parameter | Type | Description |
682682
| --- | --- | --- |
683-
| upperLeftRow | number | Upper left row index. |
684-
| upperLeftColumn | number | Upper left column index. |
685-
| lowerRightRow | number | Lower right row index |
686-
| lowerRightColumn | number | Lower right column index |
683+
| topRow | number | Upper left row index. |
684+
| leftColumn | number | Upper left column index. |
685+
| bottomRow | number | Lower right row index |
686+
| rightColumn | number | Lower right column index |
687687

688688
### calculate() {#calculate--}
689689

english/javascript-cpp/chartcollection/_index.md

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

102102
```javascript
103-
add(type: ChartType, upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : number;
103+
add(type: ChartType, topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : number;
104104
```
105105

106106
**Parameters:**
107107
| Parameter | Type | Description |
108108
| --- | --- | --- |
109109
| type | [ChartType](../charttype/) | Chart type |
110-
| upperLeftRow | number | Upper left row index. |
111-
| upperLeftColumn | number | Upper left column index. |
112-
| lowerRightRow | number | Lower right row index |
113-
| lowerRightColumn | number | Lower right column index |
110+
| topRow | number | Upper left row index. |
111+
| leftColumn | number | Upper left column index. |
112+
| bottomRow | number | Lower right row index |
113+
| rightColumn | number | Lower right column index |
114114

115115
**Returns**
116116

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
title: ChartDataValue
3+
second_title: Aspose.Cells for JavaScript via C++ API Reference
4+
description: Encapsulates chart data value
5+
type: docs
6+
url: /javascript-cpp/chartdatavalue/
7+
---
8+
9+
## ChartDataValue class
10+
11+
Encapsulates chart data value
12+
13+
```javascript
14+
class ChartDataValue;
15+
```
16+
17+
18+
## Properties
19+
20+
| Property | Type | Description |
21+
| --- | --- | --- |
22+
| [valueType](#valueType--)| CellValueType | Readonly. Gets the value type of the chart data. |
23+
| [stringValue](#stringValue--)| string | Readonly. Gets the string value of the chart data. |
24+
| [intValue](#intValue--)| number | Readonly. Gets the Int value of the chart data. |
25+
| [doubleValue](#doubleValue--)| number | Readonly. Gets the double value of the chart data. |
26+
| [dateTimeValue](#dateTimeValue--)| Date | Readonly. Gets the DateTime value of the chart data. |
27+
| [boolValue](#boolValue--)| boolean | Readonly. Gets the boolean value of the chart data. |
28+
29+
30+
### valueType {#valueType--}
31+
32+
Readonly. Gets the value type of the chart data.
33+
34+
```javascript
35+
valueType : CellValueType;
36+
```
37+
38+
39+
### stringValue {#stringValue--}
40+
41+
Readonly. Gets the string value of the chart data.
42+
43+
```javascript
44+
stringValue : string;
45+
```
46+
47+
48+
### intValue {#intValue--}
49+
50+
Readonly. Gets the Int value of the chart data.
51+
52+
```javascript
53+
intValue : number;
54+
```
55+
56+
57+
### doubleValue {#doubleValue--}
58+
59+
Readonly. Gets the double value of the chart data.
60+
61+
```javascript
62+
doubleValue : number;
63+
```
64+
65+
66+
### dateTimeValue {#dateTimeValue--}
67+
68+
Readonly. Gets the DateTime value of the chart data.
69+
70+
```javascript
71+
dateTimeValue : Date;
72+
```
73+
74+
75+
### boolValue {#boolValue--}
76+
77+
Readonly. Gets the boolean value of the chart data.
78+
79+
```javascript
80+
boolValue : boolean;
81+
```
82+
83+
84+

english/javascript-cpp/chartshape/_index.md

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

12331233
```javascript
1234-
moveToRange(upperLeftRow: number, upperLeftColumn: number, lowerRightRow: number, lowerRightColumn: number) : void;
1234+
moveToRange(topRow: number, leftColumn: number, bottomRow: number, rightColumn: number) : void;
12351235
```
12361236

12371237
**Parameters:**
12381238
| Parameter | Type | Description |
12391239
| --- | --- | --- |
1240-
| upperLeftRow | number | Upper left row index. |
1241-
| upperLeftColumn | number | Upper left column index. |
1242-
| lowerRightRow | number | Lower right row index |
1243-
| lowerRightColumn | number | Lower right column index |
1240+
| topRow | number | Upper left row index. |
1241+
| leftColumn | number | Upper left column index. |
1242+
| bottomRow | number | Lower right row index |
1243+
| rightColumn | number | Lower right column index |
12441244

12451245
### alignTopRightCorner(number, number) {#alignTopRightCorner-number-number-}
12461246

0 commit comments

Comments
 (0)