difficult in select white candle or doji one

TeeChart for ActiveX, COM and ASP
Post Reply
Jameh2020
Newbie
Newbie
Posts: 25
Joined: Fri Apr 08, 2005 4:00 am

difficult in select white candle or doji one

Post by Jameh2020 » Wed Jun 13, 2007 4:49 am

hi
i have chart in candle style
i put red candle for bad day and white cadle for good day
it 's very easy to select the red candle to get some data
but its very difficult to select then white one or doji candle

can you help me

Edu
Advanced
Posts: 206
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia

Post by Edu » Wed Jun 13, 2007 8:12 am

Hi

Sorry but We don't understand which is the exact problem you are having. Could you please tell us more about your problem. Also, if is it possible, could you please send us a simple example project we can run "as-is" to reproduce the issue here?

You can post your files either at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup or at our upload page
Best Regards,
Edu

Steema Support Central
http://support.steema.com/

Jameh2020
Newbie
Newbie
Posts: 25
Joined: Fri Apr 08, 2005 4:00 am

Post by Jameh2020 » Wed Jun 13, 2007 9:54 am

I tell you before
i have chart with candle style
i need to get OnClickSeries events
when i click red candle it' s very easy to do it
but when i click white candle it's uneasy to click it also doji candle
i do not now why
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 13, 2007 10:31 am

Hi Jameh2020,

It works fine for us here using v7.0.1.4, which is the latest version available at the client area, and this code:

Code: Select all

Private Sub Form_Load()
    TChart1.Series(0).FillSampleValues 10
    TChart1.Aspect.View3D = False
End Sub

Private Sub TChart1_OnClickSeries(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, ByVal Button As TeeChart.EMouseButton, ByVal Shift As TeeChart.EShiftState, ByVal X As Long, ByVal Y As Long)
    Label1.Caption = CStr(ValueIndex)
End Sub
OnClickSeries event works fine for all candles.

Could you please send us a simple example project we can run "as-is" to reproduce the problem here? Could you also let us know which TeeChart version are you using and what do you mean with doji candle?

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

Jameh2020
Newbie
Newbie
Posts: 25
Joined: Fri Apr 08, 2005 4:00 am

Post by Jameh2020 » Wed Jun 13, 2007 1:08 pm

Thanks

Now It's work good

I think the problem was

TChart1.Aspect.View3D = False

thanks

Post Reply