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 778

Summary: Axis Title misplaced when Series has a single point
Product: .NET TeeChart Reporter: christopher ireland <chris>
Component: AxesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2014-05-22 06:58:03 EDT
Use the following code to reproduce the issue:

    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;
      Bar bar = new Bar();
      bar.Add(1);
      tChart1.Series.Add(bar);
    }

As a workaround, the following can be used:

      tChart1.Axes.Bottom.Title.Text = Utils.NewLine + "Text";