# Header and Footer

Add a title and footer to the ComponentOne ASP.NET MVC FlexRadar. Learn more about adding header and footer to a FlexRadar chart in MVC documentation.

## Content



You can add a title to the FlexRadar control by setting its [Header](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.Header.html) property. Besides a title, you may also set a footer for the chart by setting the [Footer](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.Footer.html) property. You can also style the header and footer text with the help of [HeaderStyle](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.HeaderStyle.html) and [FooterStyle](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.FooterStyle.html) properties.

The image below shows how the FlexRadar appears, after these properties have been set.

![Displaying header and footer in FlexRadar](https://cdn.mescius.io/document-site-files/images/2b3ac322-100e-4637-958d-fb40dcda3f44/images/flexradarheader.png)

```razor
.Header("Sales Data").HeaderStyle(hs => hs.Halign("left")).FooterStyle(fs => fs.Halign("right")).Footer("*Random Data by ComponentOne")
```