Skip to content

Commit 7b75b79

Browse files
committed
Api references for Aspose.Cells for Java 25.12
1 parent 63d6bea commit 7b75b79

File tree

53 files changed

+1201
-448
lines changed

Some content is hidden

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

53 files changed

+1201
-448
lines changed

english/java/com.aspose.cells/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ Provides core apis and features to manipulate spreadsheet files and data directl
9595
| [ChartCollection](../com.aspose.cells/chartcollection) | Encapsulates a collection of [Chart](../com.aspose.cells/chart) objects. |
9696
| [ChartColorPaletteType](../com.aspose.cells/chartcolorpalettetype) | Enumerates all Monochromatic Palettes used in Excel chart. |
9797
| [ChartDataTable](../com.aspose.cells/chartdatatable) | Represents a chart data table. |
98+
| [ChartDataValue](../com.aspose.cells/chartdatavalue) | Encapsulates chart data value |
9899
| [ChartFrame](../com.aspose.cells/chartframe) | Encapsulates the object that represents the frame object in a chart. |
99100
| [ChartGlobalizationSettings](../com.aspose.cells/chartglobalizationsettings) | Represents the globalization settings for chart. |
100101
| [ChartLineFormattingType](../com.aspose.cells/chartlineformattingtype) | Represents line format type of chart line. |
@@ -177,6 +178,7 @@ Provides core apis and features to manipulate spreadsheet files and data directl
177178
| [DataBarBorderType](../com.aspose.cells/databarbordertype) | Specifies the border type of a data bar. |
178179
| [DataBarFillType](../com.aspose.cells/databarfilltype) | Specifies how a data bar is filled with color. |
179180
| [DataBarNegativeColorType](../com.aspose.cells/databarnegativecolortype) | Specifies whether to use the same border and fill color as positive data bars. |
181+
| [DataBarRenderMode](../com.aspose.cells/databarrendermode) | Represents the DataBar render mode. |
180182
| [DataLabelShapeType](../com.aspose.cells/datalabelshapetype) | Specifies the preset shape geometry that is to be used for a chart. |
181183
| [DataLabels](../com.aspose.cells/datalabels) | Encapsulates a collection of all the DataLabel objects for the specified Series. |
182184
| [DataLabelsSeparatorType](../com.aspose.cells/datalabelsseparatortype) | Represents the separator type of DataLabels. |

english/java/com.aspose.cells/arcshape/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Represents the arc shape.
194194
| [isSmartArt()](#isSmartArt--) | Indicates whether the shape is a smart art. |
195195
| [isTextWrapped()](#isTextWrapped--) | Gets the text wrapped type of the shape which contains text. |
196196
| [isWordArt()](#isWordArt--) | Indicates whether this shape is a word art. |
197-
| [moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
197+
| [moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
198198
| [notify()](#notify--) | |
199199
| [notifyAll()](#notifyAll--) | |
200200
| [removeActiveXControl()](#removeActiveXControl--) | Remove activeX control. |
@@ -2479,9 +2479,9 @@ Only for the Legacy Shape of xls file.
24792479

24802480
**Returns:**
24812481
boolean
2482-
### moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn) {#moveToRange-int-int-int-int-}
2482+
### moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn) {#moveToRange-int-int-int-int-}
24832483
```
2484-
public void moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)
2484+
public void moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)
24852485
```
24862486

24872487

@@ -2496,10 +2496,10 @@ Moves the shape to a specified range.
24962496
**Parameters:**
24972497
| Parameter | Type | Description |
24982498
| --- | --- | --- |
2499-
| upperLeftRow | int | Upper left row index. |
2500-
| upperLeftColumn | int | Upper left column index. |
2501-
| lowerRightRow | int | Lower right row index |
2502-
| lowerRightColumn | int | Lower right column index |
2499+
| topRow | int | Upper left row index. |
2500+
| leftColumn | int | Upper left column index. |
2501+
| bottomRow | int | Lower right row index |
2502+
| rightColumn | int | Lower right column index |
25032503

25042504
### notify() {#notify--}
25052505
```

english/java/com.aspose.cells/autofilltype/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Represents the auto fill type.
1919
| --- | --- |
2020
| [COPY](#COPY) | Copies the value and format of the source area to the target area |
2121
| [DEFAULT](#DEFAULT) | Automatically fills the target area with the value and format. |
22-
| [FORMATS](#FORMATS) | Copies only the format of the source area to the target area, |
22+
| [FORMATS](#FORMATS) | Only copies the format of the source area to the target area. |
2323
| [SERIES](#SERIES) | Extend the value in the source area to the target area in the form of a series and copy format to the target area. |
2424
| [VALUES](#VALUES) | Copies only the value of the source area to the target area, |
2525
## Methods
@@ -57,7 +57,7 @@ public static final int FORMATS
5757
```
5858

5959

60-
Copies only the format of the source area to the target area,
60+
Only copies the format of the source area to the target area.
6161

6262
### SERIES {#SERIES}
6363
```

english/java/com.aspose.cells/axis/_index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ From the following codes , you can learn how to set unit, maximum and minimum va
7171
| [getAxisTexts()](#getAxisTexts--) | Gets the labels of the axis after call Chart.Calculate() method. |
7272
| [getBaseUnitScale()](#getBaseUnitScale--) | Represents the base unit scale for the category axis. |
7373
| [getBins()](#getBins--) | Represents bins on a chart(Histogram/Pareto) axis |
74-
| [getCategoryType()](#getCategoryType--) | Represents the category axis type. |
74+
| [getCategoryType()](#getCategoryType--) | Represents the type of the category axis. |
7575
| [getClass()](#getClass--) | |
7676
| [getCrossAt()](#getCrossAt--) | Represents the point on the value axis where the category axis crosses it. |
7777
| [getCrossType()](#getCrossType--) | Represents the [getCrossType()](../../com.aspose.cells/axis\#getCrossType--) on the specified axis where the other axis crosses. |
@@ -95,7 +95,7 @@ From the following codes , you can learn how to set unit, maximum and minimum va
9595
| [getTickLabelSpacing()](#getTickLabelSpacing--) | Represents the number of categories or series between tick-mark labels. |
9696
| [getTickLabels()](#getTickLabels--) | Returns a [getTickLabels()](../../com.aspose.cells/axis\#getTickLabels--) object that represents the tick-mark labels for the specified axis. |
9797
| [getTickMarkSpacing()](#getTickMarkSpacing--) | Returns or sets the number of categories or series between tick marks. |
98-
| [getTitle()](#getTitle--) | Gets the axis' title. |
98+
| [getTitle()](#getTitle--) | Gets the title of this axis in the chart. |
9999
| [hasMultiLevelLabels()](#hasMultiLevelLabels--) | Indicates whether the labels shall be shown as multi level. |
100100
| [hashCode()](#hashCode--) | |
101101
| [isAutoTickLabelSpacing()](#isAutoTickLabelSpacing--) | Indicates whether the spacing of tick label is automatic |
@@ -118,7 +118,7 @@ From the following codes , you can learn how to set unit, maximum and minimum va
118118
| [setAxisBetweenCategories(boolean value)](#setAxisBetweenCategories-boolean-) | Represents if the value axis crosses the category axis between categories. |
119119
| [setBaseUnitAuto(boolean value)](#setBaseUnitAuto-boolean-) | Represents whether the base unit is automatic. |
120120
| [setBaseUnitScale(int value)](#setBaseUnitScale-int-) | Represents the base unit scale for the category axis. |
121-
| [setCategoryType(int value)](#setCategoryType-int-) | Represents the category axis type. |
121+
| [setCategoryType(int value)](#setCategoryType-int-) | Represents the type of the category axis. |
122122
| [setCrossAt(double value)](#setCrossAt-double-) | Represents the point on the value axis where the category axis crosses it. |
123123
| [setCrossType(int value)](#setCrossType-int-) | Represents the [getCrossType()](../../com.aspose.cells/axis\#getCrossType--) on the specified axis where the other axis crosses. |
124124
| [setCustUnit(int value)](#setCustUnit-int-) | Specifies a custom value for the display unit. |
@@ -251,7 +251,7 @@ public int getCategoryType()
251251
```
252252

253253

254-
Represents the category axis type.
254+
Represents the type of the category axis.
255255

256256
See [CategoryType](../../com.aspose.cells/categorytype).
257257

@@ -359,7 +359,7 @@ public double getLogBase()
359359
```
360360

361361

362-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
362+
Represents the logarithmic base. Default value is 10.
363363

364364
**Returns:**
365365
double
@@ -566,7 +566,7 @@ public Title getTitle()
566566
```
567567

568568

569-
Gets the axis' title.
569+
Gets the title of this axis in the chart.
570570

571571
**Returns:**
572572
[Title](../../com.aspose.cells/title)
@@ -834,7 +834,7 @@ public void setCategoryType(int value)
834834
```
835835

836836

837-
Represents the category axis type.
837+
Represents the type of the category axis.
838838

839839
See [CategoryType](../../com.aspose.cells/categorytype).
840840

@@ -977,7 +977,7 @@ public void setLogBase(double value)
977977
```
978978

979979

980-
Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
980+
Represents the logarithmic base. Default value is 10.
981981

982982
**Parameters:**
983983
| Parameter | Type | Description |

english/java/com.aspose.cells/button/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Represents the Forms control: Button
171171
| [isSmartArt()](#isSmartArt--) | Indicates whether the shape is a smart art. |
172172
| [isTextWrapped()](#isTextWrapped--) | Gets the text wrapped type of the shape which contains text. |
173173
| [isWordArt()](#isWordArt--) | Indicates whether this shape is a word art. |
174-
| [moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
174+
| [moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
175175
| [notify()](#notify--) | |
176176
| [notifyAll()](#notifyAll--) | |
177177
| [removeActiveXControl()](#removeActiveXControl--) | Remove activeX control. |
@@ -2354,9 +2354,9 @@ Only for the Legacy Shape of xls file.
23542354

23552355
**Returns:**
23562356
boolean
2357-
### moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn) {#moveToRange-int-int-int-int-}
2357+
### moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn) {#moveToRange-int-int-int-int-}
23582358
```
2359-
public void moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)
2359+
public void moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)
23602360
```
23612361

23622362

@@ -2371,10 +2371,10 @@ Moves the shape to a specified range.
23712371
**Parameters:**
23722372
| Parameter | Type | Description |
23732373
| --- | --- | --- |
2374-
| upperLeftRow | int | Upper left row index. |
2375-
| upperLeftColumn | int | Upper left column index. |
2376-
| lowerRightRow | int | Lower right row index |
2377-
| lowerRightColumn | int | Lower right column index |
2374+
| topRow | int | Upper left row index. |
2375+
| leftColumn | int | Upper left column index. |
2376+
| bottomRow | int | Lower right row index |
2377+
| rightColumn | int | Lower right column index |
23782378

23792379
### notify() {#notify--}
23802380
```

english/java/com.aspose.cells/cellsdrawing/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Represents the auto shape and drawing object.
136136
| [isSmartArt()](#isSmartArt--) | Indicates whether the shape is a smart art. |
137137
| [isTextWrapped()](#isTextWrapped--) | Gets the text wrapped type of the shape which contains text. |
138138
| [isWordArt()](#isWordArt--) | Indicates whether this shape is a word art. |
139-
| [moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
139+
| [moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)](#moveToRange-int-int-int-int-) | Moves the shape to a specified range. |
140140
| [notify()](#notify--) | |
141141
| [notifyAll()](#notifyAll--) | |
142142
| [removeActiveXControl()](#removeActiveXControl--) | Remove activeX control. |
@@ -2319,9 +2319,9 @@ Only for the Legacy Shape of xls file.
23192319

23202320
**Returns:**
23212321
boolean
2322-
### moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn) {#moveToRange-int-int-int-int-}
2322+
### moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn) {#moveToRange-int-int-int-int-}
23232323
```
2324-
public void moveToRange(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)
2324+
public void moveToRange(int topRow, int leftColumn, int bottomRow, int rightColumn)
23252325
```
23262326

23272327

@@ -2336,10 +2336,10 @@ Moves the shape to a specified range.
23362336
**Parameters:**
23372337
| Parameter | Type | Description |
23382338
| --- | --- | --- |
2339-
| upperLeftRow | int | Upper left row index. |
2340-
| upperLeftColumn | int | Upper left column index. |
2341-
| lowerRightRow | int | Lower right row index |
2342-
| lowerRightColumn | int | Lower right column index |
2339+
| topRow | int | Upper left row index. |
2340+
| leftColumn | int | Upper left column index. |
2341+
| bottomRow | int | Lower right row index |
2342+
| rightColumn | int | Lower right column index |
23432343

23442344
### notify() {#notify--}
23452345
```

english/java/com.aspose.cells/chart/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The following codes show how to create a chart with .Net codes.
107107
| [isChartDataChanged()](#isChartDataChanged--) | Detects if a chart's data source has changed. |
108108
| [isRectangularCornered()](#isRectangularCornered--) | Gets a value indicating whether the chart area is rectangular cornered. |
109109
| [isReferedByChart(int rowIndex, int columnIndex)](#isReferedByChart-int-int-) | Returns whether the cell refered by the chart. |
110-
| [move(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)](#move-int-int-int-int-) | Moves the chart to a specified location. |
110+
| [move(int topRow, int leftColumn, int bottomRow, int rightColumn)](#move-int-int-int-int-) | Moves the chart to a specified location. |
111111
| [notify()](#notify--) | |
112112
| [notifyAll()](#notifyAll--) | |
113113
| [refreshPivotData()](#refreshPivotData--) | Refreshes chart's data from pivot table. |
@@ -899,9 +899,9 @@ NOTE: This method is now obsolete. Instead, please use IsCellReferedByChart(int,
899899

900900
**Returns:**
901901
boolean -
902-
### move(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn) {#move-int-int-int-int-}
902+
### move(int topRow, int leftColumn, int bottomRow, int rightColumn) {#move-int-int-int-int-}
903903
```
904-
public void move(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)
904+
public void move(int topRow, int leftColumn, int bottomRow, int rightColumn)
905905
```
906906

907907

@@ -910,10 +910,10 @@ Moves the chart to a specified location.
910910
**Parameters:**
911911
| Parameter | Type | Description |
912912
| --- | --- | --- |
913-
| upperLeftRow | int | Upper left row index. |
914-
| upperLeftColumn | int | Upper left column index. |
915-
| lowerRightRow | int | Lower right row index |
916-
| lowerRightColumn | int | Lower right column index |
913+
| topRow | int | Upper left row index. |
914+
| leftColumn | int | Upper left column index. |
915+
| bottomRow | int | Lower right row index |
916+
| rightColumn | int | Lower right column index |
917917

918918
### notify() {#notify--}
919919
```

english/java/com.aspose.cells/chartcollection/_index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Encapsulates a collection of [Chart](../../com.aspose.cells/chart) objects.
2626
| Method | Description |
2727
| --- | --- |
2828
| [add(byte[] data, String dataRange, boolean isVertical, int topRow, int leftColumn, int rightRow, int bottomColumn)](#add-byte---java.lang.String-boolean-int-int-int-int-) | Adds a chart with preset template. |
29-
| [add(int type, int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)](#add-int-int-int-int-int-) | Adds a chart to the collection. |
29+
| [add(int type, int topRow, int leftColumn, int bottomRow, int rightColumn)](#add-int-int-int-int-int-) | Adds a chart to the collection. |
3030
| [add(int type, String dataRange, boolean isVertical, int topRow, int leftColumn, int rightRow, int bottomColumn)](#add-int-java.lang.String-boolean-int-int-int-int-) | Adds a chart to the collection. |
3131
| [add(int type, String dataRange, int topRow, int leftColumn, int rightRow, int bottomColumn)](#add-int-java.lang.String-int-int-int-int-) | Adds a chart to the collection. |
3232
| [add(Object o)](#add-java.lang.Object-) | Adds an item to the CollectionBase instance. |
@@ -70,9 +70,9 @@ Adds a chart with preset template.
7070

7171
**Returns:**
7272
int - [Chart](../../com.aspose.cells/chart) object index.
73-
### add(int type, int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn) {#add-int-int-int-int-int-}
73+
### add(int type, int topRow, int leftColumn, int bottomRow, int rightColumn) {#add-int-int-int-int-int-}
7474
```
75-
public int add(int type, int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn)
75+
public int add(int type, int topRow, int leftColumn, int bottomRow, int rightColumn)
7676
```
7777

7878

@@ -82,10 +82,10 @@ Adds a chart to the collection.
8282
| Parameter | Type | Description |
8383
| --- | --- | --- |
8484
| type | int | [ChartType](../../com.aspose.cells/charttype). Chart type |
85-
| upperLeftRow | int | Upper left row index. |
86-
| upperLeftColumn | int | Upper left column index. |
87-
| lowerRightRow | int | Lower right row index |
88-
| lowerRightColumn | int | Lower right column index |
85+
| topRow | int | Upper left row index. |
86+
| leftColumn | int | Upper left column index. |
87+
| bottomRow | int | Lower right row index |
88+
| rightColumn | int | Lower right column index |
8989

9090
**Returns:**
9191
int - [Chart](../../com.aspose.cells/chart) object index.

0 commit comments

Comments
 (0)