Skip to content

Commit 79e390e

Browse files
committed
26.1
1 parent d358d09 commit 79e390e

335 files changed

Lines changed: 816 additions & 563 deletions

File tree

Some content is hidden

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

english/aspose.cells.charts/series/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ The Series type exposes the following members:
3131
| [values](/cells/python-net/aspose.cells.charts/series/values) | Represents the Y values of this chart series. |
3232
| [cached_values](/cells/python-net/aspose.cells.charts/series/cached_values) | Gets the cached values for the series |
3333
| [cached_category_values](/cells/python-net/aspose.cells.charts/series/cached_category_values) | Gets the cached category values for the series |
34-
| [point_values](/cells/python-net/aspose.cells.charts/series/point_values) | Represents the actual values that are used to plot every point in the chart.<br/>corresponding to [`Series.values`](/cells/python-net/aspose.cells.charts/series#values)<br/>When Series.Values is a link, you can use this attribute to get specific data.<br/><br/>```python<br/>from aspose.cells import Workbook<br/><br/>workbook = Workbook("YourFilePathName")<br/>worksheet = workbook.worksheets[0]<br/>chart = worksheet.charts[0]<br/>chart.calculate()<br/># Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",<br/>Values = chart.n_series[0].values<br/># But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",<br/># For example, "External.xlsx" does not exist, then you can use PointValues,<br/># It will return the values actually displayed in the Excel interface in the form of an array.<br/>v1 = chart.n_series[0].point_values<br/><br/>``` |
35-
| [category_values](/cells/python-net/aspose.cells.charts/series/category_values) | Represents the actual category values that are used in the chart.<br/>corresponding to [`Series.x_values`](/cells/python-net/aspose.cells.charts/series#x_values)<br/>When Series.XValues is a link, you can use this attribute to get specific data.<br/><br/>```python<br/>from aspose.cells import Workbook<br/><br/>workbook = Workbook("YourFilePathName")<br/>worksheet = workbook.worksheets[0]<br/>chart = worksheet.charts[0]<br/>chart.calculate()<br/># XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",<br/>XValues = chart.n_series[0].x_values<br/># But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",<br/># For example, "External.xlsx" does not exist, then you can use CategoryValues,<br/># It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.<br/>v1 = chart.n_series[0].category_values<br/><br/>``` |
34+
| [point_values](/cells/python-net/aspose.cells.charts/series/point_values) | Gets the actual values that are used to plot every point<br/>of this series in the chart. |
35+
| [category_values](/cells/python-net/aspose.cells.charts/series/category_values) | Gets the actual category values that are used to plot every point<br/>of this series in the chart. |
3636
| [values_format_code](/cells/python-net/aspose.cells.charts/series/values_format_code) | Represents format code of Values's NumberList. |
3737
| [x_values_format_code](/cells/python-net/aspose.cells.charts/series/x_values_format_code) | Represents format code of X Values's NumberList. |
3838
| [x_values](/cells/python-net/aspose.cells.charts/series/x_values) | Represents the X values of this chart series. |

english/aspose.cells.charts/series/category_values/_index.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,36 @@ is_root: false
1111
## category_values property
1212

1313

14-
Represents the actual category values that are used in the chart.
15-
corresponding to [`Series.x_values`](/cells/python-net/aspose.cells.charts/series#x_values)
16-
When Series.XValues is a link, you can use this attribute to get specific data.
14+
Gets the actual category values that are used to plot every point
15+
of this series in the chart.
16+
17+
### Remarks
18+
19+
20+
This property provides one convenient way to get the actual values corresponding
21+
to the data defined by [`Series.x_values`](/cells/python-net/aspose.cells.charts/series#x_values),
22+
especially when the specified data source is external link, formula, ...etc.
23+
24+
### Example
25+
1726

1827
```python
1928
from aspose.cells import Workbook
2029

21-
workbook = Workbook("YourFilePathName")
30+
# Standalone example
31+
workbook = Workbook("ExternalSourceChart.xlsx")
2232
worksheet = workbook.worksheets[0]
2333
chart = worksheet.charts[0]
2434
chart.calculate()
25-
# XValues could be like "[External.xlsx]Sheet1!$B$2:$C$6",
2635
XValues = chart.n_series[0].x_values
27-
# But when you can't get category values from "[External.xlsx]Sheet1!$B$2:$C$6",
28-
# For example, "External.xlsx" does not exist, then you can use CategoryValues,
29-
# It will return the category values actually displayed in the Excel interface in the form of a two-dimensional array.
36+
# XValues may be like "[External.xlsx]Sheet1!$B$2:$C$6" which is complicated
37+
# for user to get the actual values(the values may be linked to another workbook,
38+
# or cached in current workbook). Here you can use CategoryValues property
39+
# to get the category values actually displayed in the Excel interface
40+
# in the form of a two-dimensional array.
3041
v1 = chart.n_series[0].category_values
3142

3243
```
33-
34-
### Remarks
35-
36-
37-
For user's convenience, this property provides the actual values corresponding
38-
to the data defined by [`Series.x_values`](/cells/python-net/aspose.cells.charts/series#x_values).
3944
### Definition:
4045
```python
4146
@property

english/aspose.cells.charts/series/point_values/_index.md

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,35 @@ is_root: false
1111
## point_values property
1212

1313

14-
Represents the actual values that are used to plot every point in the chart.
15-
corresponding to [`Series.values`](/cells/python-net/aspose.cells.charts/series#values)
16-
When Series.Values is a link, you can use this attribute to get specific data.
14+
Gets the actual values that are used to plot every point
15+
of this series in the chart.
16+
17+
### Remarks
18+
19+
20+
This property provides one convenient way to get the actual values corresponding
21+
to the data defined by [`Series.values`](/cells/python-net/aspose.cells.charts/series#values),
22+
especially when the specified data source is external link, formula, ...etc.
23+
24+
### Example
25+
1726

1827
```python
1928
from aspose.cells import Workbook
2029

21-
workbook = Workbook("YourFilePathName")
30+
workbook = Workbook("ExternalSourceChart.xlsx")
2231
worksheet = workbook.worksheets[0]
2332
chart = worksheet.charts[0]
2433
chart.calculate()
25-
# Values could be like "[External.xlsx]Sheet1!$A$1:$A$6",
2634
Values = chart.n_series[0].values
27-
# But when you can't get point values from "[External.xlsx]Sheet1!$A$1:$A$6",
28-
# For example, "External.xlsx" does not exist, then you can use PointValues,
29-
# It will return the values actually displayed in the Excel interface in the form of an array.
35+
# Values could be like "[External.xlsx]Sheet1!$A$1:$A$6" which is complicated
36+
# for user to get the actual values(the values may be linked to another workbook,
37+
# or cached in current workbook). Here you can use PointValues property
38+
# to get the values actually displayed in the Excel interface
39+
# in the form of an array.
3040
v1 = chart.n_series[0].point_values
3141

3242
```
33-
34-
### Remarks
35-
36-
37-
For user's convenience, this property provides the actual values corresponding
38-
to the data defined by [`Series.values`](/cells/python-net/aspose.cells.charts/series#values).
3943
### Definition:
4044
```python
4145
@property

english/aspose.cells.charts/seriescollection/_index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ The SeriesCollection type exposes the following members:
2525
| [capacity](/cells/python-net/aspose.cells.charts/seriescollection/capacity) | Gets or sets the number of elements that the array list can contain. |
2626

2727

28+
29+
Gets the [`Series`](/cells/python-net/aspose.cells.charts/series) element at the specified index.
30+
### Indexer
31+
| Name | Description |
32+
| :- | :- |
33+
| [index] | The zero based index of the element. |
34+
35+
2836
### Methods
2937
| Method | Description |
3038
| :- | :- |

english/aspose.cells.charts/sparklinecollection/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The SparklineCollection type exposes the following members:
3333
| [`last_index_of(self, item, index)`](/cells/python-net/aspose.cells.charts/sparklinecollection/last_index_of/#aspose.cells.charts.sparkline-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
3434
| [`last_index_of(self, item, index, count)`](/cells/python-net/aspose.cells.charts/sparklinecollection/last_index_of/#aspose.cells.charts.sparkline-int-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
3535
| [`add(self, data_range, row, column)`](/cells/python-net/aspose.cells.charts/sparklinecollection/add/#system.string-int-int) | Add a sparkline. |
36+
| [`remove_sparkline(self, o)`](/cells/python-net/aspose.cells.charts/sparklinecollection/remove_sparkline/#aspose.cells.charts.sparkline) | Removes the sparkline |
3637
| [`binary_search(self, item)`](/cells/python-net/aspose.cells.charts/sparklinecollection/binary_search/#aspose.cells.charts.sparkline) | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
3738

3839

english/aspose.cells.charts/sparklinecollection/capacity/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: capacity property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 80
6+
weight: 90
77
url: /aspose.cells.charts/sparklinecollection/capacity/
88
is_root: false
99
---

english/aspose.cells.drawing.texts/textoptions/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The TextOptions type exposes the following members:
2727
| [charset](/cells/python-net/aspose.cells.drawing.texts/textoptions/charset) | Represent the character set. |
2828
| [is_italic](/cells/python-net/aspose.cells.drawing.texts/textoptions/is_italic) | Gets or sets a value indicating whether the font is italic. |
2929
| [is_bold](/cells/python-net/aspose.cells.drawing.texts/textoptions/is_bold) | Gets or sets a value indicating whether the font is bold. |
30-
| [caps_type](/cells/python-net/aspose.cells.drawing.texts/textoptions/caps_type) | Gets and sets the text caps type. |
30+
| [caps_type](/cells/python-net/aspose.cells.drawing.texts/textoptions/caps_type) | Gets and sets the caps type for texts of the shape. |
3131
| [strike_type](/cells/python-net/aspose.cells.drawing.texts/textoptions/strike_type) | Gets the strike type of the text. |
3232
| [is_strikeout](/cells/python-net/aspose.cells.drawing.texts/textoptions/is_strikeout) | Gets or sets a value indicating whether the font is single strikeout. |
3333
| [script_offset](/cells/python-net/aspose.cells.drawing.texts/textoptions/script_offset) | Gets and sets the script offset,in unit of percentage |
@@ -56,6 +56,7 @@ The TextOptions type exposes the following members:
5656
### Methods
5757
| Method | Description |
5858
| :- | :- |
59+
| [`set_name(self, name, type)`](/cells/python-net/aspose.cells.drawing.texts/textoptions/set_name/#system.string-aspose.cells.fontschemetype) | Sets name and scheme of the font. |
5960
| [`equals(self, font)`](/cells/python-net/aspose.cells.drawing.texts/textoptions/equals/#aspose.cells.font) | Checks if two fonts are equals. |
6061

6162

english/aspose.cells.drawing.texts/textoptions/argb_color/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: argb_color property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 40
6+
weight: 50
77
url: /aspose.cells.drawing.texts/textoptions/argb_color/
88
is_root: false
99
---

english/aspose.cells.drawing.texts/textoptions/caps_type/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ title: caps_type property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 50
6+
weight: 60
77
url: /aspose.cells.drawing.texts/textoptions/caps_type/
88
is_root: false
99
---
1010

1111
## caps_type property
1212

1313

14-
Gets and sets the text caps type.
14+
Gets and sets the caps type for texts of the shape.
1515
### Definition:
1616
```python
1717
@property

english/aspose.cells.drawing.texts/textoptions/charset/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: charset property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 60
6+
weight: 70
77
url: /aspose.cells.drawing.texts/textoptions/charset/
88
is_root: false
99
---

0 commit comments

Comments
 (0)