Index

From: Christopher Ireland
Subject: Re: Transparency on area series not working after upgrade to V6 if chart Exported as Native
Date: Wed, 2 Jun 2004 11:42:54 +0200
Newsgroup: steema.public.teechart6.activex  

Hi Patrick,

>First, the Stairs property bug is not solved yet.
>Second, while the Export to a PNG image is still working like a charm, the
export to a Native ActiveX does not display the Series to which transparency
has been applied.

The following VB6.0 code works as expected here with TeeChart AX v6.0.0.5:

Dim FStream

Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scArea
.Series(0).FillSampleValues 20
.Series(0).asArea.Transparency = 90
.Series(0).asArea.Stairs = True

FStream = .Export.asNative.SaveToStream(True)
End With

With TChart2
.Import.LoadFromStream FStream
End With
End Sub

Does this code work at your end?

--
Best Regards,

Christopher Ireland
http://support.steema.com

"Important note: If you are a TeeChart registered customer, please post your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."