Hi,
Is there a DBChart setting that will make TLineSeries ignore zero or null values so that the lines aren't bunched together at the top for larger Y values.
Thanks,
Barry
TLineSeries zero/null values
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Barry,
You may be interested in checking some examples in TeeChart features demo:
-All Features\Welcome!\Chart Styles\Standard\Fast Line\Nulls and Stairs
-Search for "Axis Labels no Weekends" example in the search tab.
You may be interested in checking some examples in TeeChart features demo:
-All Features\Welcome!\Chart Styles\Standard\Fast Line\Nulls and Stairs
-Search for "Axis Labels no Weekends" example in the search tab.
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 |
TLineSeries zero/null values
Thanks Narcis,
Those methods won't work for me because the scale doesn't adjust.
I think what I have to do is reset the axis minimum to the minimum Y value > 0 for each series.
I could do this by looping through my clientdataset, finding the minimum positive value for each relevant column and using SetMinMax accordingly.
I could also query the database for that information.
I'm just looking for the method that will cause the least delay.
Glad to have any suggestions.
Barry
Those methods won't work for me because the scale doesn't adjust.
I think what I have to do is reset the axis minimum to the minimum Y value > 0 for each series.
I could do this by looping through my clientdataset, finding the minimum positive value for each relevant column and using SetMinMax accordingly.
I could also query the database for that information.
I'm just looking for the method that will cause the least delay.
Glad to have any suggestions.
Barry
TLineSeries zero/null values
Actually I can get the minimum value with with the clientdataset aggregates function. -Not a problem.
Thanks
Thanks