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 1809

Summary: ScrollPager tool renders Bar/HorizBar series erroneously
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED WORKSFORME    
Severity: enhancement CC: yeray
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=4&t=16459
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description christopher ireland 2017-03-03 05:00:34 EST
Created attachment 730 [details]
screenshot

Code to reproduce:

        public Form1()
        {
            InitializeComponent();
            InitializeChart();
            AddPagerTool();
        }

        ScrollPager tool;
        Steema.TeeChart.Styles.Bar series;

        private void InitializeChart()
        {
            tChart1.Header.Text = "Scroll Pager Tool";
            tChart1.Series.Add(series = new Steema.TeeChart.Styles.Bar());
            series.FillSampleValues(8);
            series.Legend.Visible = false;
        }

        private void AddPagerTool()
        {
            tChart1.Tools.Add(tool = new ScrollPager());
            tool.Series = series;

            tool.SubChartTChart.Panel.Pen.Visible = false;
            tool.SubChartTChart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
            tool.SubChartTChart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
        }

screenshot attached.
Comment 1 christopher ireland 2017-03-03 05:01:15 EST
This bug is not reproducible in the source code Git HEAD.
Comment 2 yeray alonso 2017-03-13 10:04:14 EDT
To clarify. From the two issues reported in the forums the one that can't be reproduced with the current sources is "the bars in the bottom are doubled".

I'm opening another ticket regarding the other issue "the bars in the top chart overlap" reported in the same thread.
http://bugs.teechart.net/show_bug.cgi?id=1817