Align

Declaration: ChartBook.Charts[].TAlign: TAlign;
The Align property determines how the chart aligns within its container (or parent control). The property Align may take the following values (by default the alignment is set to alClient):

alNone The component remains where you place it in the form.
alTop The component moves to the top of the form and is resized to cover the width of the form. The height of the component is not affected.
alBottom The component moves to the bottom of the form and is resized to cover the width of the form. The height of the component is not affected.
alLeft The component moves to the left side of the form and is resized to cover the height of the form. The width of the component is not affected.
alRight The component moves to the right side of the form and is resized to cover the height of the form. The width of the component is not affected.
alClient The component is resized to cover the client area of a form. If a component already occupies part of the client area, the component resizes to fit within the remaining client area.