Search found 9 matches

by vlaho
Tue Jan 20, 2009 12:32 pm
Forum: .NET
Topic: Appearance problem if adding transparent values (Line, Area)
Replies: 4
Views: 2044

Hi Narcis,

With this version, the problem is gone.

Thank you.

Best regards,

Goran
by vlaho
Tue Jan 20, 2009 11:40 am
Forum: .NET
Topic: Appearance problem if adding transparent values (Line, Area)
Replies: 4
Views: 2044

Hi Narcis,

I tried your code and it displays blue (or something near blue) chart and not red, and if I comment out
//area.Add();
then it's red as it should be.

Is the problem solved in some newer version?
Mine is 3.5.3188.18561

Goran
by vlaho
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;...
by vlaho
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...
by vlaho
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 ...
by vlaho
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...
by vlaho
Wed Oct 29, 2008 1:04 pm
Forum: .NET
Topic: Fill area between Bollinger bands
Replies: 2
Views: 1598

Thank you very much!

I downloaded the latest version because mine did not include SeriesBand tool. Now it works perfectly.
by vlaho
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...
by vlaho
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 =...