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 1567

Summary: The Beizer series doesn't calculate correctly the interpolate points when the chart is in 3D.
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2016-06-23 10:46:44 EDT
The Beize series doesn't calculate correctly the interpolate points when the chart is in 3D. 

The code below shows the problem: 

uses TeeBezie, Series, BubbleCh;
var Series1:TBubbleSeries;
Series2:TBezierSeries;
procedure TForm1.FormCreate(Sender: TObject);
var i:Integer;
Const
    arrayvalue : array[1..9]of double = (3426,3385,3100,2798,2486,1270,2121,1723,885);
begin
Chart1.View3D := false;
//Bubble Series
Series1 := TBubbleSeries.Create(Self);
Chart1.AddSeries(Series1);
Series1.Pointer.Style := psCircle;
for i := 1 to 9 do
begin
      Series1.AddBubble(i,arrayvalue[i],150,'');
end;
 //Bezier Series
Series2 := TBezierSeries.Create(Self);
Chart1.AddSeries(Series2);

Series2.DataSource := Series1;
Series2.BezierStyle := bsWindows;
Series2.Pointer.Visible := False;
Series2.RefreshSeries;