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 1548 - The Area series values aren’t updated if property smoothed is enabled.
Summary: The Area series values aren’t updated if property smoothed is enabled.
Status: RESOLVED NOTABUG
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://teechart.net/directline/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-05-26 04:57 EDT by sandra pazos
Modified: 2016-07-07 05:09 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-05-26 04:57:40 EDT
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();
        }