![]() | Steema Issues DatabaseNote: 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. |
| Summary: | The Titles, Position, Custom positioning does not set the position of the title | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | Ian Schirmer <ians> |
| Component: | Editors | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | enhancement | CC: | sandra |
| Priority: | --- | ||
| Version: | 140923 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
Ian Schirmer
2014-10-23 02:55:08 EDT
This function will work sometimes, however mostly will not. Hello Ian,
The problem you are experiencing doesn't appear using the code below:
uses Series;
var Series1 :TLineSeries;
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1 := TLineSeries.Create(self);
Chart1.AddSeries(Series1);
Series1.FillSampleValues(10);
Chart1.Title.CustomPosition := true ;
Chart1.Draw;
Chart1.Title.Left := 150;
Chart1.Title.Top := 100;
end;
Could you please check if my code works as you want?
Thanks in advance,
Regrads
|