Markstip, character between label and value

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Capsugel
Newbie
Newbie
Posts: 1
Joined: Fri Sep 03, 2004 4:00 am

Markstip, character between label and value

Post by Capsugel » Thu Oct 14, 2004 10:06 am

Is it possible to change the character between the label and value text in the Markstip Textbox? I want to have a multiline TextBox.

Pep
Site Admin
Site Admin
Posts: 3273
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Thu Oct 14, 2004 2:59 pm

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

Post Reply