Floor classe

Floor classe

Incapsula l’oggetto che rappresenta il fondo di un grafico 3D.

Eredità: FloorArea

Il tipo Floor espone i seguenti membri:

Proprietà

ProprietàDescrizione
background_colorOttiene o imposta il colore di sfondo di Area.
foreground_colorOttiene o imposta il colore di primo piano.
formattingRappresenta la formattazione dell’area.
invert_if_negativeSe la proprietà è vera e il valore del punto del grafico è un numero negativo,
il colore di primo piano e il colore di sfondo verranno scambiati.
fill_formatRappresenta un oggetto Area.fill_format che contiene le proprietà di formattazione del riempimento per il grafico o la forma specificata.
transparencyRestituisce o imposta il grado di trasparenza dell’area come un valore compreso tra 0,0 (opaco) e 1,0 (chiaro).
borderOttiene o imposta il bordo Line.

Esempio

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")

Guarda anche