Search found 247 matches

by UserLS
Thu Apr 26, 2012 6:31 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

On the other hand, TF02016127 is related to TF02015172 (and so to TF02014628). The problem in TF02015172 and TF02014628 was that MinimumOffset and MaximumOffset were not working when Axis.Automatic was set to true and now are fixed. We recognize that the behavior has changed between September of 20...
by UserLS
Thu Apr 26, 2012 3:13 pm
Forum: .NET
Topic: Area series with gradient fill
Replies: 1
Views: 4605

Area series with gradient fill

I am setting up a 3D graph with area series. I am setting CololrEach to true. I'd like to use gradient fill, but the top of the area is painted in a single color... I cannot find a way to make the top gradient AND respect ColorEach at the same time. Help!
by UserLS
Wed Apr 25, 2012 4:41 pm
Forum: .NET
Topic: ChartBrush serialization problem
Replies: 6
Views: 10674

Re: ChartBrush serialization problem

tChart1 = new TChart { Dock = DockStyle.Fill }; Controls.Add(tChart1); var area = new Area(tChart1.Chart); area.Add(1, 15); area.Add(2, 11); area.Add(3, 18); area.Add(4, 16); area.AreaBrush.Style = HatchStyle.DiagonalCross; area.AreaBrush.Solid = true; tChart1.Header.Transparent = false; tChart1.He...
by UserLS
Wed Apr 25, 2012 4:27 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

Thanks! I did not know about SoftClip... It works! Thanks again!
by UserLS
Tue Apr 24, 2012 7:13 pm
Forum: .NET
Topic: ChartBrush serialization problem
Replies: 6
Views: 10674

Re: ChartBrush serialization problem

Any idea when this bug is going to be fixed? I have never seen it working since moving to .NET (even though you said it was fixed). If it was fixed in the past - then it is broken again. In the latest version still all the shapes and series will restore the pattern after reloading a template file...
by UserLS
Tue Apr 24, 2012 6:59 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

First, the code you've asked for: var chart = new TChart(); var line = new Line(chart.Chart); line.Add(1, 15); line.Add(2, 11); line.Add(3, 13); line.Add(4, 18); line.Add(5, 16); line.Marks.Visible = true; line.Marks.ArrowLength = -10; I see only one mark on the series... As to the new property, I h...
by UserLS
Mon Apr 16, 2012 3:26 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

Two more problems found with this release: If I have a line graph and all axes are automatic and Marks.Visible = true, than first and last marks are not shown. Yes, I can set offsets to something other than 0 and the marks will show up, but then other stuff stops working (like inflate margins if I a...
by UserLS
Mon Apr 02, 2012 4:21 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

To see the problem with arrow head style = lines run this code (I most of the time use 3D graphs and this setting is available there - and should be): private void InitializeChart() { tChart1.Aspect.View3D = true; Steema.TeeChart.Styles.Bar Series1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart); Se...
by UserLS
Fri Mar 30, 2012 6:28 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

Thanks! More bugs found though... Series marks, when rotated do not show round rectangle. Series marks - Arrow Head: None works fine Line: whatever you intended to do - it is not working ever. Instead it draws some lines and looks awful. Solid: Pie charts: When arrow length is positive it works fine...
by UserLS
Thu Mar 29, 2012 3:21 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

The version which is in our official release is from Feb 18, 2010 and marks and pointers do not affect axis margins when they were set by a user. We did try to upgrade to a version that was released in June or August of the same year but both releases had too many problems and we could not include t...
by UserLS
Thu Mar 29, 2012 12:53 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Re: Bugs in new release

For the problem with marks run the following code: chart = new TChart(); var line = new Line(chart.Chart); line.Add(1, 15); line.Add(2, 11); line.Add(3, 18); line.Add(4, 16); chart.Axes.Left.Automatic = false; chart.Axes.Left.Minimum = 10; chart.Axes.Left.Maximum = 20; line.Marks.Visible = true; lin...
by UserLS
Tue Mar 27, 2012 11:30 pm
Forum: .NET
Topic: Bugs in new release
Replies: 20
Views: 28974

Bugs in new release

Hi! I just upgraded to the new release (I was about 18 months behind) and found a few bugs that will hold my upgrade: When I set InflateMargine to true on a pointer (line, area or just points series) and my axes are automatic it works fine. But if I want my vertical axis to have specific Min/Max val...
by UserLS
Fri Apr 01, 2011 3:07 am
Forum: .NET
Topic: Bar Series problem
Replies: 4
Views: 8261

Re: Bar Series problem

First of all, I'd like vertical and horizontal bars act the same way. So, if there should be a gap between bars, it should be in both implementations. Second, I do not expect any gaps between bars, if I set width to 100% (and this is how it was in previous versions we used starting from Delphi versi...
by UserLS
Fri Mar 11, 2011 7:02 pm
Forum: .NET
Topic: Pie chart - custom colors
Replies: 5
Views: 9114

Re: Pie chart - custom colors

The version we upgraded from was the July (or may be April) build in 2010 and it was working correctly then.
by UserLS
Thu Mar 10, 2011 9:13 pm
Forum: .NET
Topic: Pie chart - custom colors
Replies: 5
Views: 9114

Re: Pie chart - custom colors

Well, the change was made to Series.ValueColor method (I am not sure if it affects all series types or circular only). If I set: Series[n].Color = Color.FromRGB(0, 0, 0) Series.ValueColor returns some other (default) color, not the one I've selected, which was not the case before. This value is not ...