mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 09:32:36 +02:00
38 lines
612 B
ObjectPascal
38 lines
612 B
ObjectPascal
unit Unit1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, TAGraph,
|
|
TASeries, TASources;
|
|
|
|
type
|
|
|
|
{ TForm1 }
|
|
|
|
TForm1 = class(TForm)
|
|
Chart1: TChart;
|
|
LabelsChartSource: TListChartSource;
|
|
RedBarSeries: TBarSeries;
|
|
BlueBarSeries: TBarSeries;
|
|
YellowBarSeries: TBarSeries;
|
|
RedChartSource: TRandomChartSource;
|
|
BlueChartSource: TRandomChartSource;
|
|
YellowChartSource: TRandomChartSource;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|