How to get all labels?
Posted: Fri Jul 04, 2008 1:53 am
Hi,
When I add two series,
The bottom axis labels : A C E G I K
If exchanges two lines of orders
The bottom axis labels : B D F H J
How to get all labels(A B C D ... K) ?
Thanks!
When I add two series,
Code: Select all
Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim series2 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
series.Add(1, 1, "A")
series.Add(3, 3, "C")
series.Add(5, 5, "E")
series.Add(7, 7, "G")
series.Add(9, 9, "I")
series.Add(11, 11, "K")
series2.Add(2, 1, "B")
series2.Add(4, 2, "D")
series2.Add(6, 3, "F")
series2.Add(8, 4, "H")
series2.Add(10, 5, "J")
If exchanges two lines of orders
Code: Select all
Dim series2 As New Steema.TeeChart.Styles.Line(TChart1.Chart)
Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart)
How to get all labels(A B C D ... K) ?
Thanks!