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

Message ListMessage List     Post MessagePost Message

  Chart background transparent
Posted by Lemorlenny on Aug-22-2011 19:36
Attachments:
Hi,
how can I make the background of chart transparent or how change his color to uniform to form area color?
XP pro-VB6.

Thanks.
CDForum.png

  Re: Chart background transparent
Posted by Peter Kwan on Aug-23-2011 02:38
Hi Lemorlenny,

The VB6 framework does not support transparent background color. So you would need to set the "external background color" to the same color as your VB6 Form (in BaseChart.setRoundedFrame). For example, you may modify your existing setRoundedFrame line to:

Call c.setRoundedFrame(cd.CColor(BackColor))

Hope this can help.

Regards
Peter Kwan

  Re: Chart background transparent
Posted by Lemorlenny on Aug-23-2011 14:53
I think this solve my problem.

Many thanks.

Peter Kwan wrote:

Hi Lemorlenny,

The VB6 framework does not support transparent background color. So you would need to set the "external background color" to the same color as your VB6 Form (in BaseChart.setRoundedFrame). For example, you may modify your existing setRoundedFrame line to:

Call c.setRoundedFrame(cd.CColor(BackColor))

Hope this can help.

Regards
Peter Kwan