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 - setting BarStyle.RoundRectangle does not anything
Summary: setting BarStyle.RoundRectangle does not anything
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
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-03 05:11 EDT by Sunil Ramesh
Modified: 2016-09-27 03:55 EDT (History)
1 user (show)

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


Attachments
screenshot (14.35 KB, image/png)
2016-09-27 03:54 EDT, christopher ireland
Details

Note You need to log in before you can comment on or make changes to this bug.
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.