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 507 - SeriesBandTool ignoring Stairs property
Summary: SeriesBandTool ignoring Stairs property
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: TeeChart for .NET 4.1.2013.11080
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-09 07:11 EST by christopher ireland
Modified: 2013-12-09 07:11 EST (History)
0 users

See Also:
Chart Series: ---
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 christopher ireland 2013-12-09 07:11:43 EST
The following code enables the reproduction of the issue:

    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;

      Line series1 = new Line(tChart1.Chart);
      Line series2 = new Line(tChart1.Chart);

      series1.FillSampleValues();
      series2.FillSampleValues();

      series1.Stairs = true;
      series2.Stairs = true;

      SeriesBandTool tool1 = new SeriesBandTool(tChart1.Chart);
      tool1.Series = series1;
      tool1.Series2 = series2;
    }

As can be seen, the SeriesBandTool does not follow the stairs of the Line series. The expected behaviour is that it should.