Page 1 of 1

Question about TeeChart Pro AX v7

Posted: Tue Aug 17, 2004 12:53 pm
by 32639
Could someone confirm that the new release of TeeChart Pro AX v7 provides transparent colors for the Map Series? I need this feature and will will upgrade as soon as I know that it is contained in the new version.

Thanks,
Bob

Posted: Tue Aug 17, 2004 3:08 pm
by Chris
Hi Bob,
Could someone confirm that the new release of TeeChart Pro AX v7 provides transparent colors for the Map Series? I need this feature and will will upgrade as soon as I know that it is contained in the new version.
In AXv7 you can do:

Code: Select all

Private Sub Form_Load()
With TChart1
    .AddSeries scMap
    .Series(0).FillSampleValues 10
    .Series(0).asMap.Shapes.Polygon(0).Transparency = 80
End With
End Sub
So the answer is yes :D

Posted: Tue Aug 17, 2004 3:51 pm
by 32639
Chris,
That's great news! I'll place an order for the upgrade this week.
Thanks :D
Bob