Floor sınıfı

Floor sınıfı

3 boyutlu bir grafiğin tabanını temsil eden nesneyi kapsüller.

Miras: FloorArea

Floor türü aşağıdaki üyeleri ortaya çıkarır:

Özellikler

MülkTanım
background_colorArea‘in arka plan rengini alır veya ayarlar.
foreground_colorÖn plan rengini alır veya ayarlar.
formattingAlanın biçimlendirmesini temsil eder.
invert_if_negativeÖzellik doğruysa ve grafik noktasının değeri negatif bir sayı ise,
ön plan rengi ve arka plan rengi değiştirilecektir.
fill_formatBelirtilen grafik veya şekil için dolgu biçimlendirme özelliklerini içeren Area.fill_format nesnesini temsil eder.
transparencyAlanın şeffaflık derecesini 0,0 (opak) ila 1,0 (şeffaf) arasında bir değer olarak döndürür veya ayarlar.
borderLine sınırını alır veya ayarlar.

Örnek

from aspose.cells import License, Workbook
from aspose.cells.charts import ChartType
from aspose.cells.drawing import GradientPresetType, GradientStyleType
from aspose.pydrawing import Color

# Instantiate the License class
license = License()
# Pass only the name of the license file embedded in the assembly
license.set_license("Aspose.Cells.lic")
# Instantiate the workbook object
workbook = Workbook()
# Get cells collection
cells = workbook.worksheets[0].cells
# Put values in cells
cells.get("A1").put_value(1)
cells.get("A2").put_value(2)
cells.get("A3").put_value(3)
# get charts colletion
charts = workbook.worksheets[0].charts
# add a new chart
index = charts.add(ChartType.COLUMN_3D_STACKED, 5, 0, 15, 5)
# get the newly added chart
chart = charts[index]
# set charts nseries
chart.n_series.add("A1:A3", True)
# Show data labels
chart.n_series[0].data_labels.show_value = True
# Get chart's floor
floor = chart.floor
# set floor's border as red
floor.border.color = Color.red
# set fill format
floor.fill_format.set_preset_color_gradient(GradientPresetType.CALM_WATER, GradientStyleType.DIAGONAL_DOWN, 2)
# save the file
workbook.save(r"dest.xls")

Ayrıca bakınız