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 1475 - Clicked function doesn't work fine for Area series when in stairs mode
Summary: Clicked function doesn't work fine for Area series when in stairs mode
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-03-22 05:16 EDT by yeray alonso
Modified: 2016-03-23 06:50 EDT (History)
2 users (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2016-03-22 05:16:16 EDT
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;