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 1197

Summary: InflateMargins for the Top axis when TBubbleSeries has HorizAxis=aBothHorizAxis
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: 150120   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot showing the problem

Comment 1 yeray alonso 2015-04-20 04:24:34 EDT
Created attachment 433 [details]
screenshot showing the problem

InflateMargins doesn't work fine for the Top axis when a TBubbleSeries has HorizAxis=aBothHorizAxis:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart.View3D:=false;
  with Chart.AddSeries(TBubbleSeries) as TBubbleSeries do
  begin
    HorizAxis:=aBothHorizAxis;
    FillSampleValues(5);
  end;
end;