Page 1 of 1

Point Series appear behind axes

Posted: Tue Mar 30, 2004 3:52 pm
by 9079970
How can you get the plots for the point series to be displayed on top of the axes?

They are always clipped by the axes unless you set the gradient of the series to radial - but I don't always want them to have a gradient.

Also, how do you set the end colour for the gradient? I can only see how to set the start and middle colours

Posted: Tue Mar 30, 2004 9:54 pm
by Pep
Hi Simon,
How can you get the plots for the point series to be displayed on top of the axes?
Using the ClipPoints property as in the example below.
Also, how do you set the end colour for the gradient? I can only see how to set the start and middle colours
You should be able to set it as in the following example :

Code: Select all

Private Sub Form_Load()
With TChart1
    .AddSeries scPoint
    .Series(0).FillSampleValues (5)
    .ClipPoints = False
    .Series(0).asPoint.Pointer.Gradient.StartColor = vbBlue
    .Series(0).asPoint.Pointer.Gradient.MidColor = vbYellow
    .Series(0).asPoint.Pointer.Gradient.EndColor = vbRed
    .Series(0).asPoint.Pointer.Gradient.Visible = True
End With
End Sub