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 201 - [TV52015105] When you create a TBollingerFunction, an internal TFastLineSeries (IO...
Summary: [TV52015105] When you create a TBollingerFunction, an internal TFastLineSerie...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Other Components (show other bugs)
Version: unspecified
Hardware: All All
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-08-24 12:02 EDT by yeray alonso
Modified: 2013-11-20 10:03 EST (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 yeray alonso 2013-11-20 10:03:16 EST
When you create a TBollingerFunction, an internal TFastLineSeries (IOther) is created because the Bollinger consists in two lines, one above and one below the source. So we have the series linked to the function and the internal IOther series, but only the first is visible from the Editor.
There is a customer who would like to view and edit the IOther series through the editor.
uses StatChar, Series;
procedure TForm1.FormCreate(Sender: TObject);
var Series1: TFastLineSeries;
    Series2: TFastLineSeries;
    TeeFunction1: TBollingerFunction;
begin
  Chart1.View3D:=false;
  Series1:=Chart1.AddSeries(TFastLineSeries) as TFastLineSeries;
  Series1.Pen.Width:=2;
  Series1.FillSampleValues(100);
  Series2:=Chart1.AddSeries(TFastLineSeries) as TFastLineSeries;
  TeeFunction1:=TBollingerFunction.Create(self);
  Series2.FunctionType:=TeeFunction1;
  Series2.DataSource:=Series1;
end;
http://www.teechart.net/support/viewtopic.php?f=1&t=11479&p=48803#p48803 [created:2010-08-24T11:02:48.000+01:00 reported by:yeray@steema.com reported in version:9.0 (TeeChart VCL)]