Hi Narcis,
With this version, the problem is gone.
Thank you.
Best regards,
Goran
Search found 9 matches
- Tue Jan 20, 2009 12:32 pm
- Forum: .NET
- Topic: Appearance problem if adding transparent values (Line, Area)
- Replies: 4
- Views: 2044
- Tue Jan 20, 2009 11:40 am
- Forum: .NET
- Topic: Appearance problem if adding transparent values (Line, Area)
- Replies: 4
- Views: 2044
- Tue Jan 20, 2009 10:15 am
- Forum: .NET
- Topic: Appearance problem if adding transparent values (Line, Area)
- Replies: 4
- Views: 2044
Appearance problem if adding transparent values (Line, Area)
Hello I have a problem with Line (then I replaced it with FastLine which works) and Area class. Appearance properties could not be set if I add transparent value. for example: Area area = new Area(tChart1); area.Brush.Color = Color.Red; area.Brush.Transparency = 80; area.AreaLines.Transparency = 90;...
- Tue Nov 04, 2008 9:03 am
- Forum: .NET
- Topic: Bottom Axis without weekends, but with null data
- Replies: 7
- Views: 3149
Hi Narcis, I'm sorry to hear that. For now I am using dummy Line to fill labels for bottom axis... something like this: // dummy line for non existing days/periods Steema.TeeChart.Styles.Line dummyLine = new Steema.TeeChart.Styles.Line(tChart1); for (int labelsIndex = 0; labelsIndex < labelsCount; l...
- Fri Oct 31, 2008 3:42 pm
- Forum: .NET
- Topic: Bottom Axis without weekends, but with null data
- Replies: 7
- Views: 3149
Hi Narcís, Thank you for all your help, but this is not what I want. With this code, I only get data I have, not gap between days I don't have. I thought that image I sent "WhatINeed.png" explains it. It shows gap between data and dates for that data on bottom axis. For example if we want to show a ...
- Thu Oct 30, 2008 12:38 pm
- Forum: .NET
- Topic: Bottom Axis without weekends, but with null data
- Replies: 7
- Views: 3149
Hi Narcís I uploaded example web page and images what I get and what I need, to your upload page (http://www.steema.net/upload). I seems that what I need is combination of two versions of my code... with "else" and without "else". I included ExpMovAverage function. For this data it has to be straigh...
- Wed Oct 29, 2008 1:04 pm
- Forum: .NET
- Topic: Fill area between Bollinger bands
- Replies: 2
- Views: 1598
- Wed Oct 29, 2008 10:32 am
- Forum: .NET
- Topic: Bottom Axis without weekends, but with null data
- Replies: 7
- Views: 3149
Bottom Axis without weekends, but with null data
Hello, I have a problem with Candle Series and maybe some other. I want to display OHLC chart with some upper indicators (moving average, bollinger...) and some indicators below (like volume, MACD OBV, some custom functions...). They all share the same horizontal axis and it is not problem if I take...
- Thu Oct 16, 2008 2:03 pm
- Forum: .NET
- Topic: Fill area between Bollinger bands
- Replies: 2
- Views: 1598
Fill area between Bollinger bands
Hi, How can I fill the area between Bollinger bands with some color or gradient? Something like Area chart style, but between two curves. This is my code for drawing bollinger: Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1); Steema.TeeChart.Functions.Bollinger function =...