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 1589 - The Chart Border is visible although that is setting to none when the Smoothing Mode is HighQuality.
Summary: The Chart Border is visible although that is setting to none when the Smoothi...
Status: RESOLVED NOTABUG
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: TeeChart for .Net 4.1.2016.05125
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-07-29 11:10 EDT by sandra pazos
Modified: 2016-08-17 10:50 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-07-29 11:10:38 EDT
The Chart Border is visible although that is setting to none when the Smoothing Mode is HighQuality. 
The code below shows the problem: 
        private void InitializeChart()
        {
            tChart1 = new Steema.TeeChart.TChart();
            this.Controls.Add(tChart1);
            tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
          //  tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.Default;
            tChart1.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
            tChart1.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
            tChart1.Export.Image.JPEG.Save("BevelChart.jpg");
}

To check the differences, I would suggest open the images with Paint.
Comment 1 christopher ireland 2016-08-17 10:50:25 EDT
Setting:

tChart1.Graphics3D.BufferStyle = BufferStyle.DoubleBuffer;

this operation is performed internally in the Chart Editors, but is left to the client for the API.