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 1620

Summary: setting BarStyle.RoundRectangle does not anything
Product: .NET TeeChart Reporter: Sunil Ramesh <sunil.ramesh>
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED NOTABUG    
Severity: enhancement CC: chris
Priority: ---    
Version: TeeChart for .Net 4.1.2016.05125   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description Sunil Ramesh 2016-09-03 05:11:27 EDT
Setting BarStyle to RoundRectangle for Bar/Bar3D series does not do anything.
The BarRound and RoundSize properties do not work either.
Comment 1 christopher ireland 2016-09-27 03:54:41 EDT
Created attachment 648 [details]
screenshot

Using the following code:

private void InitializeChart()
{
	tChart1.Aspect.View3D = false;
	Bar bar = new Bar(tChart1.Chart);
	bar.FillSampleValues();
	bar.BarStyle = BarStyles.RoundRectangle;
}

gives me this image attached. Use of the BarStyle property is obligatory here.