Page 1 of 1

Markstip, character between label and value

Posted: Thu Oct 14, 2004 10:06 am
by 8126856
Is it possible to change the character between the label and value text in the Markstip Textbox? I want to have a multiline TextBox.

Posted: Thu Oct 14, 2004 2:59 pm
by Pep
Hi,

yes, you can use the MarksTipToll_GetText event to change the text .

Code: Select all

Private Sub MarksTip1_GetText(ByVal sender As Steema.TeeChart.Tools.MarksTip, ByVal e As Steema.TeeChart.Tools.MarksTipGetTextEventArgs) Handles MarksTip1.GetText
        e.Text = "text" + Environment.NewLine + "text"
End Sub