Skip to content

Commit c05c42c

Browse files
committed
python net 24.4
1 parent c2c91c4 commit c05c42c

File tree

513 files changed

+1668
-674
lines changed

Some content is hidden

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

513 files changed

+1668
-674
lines changed

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

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -32,34 +32,5 @@ The Sparkline type exposes the following members:
3232

3333

3434

35-
### Example
36-
37-
38-
```python
39-
from aspose.cells import CellArea, Workbook
40-
from aspose.cells.charts import SparklineType
41-
from aspose.cells.rendering import ImageOrPrintOptions
42-
43-
book = Workbook()
44-
sheet = book.worksheets[0]
45-
sheet.cells.get("A1").put_value(5)
46-
sheet.cells.get("B1").put_value(2)
47-
sheet.cells.get("C1").put_value(1)
48-
sheet.cells.get("D1").put_value(3)
49-
# Define the CellArea
50-
ca = CellArea()
51-
ca.start_column = 4
52-
ca.end_column = 4
53-
ca.start_row = 0
54-
ca.end_row = 0
55-
idx = sheet.sparkline_group_collection.add(SparklineType.LINE, sheet.name + "!A1:D1", False, ca)
56-
group = sheet.sparkline_group_collection[idx]
57-
idx = group.sparkline_collection.add(sheet.name + "!A1:D1", 0, 4)
58-
line = group.sparkline_collection[idx]
59-
print("Saprkline data range: " + line.data_range + ", row: " + str(line.row) + ", column: " + str(line.column))
60-
line.to_image("output.png", ImageOrPrintOptions())
61-
62-
```
63-
6435
### See Also
6536
* module [`aspose.cells.charts`](..)

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

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -37,32 +37,6 @@ The SparklineCollection type exposes the following members:
3737

3838

3939

40-
### Example
41-
42-
43-
```python
44-
from aspose.cells import CellArea, SaveFormat, Workbook
45-
from aspose.cells.charts import SparklineType
46-
47-
book = Workbook()
48-
sheet = book.worksheets[0]
49-
sheet.cells.get("A1").put_value(5)
50-
sheet.cells.get("B1").put_value(2)
51-
sheet.cells.get("C1").put_value(1)
52-
sheet.cells.get("D1").put_value(3)
53-
# Define the CellArea
54-
ca = CellArea()
55-
ca.start_column = 4
56-
ca.end_column = 4
57-
ca.start_row = 0
58-
ca.end_row = 0
59-
idx = sheet.sparkline_group_collection.add(SparklineType.LINE, sheet.name + "!A1:D1", False, ca)
60-
group = sheet.sparkline_group_collection[idx]
61-
group.sparkline_collection.add(sheet.name + "!A1:D1", 0, 4)
62-
book.save("output.xlsx", SaveFormat.XLSX)
63-
64-
```
65-
6640
### See Also
6741
* module [`aspose.cells.charts`](..)
6842
* class [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline)

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

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -57,44 +57,6 @@ The SparklineGroup type exposes the following members:
5757

5858

5959

60-
### Example
61-
62-
63-
```python
64-
from aspose.cells import CellArea, SaveFormat, Workbook
65-
from aspose.cells.charts import SparklineType
66-
from aspose.pydrawing import Color
67-
68-
book = Workbook()
69-
sheet = book.worksheets[0]
70-
sheet.cells.get("A1").put_value(5)
71-
sheet.cells.get("B1").put_value(2)
72-
sheet.cells.get("C1").put_value(1)
73-
sheet.cells.get("D1").put_value(3)
74-
# Define the CellArea
75-
ca = CellArea()
76-
ca.start_column = 4
77-
ca.end_column = 4
78-
ca.start_row = 0
79-
ca.end_row = 0
80-
idx = sheet.sparkline_group_collection.add(SparklineType.LINE, "A1:D1", False, ca)
81-
group = sheet.sparkline_group_collection[idx]
82-
group.sparkline_collection.add(sheet.name + "!A1:D1", 0, 4)
83-
# Create CellsColor
84-
clr = book.create_cells_color()
85-
clr.color = Color.orange
86-
group.series_color = clr
87-
# set the high points are colored green and the low points are colored red
88-
group.show_high_point = True
89-
group.show_low_point = True
90-
group.high_point_color.color = Color.green
91-
group.low_point_color.color = Color.red
92-
# set line weight
93-
group.line_weight = 1.0
94-
book.save("output.xlsx", SaveFormat.XLSX)
95-
96-
```
97-
9860
### See Also
9961
* module [`aspose.cells.charts`](..)
10062
* class [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline)

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

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -39,32 +39,6 @@ The SparklineGroupCollection type exposes the following members:
3939

4040

4141

42-
### Example
43-
44-
45-
```python
46-
from aspose.cells import CellArea, SaveFormat, Workbook
47-
from aspose.cells.charts import SparklineType
48-
49-
book = Workbook()
50-
sheet = book.worksheets[0]
51-
sheet.cells.get("A1").put_value(5)
52-
sheet.cells.get("B1").put_value(2)
53-
sheet.cells.get("C1").put_value(1)
54-
sheet.cells.get("D1").put_value(3)
55-
# Define the CellArea
56-
ca = CellArea()
57-
ca.start_column = 4
58-
ca.end_column = 4
59-
ca.start_row = 0
60-
ca.end_row = 0
61-
idx = sheet.sparkline_group_collection.add(SparklineType.LINE, "A1:D1", False, ca)
62-
group = sheet.sparkline_group_collection[idx]
63-
group.sparkline_collection.add(sheet.name + "!A1:D1", 0, 4)
64-
book.save("output.xlsx", SaveFormat.XLSX)
65-
66-
```
67-
6842
### See Also
6943
* module [`aspose.cells.charts`](..)
7044
* class [`SparklineGroup`](/cells/python-net/aspose.cells.charts/sparklinegroup)

english/aspose.cells.pivot/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ The **Aspose.Cells.Pivot** namespace contains all classes of rendering and mani
3434
| [`PivotTableCollection`](/cells/python-net/aspose.cells.pivot/pivottablecollection) | Represents the collection of all the PivotTable objects on the specified worksheet. |
3535
| [`PivotTableFormat`](/cells/python-net/aspose.cells.pivot/pivottableformat) | Represents the format defined in the PivotTable. |
3636
| [`PivotTableFormatCollection`](/cells/python-net/aspose.cells.pivot/pivottableformatcollection) | Represents the collection of formats applied to PivotTable. |
37+
| [`PivotTableRefreshOption`](/cells/python-net/aspose.cells.pivot/pivottablerefreshoption) | Represents the options of refreshing data source of the pivot table. |
3738
| [`SxRng`](/cells/python-net/aspose.cells.pivot/sxrng) | |
3839

3940

@@ -54,5 +55,6 @@ The **Aspose.Cells.Pivot** namespace contains all classes of rendering and mani
5455
| [`PivotTableAutoFormatType`](/cells/python-net/aspose.cells.pivot/pivottableautoformattype) | Represents PivotTable auto format type. |
5556
| [`PivotTableSelectionType`](/cells/python-net/aspose.cells.pivot/pivottableselectiontype) | Specifies what can be selected in a PivotTable during a structured selection.<br/>These constants can be combined to select multiple types. |
5657
| [`PivotTableStyleType`](/cells/python-net/aspose.cells.pivot/pivottablestyletype) | Represents the pivot table style type. |
58+
| [`ReserveMissingPivotItemType`](/cells/python-net/aspose.cells.pivot/reservemissingpivotitemtype) | Represents how to keep the missing pivot items. |
5759

5860

english/aspose.cells.pivot/pivotareatype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PivotAreaType enumeration
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 230
6+
weight: 240
77
url: /aspose.cells.pivot/pivotareatype/
88
is_root: false
99
---

english/aspose.cells.pivot/pivotconditionformatruletype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PivotConditionFormatRuleType enumeration
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 240
6+
weight: 250
77
url: /aspose.cells.pivot/pivotconditionformatruletype/
88
is_root: false
99
---

english/aspose.cells.pivot/pivotconditionformatscopetype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PivotConditionFormatScopeType enumeration
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 250
6+
weight: 260
77
url: /aspose.cells.pivot/pivotconditionformatscopetype/
88
is_root: false
99
---

english/aspose.cells.pivot/pivotfielddatadisplayformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PivotFieldDataDisplayFormat enumeration
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 260
6+
weight: 270
77
url: /aspose.cells.pivot/pivotfielddatadisplayformat/
88
is_root: false
99
---

english/aspose.cells.pivot/pivotfieldgrouptype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PivotFieldGroupType enumeration
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 270
6+
weight: 280
77
url: /aspose.cells.pivot/pivotfieldgrouptype/
88
is_root: false
99
---

0 commit comments

Comments
 (0)