Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Legend Class / Footer Property
Example


In This Topic
    Footer Property
    In This Topic
    The footer of the legend.
    Syntax
    'Declaration
     
    <CategoryAttribute("Content")>
    <DescriptionAttribute("The footer of the legend")>
    Public Property Footer As LegendText
    'Usage
     
    Dim instance As Legend
    Dim value As LegendText
     
    instance.Footer = value
     
    value = instance.Footer
    [Category("Content")]
    [Description("The footer of the legend")]
    public LegendText Footer {get; set;}
    Remarks
    Returns a reference to a LegendText object representing the legend footer. The footer is not displayed if the Text property of the LegendText object is empty.
    Example
    The following example changes the text of the legend header.
    Dim legend As Legend = CType((NChartControl.Legends(0)), Legend)
    legend.Header.Text = "Some legend header"
    Legend legend = (Legend)(NChartControl.Legends[0]);
    legend.Header.Text = "Some legend header";
    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