Class Title

Class Title

Namespace: Aspose.Cells.Charts
Assembly: Aspose.Cells.dll (25.2.0)

Encapsula el objeto que representa el título de un gráfico o eje.

public class Title : ChartTextFrame

Herencia

objectChartFrameChartTextFrameTitle

Miembros heredados

ChartTextFrame.m_IsAutoText, ChartTextFrame.m_deleted, ChartTextFrame.horizontal, ChartTextFrame.vertical, ChartTextFrame.rotation, ChartTextFrame.m_CharsList, ChartTextFrame.Characters(int, int), ChartTextFrame.IsAutoText, ChartTextFrame.IsDeleted, ChartTextFrame.TextHorizontalAlignment, ChartTextFrame.TextVerticalAlignment, ChartTextFrame.RotationAngle, ChartTextFrame.IsAutomaticRotation, ChartTextFrame.Text, ChartTextFrame.LinkedSource, ChartTextFrame.ReadingOrder, ChartTextFrame.DirectionType, ChartTextFrame.IsTextWrapped, ChartTextFrame.IsResizeShapeToFitText, ChartFrame.m_IsAutoXPos, ChartFrame.m_IsAutoYPos, ChartFrame.m_IsOffsetPosBeSet, ChartFrame.m_fontIndex, ChartFrame.m_AutoScaleFont, ChartFrame.m_BackgroundMode, ChartFrame.m_isAutoSize, ChartFrame.SetPositionAuto(), ChartFrame.IsInnerMode, ChartFrame.Border, ChartFrame.Area, ChartFrame.TextOptions, ChartFrame.Font, ChartFrame.AutoScaleFont, ChartFrame.BackgroundMode, ChartFrame.IsAutomaticSize, ChartFrame.X, ChartFrame.Y, ChartFrame.Height, ChartFrame.Width, ChartFrame.Shadow, ChartFrame.ShapeProperties, ChartFrame.IsDefaultPosBeSet, ChartFrame.DefaultX, ChartFrame.DefaultY, ChartFrame.DefaultWidth, ChartFrame.DefaultHeight, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Ejemplos

Workbook workbook = new Workbook();
Worksheet sheet = workbook.Worksheets[0];

Cells cells = sheet.Cells;
cells[0,1].PutValue("Ingreso");
cells[1,0].PutValue("Empresa A");
cells[2,0].PutValue("Empresa B");
cells[3,0].PutValue("Empresa C");
cells[1,1].PutValue(10000);
cells[2,1].PutValue(20000);
cells[3,1].PutValue(30000);

int chartIndex = sheet.Charts.Add(ChartType.Column, 9, 9, 21, 15);
Chart chart = sheet.Charts[chartIndex];

//Estableciendo el título de un gráfico
chart.Title.Text = "Título";
//Estableciendo el color de fuente del título del gráfico a azul
chart.Title.Font.Color = Color.Blue;
//Estableciendo el título del eje de categorías del gráfico
chart.CategoryAxis.Title.Text = "Categoría";
//Estableciendo el título del eje de valores del gráfico
chart.ValueAxis.Title.Text = "Valor";
Dim workbook as Workbook = new Workbook()
Dim sheet as Worksheet = workbook.Worksheets(0)

Dim cells as Cells = sheet.Cells
cells(0,1).PutValue("Ingreso")
cells(1,0).PutValue("Empresa A")
cells(2,0).PutValue("Empresa B")
cells(3,0).PutValue("Empresa C")
cells(1,1).PutValue(10000)
cells(2,1).PutValue(20000)
cells(3,1).PutValue(30000)

Dim chartIndex as Integer = sheet.Charts.Add(ChartType.Column, 9, 9, 21, 15)    ///
Dim chart as Chart = sheet.Charts(chartIndex)

'Estableciendo el título de un gráfico
chart.Title.Text = "Título"
'Estableciendo el color de fuente del título del gráfico a azul
chart.Title.Font.Color = Color.Blue
'Estableciendo el título del eje de categorías del gráfico
chart.CategoryAxis.Title.Text = "Categoría"
'Estableciendo el título del eje de valores del gráfico
chart.ValueAxis.Title.Text = "Valor"

Propiedades

IsVisible

Representa si el título es visible.

public bool IsVisible { get; set; }

Valor de la propiedad

bool

OverLay

Representa un título centrado sobre el gráfico sin redimensionar el gráfico.

public bool OverLay { get; set; }

Valor de la propiedad

bool

Text

Obtiene o establece el texto de la etiqueta de unidad de visualización.

public override string Text { get; set; }

Valor de la propiedad

string

X

Obtiene o establece la coordenada x de la esquina superior izquierda en unidades de 1/4000 del área del gráfico.

public override int X { get; set; }

Valor de la propiedad

int

Y

Obtiene o establece la coordenada y de la esquina superior izquierda en unidades de 1/4000 del área del gráfico.

public override int Y { get; set; }

Valor de la propiedad

int

Métodos

Characters()

Obtiene el formato de texto enriquecido de este Título.

public FontSetting[] Characters()

Retorna

FontSetting[]

devuelve un array de FontSetting

 Español