Page 1 of 1

difficult in select white candle or doji one

Posted: Wed Jun 13, 2007 4:49 am
by 9526591
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

Posted: Wed Jun 13, 2007 8:12 am
by 9348258
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

Posted: Wed Jun 13, 2007 9:54 am
by 9526591
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

Posted: Wed Jun 13, 2007 10:31 am
by narcis
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.

Posted: Wed Jun 13, 2007 1:08 pm
by 9526591
Thanks

Now It's work good

I think the problem was

TChart1.Aspect.View3D = False

thanks