Thanks Yeray but It does not work.
Look at my example:
MaxVisbileValue does not return the current Max Value of my visible graph (zoomed). It return 66.61 instead of 66.29
Guilz
Zooming by code on a date range
Re: Zooming by code on a date range
- Attachments
-
- t3.jpg (116.62 KiB) Viewed 6166 times
Re: Zooming by code on a date range
Hi Guilz,
Have you called the function
before looking at the value at MaxVisbileValue?
Could you please send us a simple example project we can run as-is to reproduce the problem here? Thanks in advance.
Have you called the function
Code: Select all
tChart1.Environment.InternalRepaint
Could you please send us a simple example project we can run as-is to reproduce the problem here? Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Zooming by code on a date range
Yeray,
Yes I use the function before.
I build a new sample projet and it is working like a charm
I don't understand why it is not working in my 'big' project...Now, I must compare the 2 projects to find the differences.
Thks a lot for your help
Guilz
Yes I use the
Code: Select all
tChart1.Environment.InternalRepaint
I build a new sample projet and it is working like a charm
I don't understand why it is not working in my 'big' project...Now, I must compare the 2 projects to find the differences.
Thks a lot for your help
Guilz
Re: Zooming by code on a date range
found it !
Not working if we use
I use this code because I found it in your tutorial about how to increase performance in Real Time.
Not compatible with what I'm looking for
Regards,
Guilz
Not working if we use
Code: Select all
TChart1.Series(0).XValues.Order = loNone
Not compatible with what I'm looking for
Regards,
Guilz
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Zooming by code on a date range
Hi Guilz,
That's probably because you need to set it before populating your series.
That's probably because you need to set it before populating your series.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Zooming by code on a date range
Not working even if done (adding after populating my series...
Not a problem for me, working fine without
Thks Narcis, and the Teechart support team is very dynamic, it is a pleasure to work with
Guilz
Code: Select all
TChart1.Series(0).XValues.Order = loNone
Not a problem for me, working fine without
Thks Narcis, and the Teechart support team is very dynamic, it is a pleasure to work with
Guilz