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
Point Series appear behind axes
Hi Simon,
Using the ClipPoints property as in the example below.How can you get the plots for the point series to be displayed on top of the axes?
You should be able to set it as in the following example :Also, how do you set the end colour for the gradient? I can only see how to set the start and middle colours
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
Pep Jorge
http://support.steema.com
http://support.steema.com