Page 1 of 1

About KnobGauge

Posted: Sat Nov 23, 2013 9:20 am
by 16566198
KnobGauge.png
KnobGauge.png (22.01 KiB) Viewed 7737 times
This picture is the screen shot at runtime, how to show all edit page ?

Re: About KnobGauge

Posted: Mon Nov 25, 2013 10:03 am
by narcis
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.

Re: About KnobGauge

Posted: Tue Nov 26, 2013 9:20 am
by 16566198
++++++ 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 7708 times

Re: About KnobGauge

Posted: Tue Nov 26, 2013 10:07 am
by narcis
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.

Re: About KnobGauge

Posted: Tue Nov 26, 2013 10:54 am
by 16566198
TeeChart Pro v2013.08.130521 32bit VCL
Delphi 2007

Re: About KnobGauge

Posted: Tue Nov 26, 2013 11:01 am
by narcis
Hello,

Please try with TeeChart Pro v2013.09.131119. Does this solve the problem for you?

Thanks in advance.

Re: About KnobGauge

Posted: Tue Nov 26, 2013 11:53 am
by 16566198
As you said, it work well now.

thks.