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

Summary: SeriesBandTool ignoring Stairs property
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: ToolsAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: TeeChart for .NET 4.1.2013.11080   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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.