TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
-
glikoz
- Newbie

- Posts: 50
- Joined: Fri Oct 07, 2005 4:00 am
Post
by glikoz » Mon Jan 02, 2006 4:37 pm
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...
Last edited by
glikoz on Tue Apr 18, 2006 12:04 pm, edited 1 time in total.
-
Pep
- Site Admin

- Posts: 3313
- Joined: Fri Nov 14, 2003 5:00 am
-
Contact:
Post
by Pep » Mon Jan 02, 2006 5:50 pm
Hi,
nope, there's not a property to do this. There's a DrawAllPoints property which does this but only for FastLine Series style.
-
Christopher
- Site Admin

- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
-
Contact:
Post
by Christopher » Tue Jan 03, 2006 7:58 am
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
-
glikoz
- Newbie

- Posts: 50
- Joined: Fri Oct 07, 2005 4:00 am
Post
by glikoz » Tue Jan 03, 2006 9:56 am
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 ..
-
Christopher
- Site Admin

- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
-
Contact:
Post
by Christopher » Tue Jan 03, 2006 10:36 am
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!
-
glikoz
- Newbie

- Posts: 50
- Joined: Fri Oct 07, 2005 4:00 am
Post
by glikoz » Fri Mar 31, 2006 1:22 pm
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?
-
Narcís
- Site Admin

- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
-
Contact:
Post
by Narcís » Mon Apr 03, 2006 3:21 pm
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.