You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3268 8e941d3f-bd1b-0410-a28a-d453659cc2b4
68 lines
1.5 KiB
ObjectPascal
68 lines
1.5 KiB
ObjectPascal
unit mainform;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls, EditBtn, ExtCtrls, fpspreadsheetchart, fpspreadsheetgrid,
|
|
TAGraph, TASeries;
|
|
|
|
type
|
|
|
|
{ TFPSChartForm }
|
|
|
|
TFPSChartForm = class(TForm)
|
|
btnCreateGraphic: TButton;
|
|
btnLoadSpreadsheet: TButton;
|
|
editSourceFile: TFileNameEdit;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
editXAxis: TLabeledEdit;
|
|
EditYAxis: TLabeledEdit;
|
|
MyChart: TChart;
|
|
FPSChartSource: TsWorksheetChartSource;
|
|
MyChartLineSeries: TLineSeries;
|
|
WorksheetGrid: TsWorksheetGrid;
|
|
procedure btnCreateGraphicClick(Sender: TObject);
|
|
procedure btnLoadSpreadsheetClick(Sender: TObject);
|
|
procedure FormCreate(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
FPSChartForm: TFPSChartForm;
|
|
|
|
implementation
|
|
|
|
uses
|
|
// FPSpreadsheet and supported formats
|
|
fpspreadsheet, xlsbiff8, xlsbiff5, xlsbiff2, xlsxooxml, fpsopendocument;
|
|
|
|
{$R *.lfm}
|
|
|
|
{ TFPSChartForm }
|
|
|
|
procedure TFPSChartForm.btnCreateGraphicClick(Sender: TObject);
|
|
begin
|
|
FPSChartSource.LoadPropertiesFromStrings(editXAxis.Text, editYAxis.Text, '', '', '');
|
|
FPSChartSource.LoadFromWorksheetGrid(WorksheetGrid);
|
|
end;
|
|
|
|
procedure TFPSChartForm.btnLoadSpreadsheetClick(Sender: TObject);
|
|
begin
|
|
WorksheetGrid.LoadFromSpreadsheetFile(editSourceFile.Text);
|
|
end;
|
|
|
|
procedure TFPSChartForm.FormCreate(Sender: TObject);
|
|
begin
|
|
editSourceFile.InitialDir := ExtractFilePath(ParamStr(0));
|
|
end;
|
|
|
|
end.
|
|
|