FP2006 0 Report post Posted March 20, 2013 Has anyone figured out how to insert a line break or make chart titles multiline? We have tried "/n", "\n", "/r/n", \r\n" and none worked. Hoping there is a workaround. Thanks in advance for your help! Quote Share this post Link to post Share on other sites
ExequielA 1 Report post Posted May 8, 2013 Hi, You can insert a newline (\n) character to wrap long text in the title. Take a look at the following sample: TitleDockable t = new TitleDockable (); t.Text = "This title is very very long for the chart control \n This is a bar chart control" ; chart1.Titles.Add(t); I hope it helps. Quote Share this post Link to post Share on other sites