home *** CD-ROM | disk | FTP | other *** search
- unit BarJoin_Series;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Base, StdCtrls, TeCanvas, TeEngine, Series, MyPoint, ExtCtrls,
- TeeProcs, Chart, TeePenDlg;
-
- type
- TBarJoinForm = class(TBaseForm)
- Series1: TBarJoinSeries;
- ButtonPen1: TButtonPen;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- BarJoinForm: TBarJoinForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TBarJoinForm.FormCreate(Sender: TObject);
- begin
- inherited;
- Series1.FillSampleValues(3);
- ButtonPen1.LinkPen(Series1.JoinPen);
- end;
-
- initialization
- RegisterClass(TBarJoinForm);
- end.
-