Circular Gauge Hand Gradient Property Question
Posted: Tue Jan 22, 2008 8:22 pm
I am trying to turn off the hand gradient and set the color solid using code. Seems like there are several properties I cannot get to work.
Is there something I am missing?
Thanks
Code: Select all
Private Sub Form_Load()
With TChart.Series(0).asCircularGauge
.RotateLabels = False
.Center.HorizontalSize = 10
.Center.VerticalSize = 10
.EndPoint.Visible = False
'these are not working
.Hand.Gradient.Visible = False
.Hand.Brush.Color = vbGreen
.Hand.Brush.BackColor = vbGreen
End With
End Sub
Thanks