I am creating a windows forms chart at runtime, which works fine. However, I have been asked to insert the chart into a rich text box at runtime.
I have looked at the API of the RichTextBox but cannot see any way to do this. Does anyone have any thoughts on whether this is possible? If so, how do you do it?
I have tried the following (VB.NET):
RichTextBox.Controls.Add(Chart)
RichTextBox.Refresh
But it doesn't appear.