Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1641 - add support for frame transparency if donut series
Summary: add support for frame transparency if donut series
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Canvas (show other bugs)
Version: TeeChart for .Net 4.1.2016.05125
Hardware: PC Windows
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-26 10:12 EDT by sandra pazos
Modified: 2016-09-27 11:49 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2016-09-26 10:12:00 EDT
Add support for frame transparency if donut series. Hole should be transparent
Use code below to reproduce the problem: 
 
        private void InitializeChart()
        {


            tChart1.Aspect.View3D = false;
            tChart1.Dock = DockStyle.Fill;

            new Steema.TeeChart.Styles.Donut(tChart1.Chart);
            tChart1[0].FillSampleValues(4);
            (tChart1[0] as Steema.TeeChart.Styles.Donut).DonutPercent = 70;
            (tChart1[0] as Steema.TeeChart.Styles.Donut).Frame.Visible = true;
            this.BackgroundImage = Image.FromFile(@"C:\Users\Sandra\Pictures\png\Flower1.jpg");
            tChart1.Walls.Back.Gradient.Visible = false;
            tChart1.Walls.Back.Transparent = true;
            tChart1.Panel.Gradient.Visible = false;
            tChart1.BackColor = Color.Transparent;
            tChart1.Panel.Transparent = true;
}