Skip to content

Commit cb996f0

Browse files
authored
Merge pull request #31 from aspose-cells/main
25.10
2 parents 3c25077 + f988c1b commit cb996f0

File tree

172 files changed

+471
-140
lines changed

Some content is hidden

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

172 files changed

+471
-140
lines changed

english/aspose.cells.charts/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The **Aspose.Cells.Charts** namespace provides classes that allow to access and
4141
| [`SeriesLayoutProperties`](/cells/python-net/aspose.cells.charts/serieslayoutproperties) | Represents the properties of series layout. |
4242
| [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) | A sparkline represents a tiny chart or graphic in a worksheet cell that provides a visual representation of data. |
4343
| [`SparklineCollection`](/cells/python-net/aspose.cells.charts/sparklinecollection) | Encapsulates a collection of [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) objects. |
44-
| [`SparklineGroup`](/cells/python-net/aspose.cells.charts/sparklinegroup) | [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) is organized into sparkline group. A SparklineGroup contains a variable number of sparkline items. <br/>A sparkline group specifies the type, display settings and axis settings for the sparklines. |
44+
| [`SparklineGroup`](/cells/python-net/aspose.cells.charts/sparklinegroup) | [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) is organized into sparkline group. A SparklineGroup contains a variable number of sparkline items.<br/>A sparkline group specifies the type, display settings and axis settings for the sparklines. |
4545
| [`SparklineGroupCollection`](/cells/python-net/aspose.cells.charts/sparklinegroupcollection) | Encapsulates a collection of [`SparklineGroup`](/cells/python-net/aspose.cells.charts/sparklinegroup) objects. |
4646
| [`TickLabelItem`](/cells/python-net/aspose.cells.charts/ticklabelitem) | Represents a tick label in the chart. |
4747
| [`TickLabels`](/cells/python-net/aspose.cells.charts/ticklabels) | Represents the tick-mark labels associated with tick marks on a chart axis. |

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ The Series type exposes the following members:
2929
| [count_of_data_values](/cells/python-net/aspose.cells.charts/series/count_of_data_values) | Gets the number of the data values. |
3030
| [is_vertical_values](/cells/python-net/aspose.cells.charts/series/is_vertical_values) | Indicates whether the data source is vertical. |
3131
| [values](/cells/python-net/aspose.cells.charts/series/values) | Represents the Y values of this chart series. |
32+
| [cached_values](/cells/python-net/aspose.cells.charts/series/cached_values) | Gets the cached values for the series |
33+
| [cached_category_values](/cells/python-net/aspose.cells.charts/series/cached_category_values) | Gets the cached category values for the series |
3234
| [values_format_code](/cells/python-net/aspose.cells.charts/series/values_format_code) | Represents format code of Values's NumberList. |
3335
| [x_values_format_code](/cells/python-net/aspose.cells.charts/series/x_values_format_code) | Represents format code of X Values's NumberList. |
3436
| [x_values](/cells/python-net/aspose.cells.charts/series/x_values) | Represents the x values of the chart series. |
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: cached_category_values property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 90
7+
url: /aspose.cells.charts/series/cached_category_values/
8+
is_root: false
9+
---
10+
11+
## cached_category_values property
12+
13+
14+
Gets the cached category values for the series
15+
16+
### Remarks
17+
18+
19+
NOTE: This property is currently for internal use only. It will be changed or removed in next version.
20+
### Definition:
21+
```python
22+
@property
23+
def cached_category_values(self):
24+
...
25+
```
26+
27+
### See Also
28+
* module [`aspose.cells.charts`](../../)
29+
* class [`Series`](/cells/python-net/aspose.cells.charts/series)
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: cached_values property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 100
7+
url: /aspose.cells.charts/series/cached_values/
8+
is_root: false
9+
---
10+
11+
## cached_values property
12+
13+
14+
Gets the cached values for the series
15+
16+
### Remarks
17+
18+
19+
NOTE: This property is currently for internal use only. It will be changed or removed in next version.
20+
### Definition:
21+
```python
22+
@property
23+
def cached_values(self):
24+
...
25+
```
26+
27+
### See Also
28+
* module [`aspose.cells.charts`](../../)
29+
* class [`Series`](/cells/python-net/aspose.cells.charts/series)

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

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

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)