1) I have a problem for creating Series Band in my program. I have two simple LineSeries and I would like to create a Series Band between them with the following code :
Code: Select all
procedure TForm1.Button3Click(Sender: TObject);
var test : TSeriesBandTool;
begin
test := TSeriesBandTool.Create(Chart1); // Needs 'TeeSeriesBandTool.dcu'
test.Series := Chart1.Series[0];
test.Series2 := Chart1.Series[1];
test.Brush.Color := clWhite;
test.DrawBehindSeries := true;
test.ShowInEditor := true;
test.Visible := true;
test.Repaint;
ShowMessage(test.Description); // Just to check
end;
No Series Band is visible in the editor :
I don't understand why I can't see this Series Band although the ShowMessage tell me that it has been created ?
In addition,adding a Series Band at run-time works fine :
2) Second problem, maybe linked to the first above, is that although I suscribed a "TeeChart Pro V7 VCL/CLX Licence", I miss some features like PDF / SVG export :
some types of series are missing too (High/low - Gauge...) :
Full config available in my signature