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 1281

Summary: ScrollPager not updating series data changes
Product: .NET TeeChart Reporter: narcís calvet <narcis>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: TeeChart.NET 2014 4.1.2014.12154   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=4&t=15711&sid=48f62d99f73280e96c203da01900c02a
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description narcís calvet 2015-08-26 07:27:09 EDT
When data modifications are being made on a series associated to a ScrollPager tool, it's not reflected on the chart ScrollPager creates. 

A workaround is removing that series and assigning it again:

      scrollPager1.SubChartTChart.Series.Clear();
      tChart1[0].Delete(0, 100);
      scrollPager1.Series = tChart1[0];