About KnobGauge

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
weichangmei
Newbie
Newbie
Posts: 12
Joined: Thu Jun 06, 2013 12:00 am

About KnobGauge

Post by weichangmei » Sat Nov 23, 2013 9:20 am

KnobGauge.png
KnobGauge.png (22.01 KiB) Viewed 7735 times
This picture is the screen shot at runtime, how to show all edit page ?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: About KnobGauge

Post by Narcís » Mon Nov 25, 2013 10:03 am

Hello,

Adding TeeEditPro to your uses list solves the problem:

Code: Select all

uses TeeEditPro;

procedure TForm1.Button1Click(Sender: TObject);
begin
  ChartEditor1.Execute;
end;
TeeEditPro unit registers all series classes.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

weichangmei
Newbie
Newbie
Posts: 12
Joined: Thu Jun 06, 2013 12:00 am

Re: About KnobGauge

Post by weichangmei » Tue Nov 26, 2013 9:20 am

++++++ 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 :
KnobGauge.jpg
KnobGauge.jpg (324.34 KiB) Viewed 7706 times

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: About KnobGauge

Post by Narcís » Tue Nov 26, 2013 10:07 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

weichangmei
Newbie
Newbie
Posts: 12
Joined: Thu Jun 06, 2013 12:00 am

Re: About KnobGauge

Post by weichangmei » Tue Nov 26, 2013 10:54 am

TeeChart Pro v2013.08.130521 32bit VCL
Delphi 2007

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: About KnobGauge

Post by Narcís » Tue Nov 26, 2013 11:01 am

Hello,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

weichangmei
Newbie
Newbie
Posts: 12
Joined: Thu Jun 06, 2013 12:00 am

Re: About KnobGauge

Post by weichangmei » Tue Nov 26, 2013 11:53 am

As you said, it work well now.

thks.

Post Reply