Area الدرجة
Area الدرجة
لتغليف الكائن الذي يمثل تنسيق منطقة.
يكشف نوع Area الأعضاء التالية:
ملكيات
ملكية | وصف |
---|---|
background_color | الحصول على او تحديد لون خلفية Area. |
foreground_color | الحصول على او تحديد لون المقدمة. |
formatting | يمثل تنسيق المنطقة. |
invert_if_negative | إذا كانت الخاصية صحيحة وكانت قيمة نقطة المخطط رقمًا سالبًا ، سيتم استبدال لون المقدمة ولون الخلفية. |
fill_format | يمثل عنصر Area.fill_format يحتوي على خصائص تنسيق التعبئة للشكل أو الرسم البياني المحدد. |
transparency | إرجاع أو تعيين درجة شفافية المنطقة كقيمة من 0.0 (معتم) إلى 1.0 (واضح). |
مثال
from aspose.cells import Workbook
from aspose.cells.charts import ChartType
from aspose.pydrawing import Color
# Instantiating a Workbook object
workbook = Workbook()
# Adding a new worksheet to the Workbook object
sheetIndex = workbook.worksheets.add()
# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.worksheets[sheetIndex]
# Adding a sample value to "A1" cell
worksheet.cells.get("A1").put_value(50)
# Adding a sample value to "A2" cell
worksheet.cells.get("A2").put_value(100)
# Adding a sample value to "A3" cell
worksheet.cells.get("A3").put_value(150)
# Adding a sample value to "B1" cell
worksheet.cells.get("B1").put_value(60)
# Adding a sample value to "B2" cell
worksheet.cells.get("B2").put_value(32)
# Adding a sample value to "B3" cell
worksheet.cells.get("B3").put_value(50)
# Adding a chart to the worksheet
chartIndex = worksheet.charts.add(ChartType.COLUMN, 5, 0, 15, 5)
# Accessing the instance of the newly added chart
chart = worksheet.charts[chartIndex]
# Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
chart.n_series.add("A1:B3", True)
# Setting the foreground color of the plot area
chart.plot_area.area.foreground_color = Color.blue
# Setting the foreground color of the chart area
chart.chart_area.area.foreground_color = Color.yellow
# Setting the foreground color of the 1st NSeries area
chart.n_series[0].area.foreground_color = Color.red
# Setting the foreground color of the area of the 1st NSeries point
chart.n_series[0].points[0].area.foreground_color = Color.cyan
# Saving the Excel file
workbook.save("book1.xls")
أنظر أيضا
- وحدة aspose.cells.drawing
- فئة Area