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 - ScrollPager tool renders Bar/HorizBar series erroneously
Summary: ScrollPager tool renders Bar/HorizBar series erroneously
Status: RESOLVED WORKSFORME
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-03 05:00 EST by christopher ireland
Modified: 2017-03-13 10:04 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
screenshot (24.53 KB, image/png)
2017-03-03 05:00 EST, christopher ireland
Details

Note You need to log in before you can comment on or make changes to this bug.
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