ASE Home Page Products Download Purchase Support About ASE
ChartDirector General
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  whiskerlabel setbarshape
Posted by Peter McNamee on Oct-31-2009 07:39
BarLayer has a very nice appearance if you use setBarShape(Chart.CircleShape).

Is there any way to get a similar appearance for BoxWhiskerLayer objects?

I have a series of charts that use BarLayer and some charts that use BoxWhiskerLayer (waterfall charts and the like that are not drawn from the zero axis).

I am using .NET and C#.

  Re: whiskerlabel setbarshape
Posted by Peter Kwan on Oct-31-2009 18:31
Hi Peter,

If you are using ChartDirector Ver 5, you can use setBorderColor with cylinderEffect to create the effect you want. For example, for a vertical box-whisker chart, in VB/VBScript, it is like:

Call layer.setBorderColor(&H000000, cd.cylinderEffect(cd.Top, 0.5, 0.5, 0.75, 8))

Hope this can help.

Regards
Peter Kwan

  Re: whiskerlabel setbarshape
Posted by Peter McNamee on Nov-04-2009 03:24
Thank you, Peter!

You solve problems quickly and elegantly!

Peter