Hi
I have just started to look at smith chart and I'm having difficulties finding good examples and help.
Do you have an example application (I have had a look at the one sample shipped with the Teechart Installation, but it only fills in sample values and I need more infomration about how to add values. Should it be in real and imaginary parts or something else?)
Also in the teechart editor I can go to series and Circled and there I can turn off 3d. How do i do that in code?
Thanks in advance
Lars Iversen
p.s. By the way when I work on the axes in the teeeditor they get turned invisible everytime I click any of the tabsheets. e.g. if I'm at "Scale" I check the visible checkbox and change to the "Ticks" tab and then the axes turn invisivble and I need to go back to "Scales" and turn it on again. I guess thats a bug. My version is: 2.0.2306.26232
smith chart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lars,
Some info about Smith series extracted from TeeChart VCL's help:
function AddPoint(Const Resist, React: Double; Const ALabel: String; AColor: TColor): Integer;
Description
Add new point Z=Resist +i*React (in complex plane) to Smith series.
Use AddPoint method to add new complex impedance values to the Series. The new point is represented with a resistance and a reactance value. The AXLabel parameter is optional (can be empty ''). The AColor parameter is optional (can be clTeeColor). The function returns the new point position in the Values list.
You can use any of its Add method overrides that use those parameters.
Some info about Smith series extracted from TeeChart VCL's help:
function AddPoint(Const Resist, React: Double; Const ALabel: String; AColor: TColor): Integer;
Description
Add new point Z=Resist +i*React (in complex plane) to Smith series.
Use AddPoint method to add new complex impedance values to the Series. The new point is represented with a resistance and a reactance value. The AXLabel parameter is optional (can be empty ''). The AColor parameter is optional (can be clTeeColor). The function returns the new point position in the Values list.
You can use any of its Add method overrides that use those parameters.
You can use this code:Also in the teechart editor I can go to series and Circled and there I can turn off 3d. How do i do that in code?
Code: Select all
smith1.Circled = true;
tChart1.Aspect.View3D = false;
I'm not able to reproduce it here. Please notice that we posted a new maintenance release to the client area last week. Could you please check if it works fine at your end?p.s. By the way when I work on the axes in the teeeditor they get turned invisible everytime I click any of the tabsheets. e.g. if I'm at "Scale" I check the visible checkbox and change to the "Ticks" tab and then the axes turn invisivble and I need to go back to "Scales" and turn it on again. I guess thats a bug. My version is: 2.0.2306.26232
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 |