Class Title

Title class

Encapsulates the object that represents the title of chart or axis.

public class Title : ChartTextFrame

Properties

NameDescription
virtual Area { get; }Gets the area.(Inherited from ChartFrame.)
virtual AutoScaleFont { get; set; }True if the text in the object changes font size when the object size changes. The default value is True.(Inherited from ChartFrame.)
Background { get; set; }(Obsolete.) Gets and sets the display mode of the background(Inherited from ChartFrame.)
BackgroundMode { get; set; }Gets and sets the display mode of the background(Inherited from ChartFrame.)
virtual Border { get; }Gets the border.(Inherited from ChartFrame.)
DefaultHeight { get; }Represents height of default position(Inherited from ChartFrame.)
DefaultWidth { get; }Represents width of default position(Inherited from ChartFrame.)
DefaultX { get; }Represents x of default position(Inherited from ChartFrame.)
DefaultY { get; }Represents y of default position(Inherited from ChartFrame.)
virtual DirectionType { get; set; }Gets and sets the direction of text.(Inherited from ChartTextFrame.)
virtual Font { get; }Gets a Font object of the specified ChartFrame object.(Inherited from ChartFrame.)
virtual Height { get; set; }Gets or sets the height of frame in units of 1/4000 of the chart area.(Inherited from ChartFrame.)
IsAutomaticRotation { get; }Indicates whether the text of the chart is automatically rotated.(Inherited from ChartTextFrame.)
virtual IsAutomaticSize { get; set; }Indicates whether the chart frame is automatic sized.(Inherited from ChartFrame.)
virtual IsAutoText { get; set; }Indicates the text is auto generated.(Inherited from ChartTextFrame.)
IsDefaultPosBeSet { get; }Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set.(Inherited from ChartFrame.)
IsDeleted { get; set; }Indicates whether this data labels is deleted.(Inherited from ChartTextFrame.)
IsInnerMode { get; set; }Indicates whether the size of the plot area size includes the tick marks, and the axis labels. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels.(Inherited from ChartFrame.)
IsResizeShapeToFitText { get; set; }Gets or sets whether a shape should be auto-fit to fully contain the text described within it. Auto-fitting is when text within a shape is scaled in order to contain all the text inside.(Inherited from ChartTextFrame.)
virtual IsTextWrapped { get; set; }Gets or sets a value indicating whether the text is wrapped.(Inherited from ChartTextFrame.)
IsVisible { get; set; }Represents whether the title is visible.
virtual LinkedSource { get; set; }Gets and sets a reference to the worksheet.(Inherited from ChartTextFrame.)
OverLay { get; set; }Represents overlay centered title on chart without resizing chart.
ReadingOrder { get; set; }Represents text reading order.(Inherited from ChartTextFrame.)
RotationAngle { get; set; }Represents text rotation angle.(Inherited from ChartTextFrame.)
Shadow { get; set; }True if the frame has a shadow.(Inherited from ChartFrame.)
ShapeProperties { get; }Gets the ShapeProperties object.(Inherited from ChartFrame.)
override Text { get; set; }Gets or sets the text of display unit label.
TextDirection { get; set; }(Obsolete.) Represents text reading order.(Inherited from ChartTextFrame.)
virtual TextFont { get; }(Obsolete.) Gets a Font object of the specified ChartFrame object.(Inherited from ChartFrame.)
TextHorizontalAlignment { get; set; }Gets and sets the text horizontal alignment.(Inherited from ChartTextFrame.)
virtual TextOptions { get; }Gets and sets the options of the text.(Inherited from ChartFrame.)
TextVerticalAlignment { get; set; }Gets or sets the text vertical alignment of text.(Inherited from ChartTextFrame.)
virtual Width { get; set; }Gets or sets the width of frame in units of 1/4000 of the chart area.(Inherited from ChartFrame.)
override X { get; set; }Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
override Y { get; set; }Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.

Methods

NameDescription
Characters()Gets rich text formatting of this Title.
Characters(int, int)Returns a Characters object that represents a range of characters within the text.(Inherited from ChartTextFrame.)
virtual SetPositionAuto()Set position of the frame to automatic(Inherited from ChartFrame.)

Examples


[C#]

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

Cells cells = sheet.Cells;
cells[0,1].PutValue("Income");
cells[1,0].PutValue("Company A");
cells[2,0].PutValue("Company B");
cells[3,0].PutValue("Company 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];

//Setting the title of a chart
chart.Title.Text = "Title";
//Setting the font color of the chart title to blue
chart.Title.Font.Color = Color.Blue;
//Setting the title of category axis of the chart
chart.CategoryAxis.Title.Text = "Category";
//Setting the title of value axis of the chart
chart.ValueAxis.Title.Text = "Value";

[Visual Basic]

Dim workbook as Workbook = new Workbook()
Dim sheet as Worksheet = workbook.Worksheets(0)

Dim cells as Cells = sheet.Cells
cells(0,1).PutValue("Income")
cells(1,0).PutValue("Company A")
cells(2,0).PutValue("Company B")
cells(3,0).PutValue("Company 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)

'Setting the title of a chart
chart.Title.Text = "Title"
'Setting the font color of the chart title to blue
chart.Title.Font.Color = Color.Blue
'Setting the title of category axis of the chart
chart.CategoryAxis.Title.Text = "Category"
'Setting the title of value axis of the chart
chart.ValueAxis.Title.Text = "Value"

See Also