You can use "\n" literal to separate the text into multiple lines. For example:
chart.TitleBottom.Text = "line text 1 \n line text 2";
You can try and this:
Me.AllChart1.TitleTop.Text = String.Format("line text 1{0}line text 2",
System.Environment.NewLine)