- KnobGauge.png (22.01 KiB) Viewed 7785 times
About KnobGauge
-
- Newbie
- Posts: 12
- Joined: Thu Jun 06, 2013 12:00 am
About KnobGauge
This picture is the screen shot at runtime, how to show all edit page ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About KnobGauge
Hello,
Adding TeeEditPro to your uses list solves the problem:
TeeEditPro unit registers all series classes.
Adding TeeEditPro to your uses list solves the problem:
Code: Select all
uses TeeEditPro;
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartEditor1.Execute;
end;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 12
- Joined: Thu Jun 06, 2013 12:00 am
Re: About KnobGauge
++++++ My code begin +++++++
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TeeGDIPlus, StdCtrls, ExtCtrls, TeeProcs, TeEngine, Chart, TeeEdit,
TeeEditPro, TeeWorldSeries;
type
TForm1 = class(TForm)
ChartEditor1: TChartEditor;
Chart1: TChart;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartEditor1.Execute;
end;
end.
-------- My code end ---------
I want to know how to show the editor at runtime as design time.
Screen shots :
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, TeeGDIPlus, StdCtrls, ExtCtrls, TeeProcs, TeEngine, Chart, TeeEdit,
TeeEditPro, TeeWorldSeries;
type
TForm1 = class(TForm)
ChartEditor1: TChartEditor;
Chart1: TChart;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartEditor1.Execute;
end;
end.
-------- My code end ---------
I want to know how to show the editor at runtime as design time.
Screen shots :
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About KnobGauge
Hello,
This works fine for me here using latest TeeChart version, published last week. Which Delphi and TeeChart versions are you using?
Thanks in advance.
This works fine for me here using latest TeeChart version, published last week. Which Delphi and TeeChart versions are you using?
Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 12
- Joined: Thu Jun 06, 2013 12:00 am
Re: About KnobGauge
TeeChart Pro v2013.08.130521 32bit VCL
Delphi 2007
Delphi 2007
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: About KnobGauge
Hello,
Please try with TeeChart Pro v2013.09.131119. Does this solve the problem for you?
Thanks in advance.
Please try with TeeChart Pro v2013.09.131119. Does this solve the problem for you?
Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 12
- Joined: Thu Jun 06, 2013 12:00 am
Re: About KnobGauge
As you said, it work well now.
thks.
thks.