Search found 71 matches

by JayG
Thu May 10, 2012 3:42 pm
Forum: .NET
Topic: Axis title's visibility tied to axis labels' visibility?
Replies: 3
Views: 6896

Re: Axis title's visibility tied to axis labels' visibility?

Change the code in the button1_Click procedure: private void InitializeChart() { tChart1.Aspect.View3D = false; Steema.TeeChart.Styles.Line line1 = new Line(tChart1.Chart); line1.FillSampleValues(); //Axes tChart1.Axes.Left.Title.Visible = true; tChart1.Axes.Left.Title.Text = "Axis Left"; } private ...
by JayG
Wed May 09, 2012 9:23 pm
Forum: .NET
Topic: Axis title's visibility tied to axis labels' visibility?
Replies: 3
Views: 6896

Axis title's visibility tied to axis labels' visibility?

Using TeeChart .NET 4.1.2012.02280

If none of the series assigned to a certain vertical axis are visible, the axis labels and tick marks disappear automatically. Is there a way to have the axis title disappear automatically in this situation also?
by JayG
Fri May 06, 2011 7:00 pm
Forum: .NET
Topic: Video Tool
Replies: 5
Views: 9171

Re: Video Tool

I do get the error with the Demo Project. I did a little more testing with the demo project, and here are the results: Windows XP 32-bit: works OK (tried several systems) Windows Vista 32-bit: works OK (tried 1 system) Window 7 32-bit: works OK (tried 1 system) Windows Vista 64-bit: Error (tried 2 s...
by JayG
Wed May 04, 2011 10:26 pm
Forum: .NET
Topic: Video Tool
Replies: 5
Views: 9171

Re: Video Tool

I installed the Xvid codec on my development system and one of the systems that is generating the error. It did not fix the problem (I didn't really expect it to solve the problem, it is just an MPEG-4 codec). Is there anything I can do to get a more descriptive error code than "Exception in AVIMake...
by JayG
Tue May 03, 2011 6:37 pm
Forum: .NET
Topic: Video Tool
Replies: 5
Views: 9171

Video Tool

Using TeeChart 4.1.2011.04193, VB 2010 Express I am developing on a Windows XP Pro SP3 system, and creating a video using the Video Tool works fine. However, when I try to run the project on 2 other computers, both of which have Windows Vista, I get the following error after calling the StartRecordi...
by JayG
Wed Feb 09, 2011 8:04 pm
Forum: .NET
Topic: Version number decrease?
Replies: 1
Views: 4835

Version number decrease?

Is there a reason why the version number has decreased from 4.1 (4.1.2010.11300) to 4.0 (4.0.2011.02080)?

Jay
by JayG
Wed Jul 14, 2010 3:01 pm
Forum: .NET
Topic: Out of Memory error checking color of points
Replies: 5
Views: 9800

Re: Out of Memory error checking color of points

Sandra, Checking for a null value instead of checking the color in my full application did solve my problem. Everything is working as I want it to now. I just posted that other code to let you know that checking the color and checking for a null value both worked when used in a simple test applicati...
by JayG
Tue Jul 13, 2010 6:18 pm
Forum: .NET
Topic: Out of Memory error checking color of points
Replies: 5
Views: 9800

Re: Out of Memory error checking color of points

Hi Sandra, Thanks for the suggesion. When I changed my code from checking for not Color.Transparent to checking for not IsNull, the error went away. I'm nut sure why I was checking the color of the point instead of checking for a null value. I originally wrote the code a long time ago when I was fai...
by JayG
Fri Jul 09, 2010 4:22 pm
Forum: .NET
Topic: Out of Memory error checking color of points
Replies: 5
Views: 9800

Out of Memory error checking color of points

VBExpress 2008 TeeChart 4.0.2010.27962 I am working with a chart that has 117 line series with 24480 points each. In the BeforeDrawSeries Event, I have code which uses a for...next loop to loop through the points of a few of the series. When the following If statement executes, I get an Out Of Memor...
by JayG
Mon Jun 28, 2010 9:10 pm
Forum: .NET
Topic: Editor 3D tab and Elevation property
Replies: 3
Views: 6332

Re: Editor 3D tab and Elevation property

It looks like this is still not fixed in 4.0.2010.27962. Are you still planning to fix this?

Jay
by JayG
Wed Aug 05, 2009 8:47 pm
Forum: .NET
Topic: Refreshing a SubChart
Replies: 9
Views: 14304

Re: Refreshing a SubChart

Thanks, I like that workaround better.

Jay
by JayG
Tue Jul 28, 2009 3:06 pm
Forum: .NET
Topic: Refreshing a SubChart
Replies: 9
Views: 14304

Re: Refreshing a SubChart

It works using TeeChart .NET version 3.5.3056.18834 and VB Express 2005. I didn't try that version of TeeChart .NET in VB Express 2008.

Thanks for the suggested workaround.

Jay
by JayG
Mon Jul 27, 2009 5:02 pm
Forum: .NET
Topic: Refreshing a SubChart
Replies: 9
Views: 14304

Re: Refreshing a SubChart

OK, here it is.

Jay
by JayG
Fri Jul 24, 2009 10:39 pm
Forum: .NET
Topic: Refreshing a SubChart
Replies: 9
Views: 14304

Re: Refreshing a SubChart

I'm not sure if this is all the files you need, let me know if you ned more.

Jay
by JayG
Thu Jul 23, 2009 10:04 pm
Forum: .NET
Topic: Refreshing a SubChart
Replies: 9
Views: 14304

Refreshing a SubChart

Using TeeChart .NET 4.0.2009.21355 Using VB Express 2008 I am trying to refresh a SubChart using the following method, which worked in TeeChart 3.5: Dim objects at class level: Dim SubTool As Steema.TeeChart.Tools.SubChartTool Dim WithEvents SubChart As Steema.TeeChart.TChart In the load event handl...