Problems with inverted bottom axis.
Posted: Fri Jul 11, 2008 8:08 am
When I use this:
Each point will be displayed. But when I add this:
I can't see the point of (2,6). This is Bug?
Thank you!
Code: Select all
Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart)
series.VertAxis = Steema.TeeChart.Styles.VerticalAxis.Right
series.Add(1, 5)
series.Add(2, 6)
series.Add(3, 10)
series.Add(4, 11)
series.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle
series.Pointer.Visible = True
Code: Select all
TChart1.Axes.Bottom.Inverted = True
Thank you!