I am trying to display a graph of percentages in an inverted fashion. What I mean by that is that if I want to display 80%, I need to start the bar at 100% and go down 20 points to show 80%.
Please help!
Inverted Bar Graph
Hi,
this can be done using :
this can be done using :
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scBar
.Series(0).AddXY 0, 50, "", clTeeColor
.Series(0).AddXY 1, 80, "", clTeeColor
.Series(0).AddXY 2, 60, "", clTeeColor
.Series(0).asBar.Origin = 100
End With
End Sub
Pep Jorge
http://support.steema.com
http://support.steema.com
Thanks a bunch
Thank you very much, works great!