# Header and Footer

Develop powerful and lightweight web applications using ASP.NET MVC controls. Learn more about the ComponentOne MVC controls in ASP.NET MVC documentation.

## Content



You can provide a heading or title to the Sunburst chart with the help of [Header](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.Header.html) property. Moreover, you may also set a footer for your Sunburst chart with the help of [Footer](/componentone/api/mvc/online-mvc/dotnet-framework-api/C1.Web.Mvc/C1.Web.Mvc.FlexChartBase-1.Footer.html) property. These properties also allows you to style your 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 Sunburst chart appears, after you set the Header and Footer properties.

![](https://cdn.mescius.io/document-site-files/images/2b3ac322-100e-4637-958d-fb40dcda3f44/images/sunburstheaderfooter.png)

The following code example demonstrates how to set Header and Footer properties. This example uses the sample created in the [Quick Start](/componentone/docs/mvc/online-mvc/workwithcontrols/SunburstChart/SunburstQuickStart) topic.

```razor
.Header("Sales Data")
.HeaderStyle(style => style.FontSize("30"))
.Footer("*Random data by ComponentOne")
.FooterStyle(style => style.FontSize("15"))
```