Page 1 of 1

Making a 3d bar chart

Posted: Fri Dec 10, 2004 8:27 pm
by 9524925
Hello,
I make 3D bars chart with several series and few points in each serie.
How can I make each bar thicker so they occupy more space?
Right now they appear very thin.
Either at design, the editor or vb code?

Also how I put the stack setting at runtime?

Yours

Carlos Goldberg

Posted: Sun Dec 12, 2004 8:10 pm
by 9524558
Hi Carlos

You could use the DepthPercent and BarwithPercent properties of a 3D bar series. For example:

With TChart1

.Series(i).asBar.DepthPercent = 40
.Series(i).asBar.BarWidthPercent = 40

End with ' With TChart1

See example in the V7 demo under "New in Series" (Bar 3D Depth)

regards

Andras