![]() | Steema Issues DatabaseNote: 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. |
| Summary: | The Area series values aren’t updated if property smoothed is enabled. | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | sandra pazos <sandra> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | normal | CC: | chris |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| URL: | http://teechart.net/directline/viewtopic.php?f=6&t=1101 | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
The Area series values aren’t updated if property smoothed is enable. The code below shows the problem: public Form1() { InitializeComponent(); InitializeChart(); } Steema.TeeChart.Styles.Area area1; private void InitializeChart() { area1 = new Steema.TeeChart.Styles.Area(tChart1.Chart); area1.FillSampleValues(); area1.Smoothed = true; } private void button1_Click(object sender, EventArgs e) { area1.Clear(); area1.FillSampleValues(); }