Repository URL to install this package:
|
Version:
1.6 ▾
|
unit regplotpanel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
plotpanel,
exprplotpanel,
lresources;
Procedure Register;
implementation
{$R regplotpanel.res}
Procedure Register;
begin
Classes.RegisterComponents('Misc',[TPlotFunctionPanel, TPlotExpressionPanel]);
end;
end.