Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Axis Class / Title Property
Example


In This Topic
    Title Property
    In This Topic
    Controls the displayed axis title.
    Syntax
    'Declaration
     
    <CategoryAttribute("Texts")>
    <DescriptionAttribute("Controls the displayed axis title")>
    <DefaultValueAttribute("")>
    Public Property Title As String
    'Usage
     
    Dim instance As Axis
    Dim value As String
     
    instance.Title = value
     
    value = instance.Title
    [Category("Texts")]
    [Description("Controls the displayed axis title")]
    [DefaultValue("")]
    public string Title {get; set;}
    Remarks
    The title is displayed parallel to the axis orientation.
    Example
    The following code assigns a title to the PrimaryX axis.
    Chart.Axis(StandardAxis.PrimaryX).Title = "Axis Title"
    Chart.Axis(StandardAxis.PrimaryX).Title = "Axis Title";
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also