![]() | 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: | Clicked function doesn't work fine for Area series when in stairs mode | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | chris, mdegroof |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | Area | Delphi / C++ Builder RAD IDE Version: | |
Using the code below, the MarksTip tool shows the marks as if the Stairs property wasn't set to true. tChart1.Aspect.View3D = false; MarksTip marksTip1 = new MarksTip(tChart1.Chart); Area area1 = new Area(tChart1.Chart); area1.Add(100); area1.Add(1000); area1.Add(0); area1.Add(0); area1.Add(0); Area area2 = new Area(tChart1.Chart); area2.Add(0); area2.Add(0); area2.Add(1000); area2.Add(100); area2.Add(0); area1.Stairs = true; area2.Stairs = true;