Changing the Bottom axis label while dragging a point
Posted: Fri Jul 15, 2005 1:45 pm
Hi,
I am drawing the spline curve by using the following example.
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scLine
.Series(0).FillSampleValues (10)
.AddSeries scLine
.Series(1).SetFunction tfSmoothing
.Series(1).DataSource = "Series0"
.Series(0).asLine.LinePen.Visible = False
.Series(0).ShowInLegend = False
.Series(0).asLine.Pointer.Visible = True
.Series(0).asLine.Pointer.Style = psStar
End With
End Sub
While adding the points to the Series0, i am specifying the label also in the AddXY function.
When ever dragging a point in the Series0, my label is not changing correspondingly. I do not know how to set the changed X value to the bottom axis label.
Could you please suggest a method or provide a example code.
Thanks & Regards,
Rama
I am drawing the spline curve by using the following example.
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scLine
.Series(0).FillSampleValues (10)
.AddSeries scLine
.Series(1).SetFunction tfSmoothing
.Series(1).DataSource = "Series0"
.Series(0).asLine.LinePen.Visible = False
.Series(0).ShowInLegend = False
.Series(0).asLine.Pointer.Visible = True
.Series(0).asLine.Pointer.Style = psStar
End With
End Sub
While adding the points to the Series0, i am specifying the label also in the AddXY function.
When ever dragging a point in the Series0, my label is not changing correspondingly. I do not know how to set the changed X value to the bottom axis label.
Could you please suggest a method or provide a example code.
Thanks & Regards,
Rama