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 1672

Summary: ScrollPager tool not rendering correctly in WPF
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: WPFAssignee: christopher ireland <chris>
Status: RESOLVED FIXED    
Severity: enhancement CC: yeray
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://stackoverflow.com/q/40286463/509369
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2016-11-02 07:42:59 EDT
Code to reproduce:

    ScrollPager _scrollPager;

    public MainWindow()
    {
      InitializeComponent();

      Line series = new Line();
      series.FillSampleValues(1000);

      Chart1.Series.Add(series);

      _scrollPager = new ScrollPager(Chart1.Chart);
      _scrollPager.Series = Chart1[0];
    }