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 - The Beizer series doesn't calculate correctly the interpolate points when the chart is in 3D.
Summary: The Beizer series doesn't calculate correctly the interpolate points when the...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-06-23 10:46 EDT by sandra pazos
Modified: 2016-06-23 10:46 EDT (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 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;