TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Greetings,
The latest TeeChart Pro ActiveX v2013 release is available for download now from the Steema web.
TeeChart Pro ActiveX customers with valid subscription may download the version via the customer download page.
Release notes for the build may be viewed at the version info page.
The latest TeeChart Pro ActiveX v2013 release is available for download now from the Steema web.
TeeChart Pro ActiveX customers with valid subscription may download the version via the customer download page.
Release notes for the build may be viewed at the version info page.
Best Regards,
Gemma Gibert
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
Instructions - How to post in this forum
Gemma Gibert
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
Instructions - How to post in this forum
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hi,
I recently bought the activex teechart because I needed it to be transparent but I can not manage to make it so.
Does this version solves this?
Can you help me?
Thanks.
I recently bought the activex teechart because I needed it to be transparent but I can not manage to make it so.
Does this version solves this?
Can you help me?
Thanks.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hi Alberto,
Which specific chart element do you need to be transparent?
Thanks in advance.
Which specific chart element do you need to be transparent?
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 |
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hello Narcís,
I need line (and fast line) panel (and rest of the graph except axis, numbers, etc. and lines) to be transparent.
Thanks in advance.
Best Regards,
Alberto
I need line (and fast line) panel (and rest of the graph except axis, numbers, etc. and lines) to be transparent.
Thanks in advance.
Best Regards,
Alberto
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hi Alberto,
In that case you should do something as in the example Yeray posted here. It's a Delphi example but the same applies to TeeChart ActiveX. Bear in mind that TeeChart Pro ActiveX is a COM wrapper of TeeChart Pro VCL. Example sources:
In that case you should do something as in the example Yeray posted here. It's a Delphi example but the same applies to TeeChart ActiveX. Bear in mind that TeeChart Pro ActiveX is a COM wrapper of TeeChart Pro VCL. Example sources:
Code: Select all
unit UTranspChart;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, TeeProcs, TeEngine, Chart, jpeg, TeeSurfa,
TeeMapSeries, Series, ImaPoint, TeCanvas, TeeGDIPlus;
type
TForm1 = class(TForm)
Image1: TImage;
Chart1: TChart;
Series1: TFastLineSeries;
procedure FormCreate(Sender: TObject);
procedure Chart1BeforeDrawChart(Sender: TObject);
private
{ Private declarations }
Back : TBitmap;
public
{ Public declarations }
end;
var
Form1 : TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.Color:=clNone;
Chart1.Walls.Back.Visible:=False;
Series1.FillSampleValues;
end;
procedure TForm1.Chart1BeforeDrawChart(Sender: TObject);
begin
if not Assigned(Back) then
begin
Back:=TBitmap.Create;
Back.Width:=Chart1.Width;
Back.Height:=Chart1.Height;
Back.Canvas.CopyRect(Chart1.ClientRect,Canvas,Chart1.BoundsRect);
end;
if Chart1.Color=clNone then
Chart1.Canvas.Draw(0,0,Back);
end;
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hi Alberto,
In that case you should do something as in the example Yeray posted here. It's a Delphi example but the same applies to TeeChart ActiveX. Bear in mind that TeeChart Pro ActiveX is a COM wrapper of TeeChart Pro VCL. Example sources:
In that case you should do something as in the example Yeray posted here. It's a Delphi example but the same applies to TeeChart ActiveX. Bear in mind that TeeChart Pro ActiveX is a COM wrapper of TeeChart Pro VCL. Example sources:
Code: Select all
unit UTranspChart;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, TeeProcs, TeEngine, Chart, jpeg, TeeSurfa,
TeeMapSeries, Series, ImaPoint, TeCanvas, TeeGDIPlus;
type
TForm1 = class(TForm)
Image1: TImage;
Chart1: TChart;
Series1: TFastLineSeries;
procedure FormCreate(Sender: TObject);
procedure Chart1BeforeDrawChart(Sender: TObject);
private
{ Private declarations }
Back : TBitmap;
public
{ Public declarations }
end;
var
Form1 : TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.Color:=clNone;
Chart1.Walls.Back.Visible:=False;
Series1.FillSampleValues;
end;
procedure TForm1.Chart1BeforeDrawChart(Sender: TObject);
begin
if not Assigned(Back) then
begin
Back:=TBitmap.Create;
Back.Width:=Chart1.Width;
Back.Height:=Chart1.Height;
Back.Canvas.CopyRect(Chart1.ClientRect,Canvas,Chart1.BoundsRect);
end;
if Chart1.Color=clNone then
Chart1.Canvas.Draw(0,0,Back);
end;
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 |
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hi Narcís,
Thanks very much for your help.
Nevertheless, I program in VB 2010 and sorry for been so nuisance but can you tell me how to do that in this language.
I can not access to components as easy as in Delphi probably can be done.
Thanks in advance and best Regards
Alberto
Thanks very much for your help.
Nevertheless, I program in VB 2010 and sorry for been so nuisance but can you tell me how to do that in this language.
I can not access to components as easy as in Delphi probably can be done.
Thanks in advance and best Regards
Alberto
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hello Alberto,
I've been trying to translate that Delphi example to VB 2010 but I haven't achieved it.
I'm afraid we haven't found a way to make the container transparent in ActiveX.
I've been trying to translate that Delphi example to VB 2010 but I haven't achieved it.
I'm afraid we haven't found a way to make the container transparent in ActiveX.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hello Yeray,
I am a bit upset for this, as I bought the activex with the expectation to get these graphics transparent.
I would like to know if I can get the activex source so that I can change it myself.
Regards,
Alberto
I am a bit upset for this, as I bought the activex with the expectation to get these graphics transparent.
I would like to know if I can get the activex source so that I can change it myself.
Regards,
Alberto
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Hello Alberto,
After some more investigation I found the equivalent VB 2010 project of the Delphi project I pointed you at. It can be downloaded here: http://steema.com/files/public/Transpar ... XChart.zip
The key was finding the exact properties that match the VCL/ActiveX ones and also some type conversions from .NET to ActiveX. One interesting article on the subject is this: http://blogs.msdn.com/b/andreww/archive ... image.aspx
After some more investigation I found the equivalent VB 2010 project of the Delphi project I pointed you at. It can be downloaded here: http://steema.com/files/public/Transpar ... XChart.zip
The key was finding the exact properties that match the VCL/ActiveX ones and also some type conversions from .NET to ActiveX. One interesting article on the subject is this: http://blogs.msdn.com/b/andreww/archive ... image.aspx
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 |
Re: TeeChart Pro ActiveX v2013 release Build 2013.0.1.4
Dear Narcís,
Thanks so much for your answer. I will try it and let you know.
Best Regards,
Alberto
Thanks so much for your answer. I will try it and let you know.
Best Regards,
Alberto