![]() | 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 with Bar chart, the bars in the top chart overlap | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Tools | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | chris |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| URL: | http://www.teechart.net/support/viewtopic.php?f=4&t=16459 | ||
| Chart Series: | Bar | Delphi / C++ Builder RAD IDE Version: | |
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 showing the overlapping in the bars on the top: http://bugs.teechart.net/attachment.cgi?id=730