![]() | Steema Issues DatabaseNote: 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. |
| Summary: | ScrollPager tool renders Bar/HorizBar series erroneously | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Tools | Assignee: | 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 | ||
This bug is not reproducible in the source code Git HEAD. 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 |
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.