MouseMove event over a zoomed TChart

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Pep
Site Admin
Site Admin
Posts: 3273
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Tue Dec 07, 2004 10:56 am

Hi,

the following code works fine here using the latest v7.02 :

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(5);
Series1.Title := 'Title';
end;

procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
  Y: Integer);
var tmpPart: TChartClickedPart;
begin
  if CheckBox1.Checked then
  begin
    Chart1.CalcClickedPart(Point(X,Y),tmpPart);
    if (tmpPart.Part = cpSeries) then
        if Assigned(tmpPart.ASeries) then
            ShowMessage(tmpPart.ASeries.Title);
  end;
end;

mLapido
Newbie
Newbie
Posts: 24
Joined: Wed Mar 24, 2004 5:00 am
Location: Brasil
Contact:

Post by mLapido » Tue Dec 07, 2004 12:51 pm

And where do we get this new version 7.02? I wento to the customer (client access) area and I couldn't find it there.

regards,
Milton Lapido

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

Post by Narcís » Thu Dec 09, 2004 9:15 am

Hi Milton,

v7.02 is not available yet for all customers. It is in beta phase and available for Pro Support customers. In short the definitive installers will be published in our customer download area for all customers.
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

mLapido
Newbie
Newbie
Posts: 24
Joined: Wed Mar 24, 2004 5:00 am
Location: Brasil
Contact:

Post by mLapido » Thu Dec 09, 2004 12:19 pm

Well, I had access to the beta version of v7.01, and would like to also have access to this new beta.

Any way, do you have any idea of when the v7.02 will be released?

One other thing, I reported a few bugs in v7.01 beta. I notice the v7.01 was finally released, but it's not clear to me if the reported bugs were fixed or not. There is one in particular that is my major concern, because it makes it impossible for me to use this version. The bug is that if you assign a value to the explode property of a pie chart series it would result in a explosion of all the slices that follows the one to which a value was assinged to.

Regards
Milton Lapido

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

Post by Narcís » Thu Dec 09, 2004 5:38 pm

Hi Milton,

I have just sent you an e-mail with downloading instructions for v7.02.

Regarding the pie slices bug it has been solved in the 7.02 version.
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

Post Reply