Page 1 of 1
Not enough pixel for drawing Series correctly..
Posted: Mon Jan 02, 2006 4:37 pm
by 9638762
Is there any property if window hasnt got enough pixel to draw chart..
If not i will calculate pixels manually ..And Ignore some values ..
InSummary I try to fix this bad apperance
Img .Deleted
Thx for advice...
Posted: Mon Jan 02, 2006 5:50 pm
by Pep
Hi,
nope, there's not a property to do this. There's a DrawAllPoints property which does this but only for FastLine Series style.
Posted: Tue Jan 03, 2006 7:58 am
by Chris
Hi -
You might be interested in the Downsampling function; have a look in the TeeChart for .NET feature demo under:
Welcome !\Functions\Extended\Reducing number of points
DrawValue Method
Posted: Tue Jan 03, 2006 9:56 am
by 9638762
Steema.TeeChart.Styles.CustomPoint.DrawValue(Int32) : Void
All of the Series override this method..
Where this method is called from ?
I try to prevent drawing of some values ..
Posted: Tue Jan 03, 2006 10:36 am
by Chris
Hi -
Have you had a look at the downsampling function? I strongly recommend that you do.
If you have and you think it isn't suitable for you, could you please tell me why so we can make improvements to it?
Many thanks!
Posted: Fri Mar 31, 2006 1:22 pm
by 9638762
Hi Cristopher ;
Downsampling is not suitable for us ,
Because Downsampling changes Data!
We will add functions to our main candle series,and we dont want any changes on its data ..
For example MACD of MainSeries is not equal MACD of DownSampledMainSeries ..WE dont want that ..
We want same result ,only difference between them must be visual !
I think Pep's answer is correct, i try to simulate DrawAllPoints for Candle Series?
Posted: Mon Apr 03, 2006 3:21 pm
by narcis
Hi glikoz,
DownSampling function does not change series data. It creates and additional series to make a graphical representation of the function. The original data series is still available in the chart.
If you want to want to plot a MACD of the original series then set them as the datasource for the function instead of the DownSampling function series.