![]() | 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: | Selector Tool is broken, when you select Series Marks | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | sandra pazos <sandra> |
| Component: | Tools | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | chris |
| Priority: | Normal | ||
| Version: | TeeChart.NET 2014 4.1.2014.02060 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
With which version of Visual Studio and TeeChart.dll was this a problem? Using VS2013 and TeeChart.dll 4.1.2014.02064 (net451) I am not able to reproduce the problem with the code given. Hello Chris, Sorry for the delay. I confirm you the bug still occurs using latest version of TeeChartFor.Net 4.1.2014.02064(net451) and Visual Studio 2013. To reproduce the problem you only need run my code and try to select the Marks of LineSeries. Thanks, Okay Sandra, I've got it now, thank you. |
The Selector Tool throws an access violation exception, when you select Series Marks. The exception is produced in the Selector tool method, DrawSeriesHandle. You can reproduce the problem using the Demo example Welcome !\Tools\Selector Tool or next simple code: public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { tChart1.Aspect.View3D = true; var Series1 = new Steema.TeeChart.Styles.Line(tChart1.Chart); Series1.FillSampleValues(); Series1.Marks.Visible = true; var tool1 = new Steema.TeeChart.Tools.Selector(tChart1.Chart); }