Skip to content

Commit e4df767

Browse files
committed
Release Aspose.Cells Cloud SDK 20.9
1 parent 4eeae1b commit e4df767

File tree

291 files changed

+6078
-2917
lines changed

Some content is hidden

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

291 files changed

+6078
-2917
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ This Cloud SDK enhances your Java cloud-based apps to [process & manipulate Micr
1818
- Cloud SDK to Read & Process Excel Worksheets.
1919
- Leverage the Power of Pivot Tables & Ranges.
2020

21-
## Enhancements in Version 20.8
21+
## Enhancements in Version 20.9
2222

23-
- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage.
24-
- Get output file size without downloading during conversion.
25-
- Enhancement for CellsShapesPutWorksheetShape API.
23+
- Support sparkline groups.
24+
- Add API about updating pivot field.
25+
- Enhancement for add chart API.
2626

2727
## Read & Write Spreadsheet Formats
2828

docs/AccessTokenResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**accessToken** | **String** | | [optional]
99
**issued** | **String** | | [optional]
1010
**clientRefreshTokenLifeTimeInMinutes** | **String** | | [optional]
11-
**expiresIn** | **Integer** | | [optional]
11+
**expiresIn** | **Long** | | [optional]
1212
**tokenType** | **String** | | [optional]
1313
**clientId** | **String** | | [optional]
1414
**refreshToken** | **String** | | [optional]

docs/CellsApi.md

Lines changed: 440 additions & 2 deletions
Large diffs are not rendered by default.

docs/CellsCloudFileInfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**name** | **String** | | [optional]
8-
**size** | **Integer** | |
8+
**size** | **Long** | |
99
**folder** | **String** | | [optional]
1010
**storage** | **String** | | [optional]
1111

docs/Error.md renamed to docs/CellsError.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Error
2+
# CellsError
33

44
## Properties
55
Name | Type | Description | Notes

docs/DiscUsage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**usedSize** | **Integer** | Application used disc space. |
8-
**totalSize** | **Integer** | Total disc space. |
7+
**usedSize** | **Long** | Application used disc space. |
8+
**totalSize** | **Long** | Total disc space. |
99

1010

1111

docs/FilesUploadResult.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**uploaded** | **List<String>** | List of uploaded file names | [optional]
8-
**errors** | [**List<Error>**](Error.md) | List of errors. | [optional]
8+
**errors** | [**List<CellsError>**](CellsError.md) | List of errors. | [optional]
99

1010

1111

docs/Sparkline.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# Sparkline
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**column** | **Integer** | |
8+
**dataRange** | **String** | | [optional]
9+
**row** | **Integer** | |
10+
11+
12+

docs/SparklineGroup.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
# SparklineGroup
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**displayHidden** | **Boolean** | | [optional]
8+
**firstPointColor** | [**CellsColor**](CellsColor.md) | | [optional]
9+
**highPointColor** | [**CellsColor**](CellsColor.md) | | [optional]
10+
**horizontalAxisColor** | [**CellsColor**](CellsColor.md) | | [optional]
11+
**horizontalAxisDateRange** | **String** | | [optional]
12+
**lastPointColor** | [**CellsColor**](CellsColor.md) | | [optional]
13+
**lineWeight** | **Double** | | [optional]
14+
**lowPointColor** | [**CellsColor**](CellsColor.md) | | [optional]
15+
**markersColor** | [**CellsColor**](CellsColor.md) | | [optional]
16+
**negativePointsColor** | [**CellsColor**](CellsColor.md) | | [optional]
17+
**plotEmptyCellsType** | **String** | | [optional]
18+
**plotRightToLeft** | **Boolean** | | [optional]
19+
**presetStyle** | **String** | | [optional]
20+
**seriesColor** | [**CellsColor**](CellsColor.md) | | [optional]
21+
**showFirstPoint** | **Boolean** | | [optional]
22+
**showHighPoint** | **Boolean** | | [optional]
23+
**showHorizontalAxis** | **Boolean** | | [optional]
24+
**showLastPoint** | **Boolean** | | [optional]
25+
**showLowPoint** | **Boolean** | | [optional]
26+
**showMarkers** | **Boolean** | | [optional]
27+
**showNegativePoints** | **Boolean** | | [optional]
28+
**sparklineCollection** | [**List<Sparkline>**](Sparkline.md) | | [optional]
29+
**type** | **String** | | [optional]
30+
**verticalAxisMaxValue** | **Double** | | [optional]
31+
**verticalAxisMaxValueType** | **String** | | [optional]
32+
**verticalAxisMinValue** | **Double** | | [optional]
33+
**verticalAxisMinValueType** | **String** | | [optional]
34+
35+
36+

docs/SparklineGroupResponse.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# SparklineGroupResponse
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**sparklineGroup** | [**SparklineGroup**](SparklineGroup.md) | | [optional]
8+
9+
10+

0 commit comments

Comments
 (0)