COMO PUEDO SABER EL VALOR DEL AXIS DERECHO

TeeChart for ActiveX, COM and ASP
Post Reply
JOMEGO
Newbie
Newbie
Posts: 14
Joined: Fri Oct 26, 2007 12:00 am

COMO PUEDO SABER EL VALOR DEL AXIS DERECHO

Post by JOMEGO » Sat Mar 01, 2008 8:07 pm

Como puedo saber el valor del axis derecho, en la posicion que esta el mouse... quisiera poder pasar esos datos a una variable.. para saber continuamente el valor del axis derecho donde esta posicionado el mouse.

Muchas gracias por adelantado.

Jordi

JOMEGO
Newbie
Newbie
Posts: 14
Joined: Fri Oct 26, 2007 12:00 am

Ya lo solucione

Post by JOMEGO » Sun Mar 02, 2008 8:04 am

Ya lo solucione utilizando CALCPOSPOINT(Y) , igualmente muchas gracias por vuestra ayuda pq sino esto seria una catastrofe.


Otra pregunta.. ¿como puedo poner la herramienta fibonnaci en un grafico candestick.. pq por mucho que lo intento no dibuja las lineas...?


Gracias por todo

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

Post by Narcís » Mon Mar 03, 2008 11:29 am

Hola Jordi,

Sí, puedes utilizar la herramienta Fibonacci así:

Code: Select all

Private Sub Form_Load()
    TChart1.Series(0).FillSampleValues 100
    
    With TChart1.Tools.Items(0).asFibonacci
        .Series = TChart1.Series(0)
        .StartX = TChart1.Series(0).asCandle.DateValues.Value(1)
        .StartY = TChart1.Series(0).asCandle.CloseValues.Value(1)
        .EndX = TChart1.Series(0).asCandle.DateValues.Value(10)
        .EndY = TChart1.Series(0).asCandle.CloseValues.Value(10)
    End With
    
End Sub
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