home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / Delphi / TeeChartPro / TeeChart5Delphi5Eval.exe / %MAINDIR% / Examples / Features / BarJoin_Series.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-09-10  |  730 b   |  38 lines

  1. unit BarJoin_Series;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   Base, StdCtrls, TeCanvas, TeEngine, Series, MyPoint, ExtCtrls,
  8.   TeeProcs, Chart, TeePenDlg;
  9.  
  10. type
  11.   TBarJoinForm = class(TBaseForm)
  12.     Series1: TBarJoinSeries;
  13.     ButtonPen1: TButtonPen;
  14.     procedure FormCreate(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   BarJoinForm: TBarJoinForm;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. procedure TBarJoinForm.FormCreate(Sender: TObject);
  29. begin
  30.   inherited;
  31.   Series1.FillSampleValues(3);
  32.   ButtonPen1.LinkPen(Series1.JoinPen);
  33. end;
  34.  
  35. initialization
  36.   RegisterClass(TBarJoinForm);
  37. end.
  38.