Your solution solved my problem.
Thank you very much!
Marijke
Search found 11 matches
- Tue Sep 04, 2012 1:53 pm
- Forum: .NET
- Topic: Numbers on Y Axis get trimmed off
- Replies: 2
- Views: 4870
- Tue Sep 04, 2012 12:25 pm
- Forum: .NET
- Topic: Bars overlap
- Replies: 7
- Views: 14596
Bars overlap
Hi, When I set the min and max values of my bottom axis, my bars start to overlap as shown in the screenshot attached. The code I use is the following: chartToTest.Aspect.View3D = false; chartToTest.Axes.Bottom.Automatic = false; chartToTest.Axes.Bottom.Minimum = 0; chartToTest.Axes.Bottom.Maximum =...
- Tue Sep 04, 2012 9:18 am
- Forum: .NET
- Topic: Numbers on Y Axis get trimmed off
- Replies: 2
- Views: 4870
Numbers on Y Axis get trimmed off
Hi, I want to show a very small chart (size 400 x 300). When I add only one data point with a float value on the Y Axis, this float value gets trimmed on the left side. From the moment that I add a second data point, the values are shown correctly. Why is this value trimmed when I have only one data...
- Mon Jun 11, 2012 7:10 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
I changed my project to use the very last release of TeeChart .NET (4.1.2012.5103). The problem seems to be solved. In the project I have sent to you, I still used the older version (4.0.2009.42282).
Many thanks for your help.
Many thanks for your help.
- Fri Jun 08, 2012 10:19 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
This is the project I made for this test program.
- Fri Jun 08, 2012 7:17 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
So, if I change this line
into this line:
The issue appears again.
Many thanks for your help.
Marijke
Code: Select all
chut.Axes.Left.AutomaticMaximum = false;
Code: Select all
chut.Axes.Left.AutomaticMaximum = true;
Many thanks for your help.
Marijke
- Fri Jun 08, 2012 7:12 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
This works only when I switch the automatic values off. So, the offset works only when I do this: TChart chut; chut.Aspect.View3D = false; chut.Axes.Left.Grid.Visible = false; chut.Axes.Left.AutomaticMaximum = false; chut.Axes.Left.MaximumOffset = 5; chut.Axes.Left.Maximum = 15; chut.Axes.Bottom.Gri...
- Thu Jun 07, 2012 1:57 pm
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
Here is a simple class where I can reproduce the problem using System; using System.Collections.Generic; using System.Linq; using System.Text; using Steema.TeeChart; namespace TeeChartTest { class ChartTester { private TChart chut; // chart under test private Steema.TeeChart.Styles.Line line; public...
- Thu Jun 07, 2012 9:56 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
Even with the latest version (4.1.2012.5103) I have this issue.
Marijke
Marijke
- Thu Jun 07, 2012 9:37 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Re: Line Series not shown when values at borders of the chart
apparently, when posting the topic, the screenshots are twisted. So, what I mean is that - when point markers are not shown (in the chart with the blue line) part of the line is missing. when the line touches the boundaries of the chart section. - when there are point markers shown, the entire line ...
- Thu Jun 07, 2012 9:35 am
- Forum: .NET
- Topic: Line Series not shown when values at borders of the chart
- Replies: 12
- Views: 15436
Line Series not shown when values at borders of the chart
Hi, I am having an issue with line series when the values are to be displayed at the borders of the chart. A screenshot will illustrate my problem. The first screenshot shows the problem. The blue line does not show all the values in the series. The second screenshot shows the chart when I enabled p...