PivotConditionalFormat صف

PivotConditionalFormat صف

يمثل شرط تنسيق جدول محوري في مجموعة PivotFormatCondition.

يكشف النوع PivotConditionalFormat عن الأعضاء التاليين:

ملكيات

ملكيةوصف
pivot_areasيحصل على جميع مناطق المحور.
format_conditionsاحصل على الشروط الخاصة بتنسيق الجدول المحوري الشرطي.
scope_typeاحصل على نوع النطاق لتنسيق الجدول المحوري وقم بتعيينه.
rule_typeاحصل على نوع القاعدة لتنسيق شرط جدول المحور وقم بتعيينه.

طُرق

طريقةوصف
add_field_area(self, axis_type, field_name)إضافة منطقة حقل المحور.
add_field_area(self, axis_type, field)إضافة منطقة حقل المحور.
get_cell_areas(self)يحصل على جميع مناطق الخلايا التي ينطبق عليها هذا التنسيق الشرطي.
add_cell_area(self, ca)إضافة منطقة استنادًا إلى عرض جدول محوري.
apply_to(self, row, column, scope)يتم تطبيق التنسيق الشرطي على النطاق.
فقط لمنطقة البيانات.

مثال

from aspose.cells import FormatConditionType, OperatorType, Workbook
from aspose.cells.pivot import PivotFieldType, PivotTableStyleType
from aspose.pydrawing import Color

book = Workbook()
sheet = book.worksheets[0]
cells = sheet.cells
cells.get(0, 0).value = "fruit"
cells.get(1, 0).value = "grape"
cells.get(2, 0).value = "blueberry"
cells.get(3, 0).value = "kiwi"
cells.get(4, 0).value = "cherry"
cells.get(5, 0).value = "grape"
cells.get(6, 0).value = "blueberry"
cells.get(7, 0).value = "kiwi"
cells.get(8, 0).value = "cherry"
cells.get(0, 1).value = "year"
cells.get(1, 1).value = 2020
cells.get(2, 1).value = 2020
cells.get(3, 1).value = 2020
cells.get(4, 1).value = 2020
cells.get(5, 1).value = 2021
cells.get(6, 1).value = 2021
cells.get(7, 1).value = 2021
cells.get(8, 1).value = 2021
cells.get(0, 2).value = "amount"
cells.get(1, 2).value = 50
cells.get(2, 2).value = 60
cells.get(3, 2).value = 70
cells.get(4, 2).value = 80
cells.get(5, 2).value = 90
cells.get(6, 2).value = 100
cells.get(7, 2).value = 110
cells.get(8, 2).value = 120
pivots = sheet.pivot_tables
pivotIndex = pivots.add("=Sheet1!A1:C9", "A12", "TestPivotTable")
pivot = pivots[pivotIndex]
pivot.add_field_to_area(PivotFieldType.ROW, "fruit")
pivot.add_field_to_area(PivotFieldType.COLUMN, "year")
pivot.add_field_to_area(PivotFieldType.DATA, "amount")
pivot.pivot_table_style_type = PivotTableStyleType.PIVOT_TABLE_STYLE_MEDIUM10
# Add PivotFormatCondition
formatIndex = pivot.conditional_formats.add()
pfc = pivot.conditional_formats[formatIndex]
pfc.add_field_area(PivotFieldType.DATA, pivot.data_fields[0])
idx = pfc.format_conditions.add_condition(FormatConditionType.CELL_VALUE)
fc = pfc.format_conditions[idx]
fc.formula1 = "100"
fc.operator = OperatorType.GREATER_OR_EQUAL
fc.style.background_color = Color.red
pivot.refresh_data()
pivot.calculate_data()
# do your business
book.save("out.xlsx")

أنظر أيضا