Search found 31 matches

by johnk
Fri Jul 18, 2008 12:22 am
Forum: .NET
Topic: Fastline not drawing correctly.
Replies: 9
Views: 11213

What is the status of this bug. I posted this back in 2006.
by johnk
Fri Jul 18, 2008 12:15 am
Forum: .NET
Topic: Line Series with two points the same.
Replies: 1
Views: 3539

Line Series with two points the same.

I have a Line series with Points visible that contains only two points. If the points happen to be the same value the chart does not draw any points. Example) Add a Line series to a chart and make the points visible. In the Form constructor add the two points. public Form1() { InitializeComponent();...
by johnk
Wed Dec 05, 2007 6:50 pm
Forum: .NET
Topic: Fastline not drawing correctly.
Replies: 9
Views: 11213

I've looked at the release notes and don't see this as fixed. Can you confirm this for me? Is it possible to bump up the priority on this one if it hasn't been fixed yet?
by johnk
Tue Dec 04, 2007 6:32 pm
Forum: .NET
Topic: Setting zorder to the same value for multiple Fastline
Replies: 9
Views: 14487

I've been watching off and on for this in the release notes. Is there any plans on providing this feature?
by johnk
Thu Jun 21, 2007 4:52 pm
Forum: .NET
Topic: License problem
Replies: 3
Views: 6898

Could you direct me to the text in the license that states we don't need a license for a build-only machine? Our IT department needs something a little more binding than a reference to this post. Secondly, most of our developers have multiple machines and/or use virtual machines. If the developer is...
by johnk
Thu Feb 08, 2007 7:49 pm
Forum: .NET
Topic: Fastline not drawing correctly.
Replies: 9
Views: 11213

Has this been fixed yet?
by johnk
Wed Jul 26, 2006 3:32 pm
Forum: .NET
Topic: Fastline not drawing correctly.
Replies: 9
Views: 11213

Any news on the fix for this bug?
by johnk
Tue Jul 11, 2006 7:52 pm
Forum: .NET
Topic: OutOfMemoryException CustomLabels
Replies: 21
Views: 26845

Look back to my second post on 23 Jun 2005. We had to use reflection to get to the arraylist.
by johnk
Wed Jun 28, 2006 4:18 pm
Forum: .NET
Topic: Setting zorder to the same value for multiple Fastline
Replies: 9
Views: 14487

Line series will not work for my application. I would like to set fastline series to the same zorder.
by johnk
Tue Jun 27, 2006 5:16 pm
Forum: .NET
Topic: Setting zorder to the same value for multiple Fastline
Replies: 9
Views: 14487

Is there any news on getting this feature? We really need to be able to control where in the z-plane a series is plotted and have multiple series draw on the same z plane. Please consider implementing.
by johnk
Tue Jun 27, 2006 4:44 pm
Forum: .NET
Topic: Fastline not drawing correctly.
Replies: 9
Views: 11213

Fastline not drawing correctly.

Fastline series will not draw to the edge of the graph when panning. After running the example code slowly pan the series to the right and you will see one or both of the series lines stop short of the edge. In some cases its a very wide gap. Here is the example: public Form1() { InitializeComponent...
by johnk
Tue Jun 20, 2006 8:11 pm
Forum: .NET
Topic: OutOfMemoryException CustomLabels
Replies: 21
Views: 26845

My apologies. You did send me a fix for this in May and it was implemented in the InternalDrawLabel. We implemented the reflection fix because we were too close to our release to changed teechart versions. Any news on when the source version will be updated? Thanks again for you quick responses.
by johnk
Mon Jun 19, 2006 4:56 pm
Forum: .NET
Topic: OutOfMemoryException CustomLabels
Replies: 21
Views: 26845

The original post from you on Wed May 24, 2006 9:19 pm proposed the fix in the Clear method not in the InternalDrawLabel.
by johnk
Fri Jun 16, 2006 4:41 pm
Forum: .NET
Topic: Memory Leak in TeeChart Pocket OnPaint !
Replies: 11
Views: 16933

This may be related to another post "OutOfMemoryException CustomLabels"
by johnk
Fri Jun 16, 2006 4:35 pm
Forum: .NET
Topic: OutOfMemoryException CustomLabels
Replies: 21
Views: 26845

It looks like the arraylist is only needed for handling the click label event. Since we do not use this feature we have implemented this workaround. After initializing the chart we get the labelpos arraylist using reflection and subscribe to the GetAxisDrawLabel event. FieldInfo labelPosInfo = chart...