Search found 18 matches

by SorenBendtsen
Thu Nov 24, 2011 4:32 pm
Forum: .NET
Topic: Fixed grid lines
Replies: 3
Views: 5955

Re: Fixed grid lines

Hi Sandra, I think I got the solution with custom axis figured out, like in the samples you are referring to. The fixed grid lines are a bit hackish though. The best solution so far, is to set a background image, and tile it. It is crude, but works. I have not been able to find the download for the ...
by SorenBendtsen
Wed Nov 23, 2011 6:18 pm
Forum: .NET
Topic: Fixed grid lines
Replies: 3
Views: 5955

Fixed grid lines

Hi I am trying to implement something like in the screenshot here: http://www.steema.com/entry/37/NEW_Release_Digital_Signal_Processing_with_TeeChart_for_.NET I have created a custom vertical axis for each series (how I usual stack graphs), is there a way to create a fixed with and height of the gri...
by SorenBendtsen
Thu Oct 13, 2011 5:14 pm
Forum: .NET
Topic: Win32Exception: Not enough storage is available to process t
Replies: 3
Views: 6244

Re: Win32Exception: Not enough storage is available to process t

Hi Sandra,

I checked the download page, the latest version I could find is 3.5.3700.30575, can you confirm this is the latest version?

Thanks,
Søren
by SorenBendtsen
Mon Sep 19, 2011 9:54 am
Forum: .NET
Topic: Win32Exception: Not enough storage is available to process t
Replies: 3
Views: 6244

Win32Exception: Not enough storage is available to process t

My application crashed, with an exception - I have included a stack trace of the exception, and it seems to originate from the TeeChart component. The failure occurred during resize of a graph. I have not been able to reproduce the problem on a developer machine. The trace was submitted from a user....
by SorenBendtsen
Thu Aug 12, 2010 2:33 pm
Forum: .NET
Topic: Teechart says it's unlicensed under windows 7
Replies: 6
Views: 11109

Re: Teechart says it's unlicensed under windows 7

Hi Yeray,

Thanks - I made it work. The registry keys was missing, but I had no luck creating them manually.
I ran the TeeRegV3.exe app. with administrator privileges, and it did the trick.
by SorenBendtsen
Wed Aug 11, 2010 11:54 am
Forum: .NET
Topic: Teechart says it's unlicensed under windows 7
Replies: 6
Views: 11109

Re: Teechart says it's unlicensed under windows 7

I have the same issue - is there a work-around for this?

Also Windows 7 x64
by SorenBendtsen
Wed Jul 15, 2009 10:35 am
Forum: .NET
Topic: Broken graph lines
Replies: 2
Views: 4808

Re: Broken graph lines

The TeeChart version is 3.5.3425.20243 using Framework 3.0 on a Windows XP machine.
by SorenBendtsen
Wed Jul 15, 2009 10:26 am
Forum: .NET
Topic: Broken graph lines
Replies: 2
Views: 4808

Broken graph lines

Hi I have a graph, containing a single FastLine series. All the points should be connected, but in the graph, it appears to have blank segments. brokenlinkes.png I exporting the values in the series using: using (TextWriter writer = new StreamWriter(fileStream, Encoding.UTF8)) { foreach (Series seri...
by SorenBendtsen
Tue Jun 16, 2009 1:39 pm
Forum: .NET
Topic: Backwards compatability?
Replies: 4
Views: 6746

Re: Backwards compatability?

Arh - I think the mystery is solved then :D

- Thank you for your time.

/Soren
by SorenBendtsen
Tue Jun 16, 2009 12:16 pm
Forum: .NET
Topic: Backwards compatability?
Replies: 4
Views: 6746

Re: Backwards compatability?

Hi Sandara

I looked at it again - the missing signature is:

public int Add(DateTime x, double? y);

This signature is present in 3.5.3324.17094 (Feb, 2009) but not in 3.5.3425.20243 (Current)
by SorenBendtsen
Tue Jun 16, 2009 9:22 am
Forum: .NET
Topic: Backwards compatability?
Replies: 4
Views: 6746

Backwards compatability?

Hi I just updated my TeeChart installation from 3.5.3324.17094 to 3.5.3425.20243 and found that it broke a lot of our products!. In Series class the following signature: public int Add(double x, double? y); has been removed??? What is the correct way of doing the same as the previous signature? int ...
by SorenBendtsen
Tue Mar 24, 2009 10:03 am
Forum: .NET
Topic: ToolTip mouse move/mouse click
Replies: 5
Views: 8114

Hi Yeray,

I thought it was a strange behavior :D

Is there any way of tracking the progress of the bug report? (TF02013998)

Kind regards
Soren
by SorenBendtsen
Mon Mar 23, 2009 1:05 pm
Forum: .NET
Topic: ToolTip mouse move/mouse click
Replies: 5
Views: 8114

Sample for Gantt series and ToolMarks

Hi Yeray, I upload two samples using your upload page. TeeChartGanttSample.zip and TeeChartGanttSampleWorkAround.zip - I entered Soren Bendtsen as name, not sure how to link to it. The workaround is using a boolean to save if the Click event is fired previously to the ClickPointer event. Kind regard...
by SorenBendtsen
Mon Mar 23, 2009 11:45 am
Forum: .NET
Topic: ToolTip mouse move/mouse click
Replies: 5
Views: 8114

ToolTip mouse move/mouse click

Hi I am having some trouble with TeeChart. I have a graph, with a Gantt series. The series as a list of tasks - works fine. Instead of showing the Marks on the tasks, I would like to show them on mouse over. So I added the Tools.MarkTips, and it also works - kind of. The correct text is shown, but i...
by SorenBendtsen
Tue Jan 22, 2008 12:55 pm
Forum: .NET
Topic: Labels on Custom Axis not shown.
Replies: 5
Views: 7181

Hi Narcís The charting code is quite intangled with our soultion, so i could not upload a runable source. But I found the solution. customAxis.Labels.Font.Color = Color.White; The color of the labels were the same as the background (black). Stupid is who stupid does :D Thank you for taking your time...