Chartlistbox-Items overlap
Posted: Wed Apr 06, 2005 8:55 am
Hello
I have a problem with the ChartListBox. When more items are in there and MultiColumn is true, more items are on the same position. To reproduce, make a new VB.Net project, add TChart and a ChartListBox, that is not to big(f.e. width:300 and height:76) and add the following code to Form_Load:
Then you see, that some of the texts are written over each other. When you try to change selection, the box shows a very odd behavior.
Any idea?
Greetings
Elric
I have a problem with the ChartListBox. When more items are in there and MultiColumn is true, more items are on the same position. To reproduce, make a new VB.Net project, add TChart and a ChartListBox, that is not to big(f.e. width:300 and height:76) and add the following code to Form_Load:
Code: Select all
ChartListBox1.Chart = Me.TChart1
ChartListBox1.MultiColumn = True
Dim s1 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim s2 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim s3 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim s4 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim s5 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
s1.Title = "aaaaaaaaaaa"
s2.Title = "bbbbbbbbbbb"
Any idea?
Greetings
Elric