Search found 11 matches
- Thu Mar 05, 2009 6:10 pm
- Forum: .NET
- Topic: Area series not displaying after upgrading to v3.5.3330
- Replies: 7
- Views: 12744
Thank you, Sandra. The original reason for my update was to resolve a performance issue with zoom/unzoom. Zoom and, especially, unzoom performance degrades quite noticably with series containing a large number of datapoints. Did you also see that in testing for the above issue? Is there something th...
- Tue Mar 03, 2009 4:07 pm
- Forum: .NET
- Topic: Area series not displaying after upgrading to v3.5.3330
- Replies: 7
- Views: 12744
Hi Sandra, Thanks for the reply. I only needed to add slope to the chart to get the effect. private void Form1_Load(object sender, EventArgs e) { Steema.TeeChart.Styles.Area area1 = new Steema.TeeChart.Styles.Area(tChart1.Chart); Steema.TeeChart.Styles.Area area2 = new Steema.TeeChart.Styles.Area(tC...
- Mon Mar 02, 2009 9:23 pm
- Forum: .NET
- Topic: Area series not displaying after upgrading to v3.5.3330
- Replies: 7
- Views: 12744
Hi Sandra, I am using TeeChart Pro Version 3.5.3330.21114, Runtime v2.0.50727, with Visual Studio C# 2008 and .Net 2.0. To retest this issue, I upgraded TeeChart 3.5.3146 to 3.5.3330 (3330 had been backed off), created a new Windows forms project with a single TChart object on the form, 3-D was turn...
- Fri Feb 27, 2009 9:56 pm
- Forum: .NET
- Topic: Area series not displaying after upgrading to v3.5.3330
- Replies: 7
- Views: 12744
Area series not displaying after upgrading to v3.5.3330
Hi, I upgraded from 3.5.3146 to 3.5.3330 hoping to resolve a problem we are having with the performance of TCharts when we have a large number of datapoints (>20,000). However, after the upgrade we no longer see the areas on the charts or they are displayed in numerous axes on the charts (Picasso-li...
- Fri Sep 19, 2008 9:37 pm
- Forum: .NET
- Topic: How not to show missing points
- Replies: 4
- Views: 6952
Thank you, again, Narcís. Now I get it. I was using the following line to load the series. area1.Add(value.Date , value ); When I changed it to the this, the gaps went away, as in the example. area1.Add(i, value , value.Date .ToString()); I still need to clean up the marks and labels for this but I ...
- Thu Sep 18, 2008 5:09 pm
- Forum: .NET
- Topic: How not to show missing points
- Replies: 4
- Views: 6952
Thank you, Narcís. I tried setting XValues.DateTime = false; for the areas and lines displayed on the chart, as found in the example, but still get weekends allocated in the chart. //this code apears in InitializeComponent() private Steema.TeeChart.Styles.Area area1; private Steema.TeeChart.Styles.A...
- Wed Sep 17, 2008 7:40 pm
- Forum: .NET
- Topic: How not to show missing points
- Replies: 4
- Views: 6952
How not to show missing points
I have a chart that displays a series of points where the bottom axis displays datetime values for the series. Points for weekends and holidays are not added, yet, they are displayed on the chart. I've tried a number of ways to turn off these points (TreatNulls=Skip, ExactDateTime=False, etc.) but h...
- Mon May 05, 2008 2:44 pm
- Forum: .NET
- Topic: Disabling MarksTip for a line
- Replies: 2
- Views: 4883
- Fri May 02, 2008 8:55 pm
- Forum: .NET
- Topic: Disabling MarksTip for a line
- Replies: 2
- Views: 4883
Disabling MarksTip for a line
Hi, I have a chart with 2 areas, 3 optional lines, and a MarksTip for these. The lines can be turned off and on by the user (e.g. line1.Visible = false). However, even though the line is Visible=false; the MarksTip pops up when the mouse moves over where the line would be on the chart. What I need t...
- Wed Mar 26, 2008 10:09 pm
- Forum: .NET
- Topic: Group development and source code control
- Replies: 2
- Views: 9034
- Wed Mar 19, 2008 9:05 pm
- Forum: .NET
- Topic: Group development and source code control
- Replies: 2
- Views: 9034
Group development and source code control
Hi, I work in a group and my code is checked into source control. Each developer needs to rebuild the project, although, I am the only one to develop using TeeCharts. Reading through the EULA, tutorial (17), and other posts, I'm unclear what exactly needs to be included in source control (TeeChart.d...