a bug ?

TeeChart for ActiveX, COM and ASP
Post Reply
koby
Newbie
Newbie
Posts: 9
Joined: Wed May 09, 2007 12:00 am

a bug ?

Post by koby » Wed Jun 27, 2007 2:26 pm

hi,
i am using the color line tool and while i'm draging it i don't receive the events that related to this tool ( TChart2_OnColorLineToolBeginDragLine / OnColorLineToolDragLine / OnColorLineToolEndDragLine).

it happens when the Axis property of the ColorLine tool is set to Right Axis

IDE : vb6
tchart ver : 7.0.1.4

is it a bug?
how can i get over it ?

thanks.

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

Post by Narcís » Wed Jun 27, 2007 2:36 pm

Hi koby,

It works fine for me here using our internal TeeChart Pro v7 ActiveX version. I've sent you the .ocx file, could you please try unregistering current one, register new one and check if the problem persists?

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

koby
Newbie
Newbie
Posts: 9
Joined: Wed May 09, 2007 12:00 am

Post by koby » Wed Jun 27, 2007 3:47 pm

Hi Narcís,

I registered the ocx file that you sent me and it still happens.

how can i upload an example code ?

Koby

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 Jun 28, 2007 8:59 am

Hi Koby,

You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.

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

koby
Newbie
Newbie
Posts: 9
Joined: Wed May 09, 2007 12:00 am

upload..

Post by koby » Thu Jun 28, 2007 9:31 am

Hi Narcís,
i uploaded a file (using the upload page)

i hope it will be helpfull..

thanks,
Koby

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 Jun 28, 2007 2:41 pm

Hi Koby,

Thanks for the example.

This is because the right axis must be visible:

Code: Select all

Private Sub Form_Load()
    TChart1.Series(0).FillSampleValues 20
    TChart1.Series(0).VerticalAxis = aBothVertAxis
    TChart1.Axis.Right.Visible = False
End Sub
In case you don't want the right axis visible you can hide it using the last lien in the code snippet above.
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

koby
Newbie
Newbie
Posts: 9
Joined: Wed May 09, 2007 12:00 am

Thank you !

Post by koby » Sun Jul 01, 2007 8:57 am

it works !

Post Reply