How to add label text below the series in OLAPChart
Refer to the following code example to add label below the series in OLAP Chart.
C#
protected void Page_PreRender(object sender, EventArgs e)
{
this.OlapChart1.PrimaryXAxis.Title = "Fiscal Year";
}
VB
Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As EventArgs) Me.OlapChart1.PrimaryXAxis.Title = "Fiscal Year" End Sub