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 - ScrollPager tool not rendering correctly in WPF
Summary: ScrollPager tool not rendering correctly in WPF
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: WPF (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: christopher ireland
URL: http://stackoverflow.com/q/40286463/5...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-02 07:42 EDT by christopher ireland
Modified: 2016-11-30 10:34 EST (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 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];
    }