Search found 191 matches

by Mike Jones
Tue Dec 30, 2008 8:16 pm
Forum: .NET
Topic: How can I find the location and size of an axis title?
Replies: 4
Views: 33796

Almost perfect

I have a small problem. When the Chart is resized the position of my combobox is sometimes off and othertimes it is perfect. i have a method called SetLocation() where I use the code you suggested to set the position of my combobox. I then have tried various events to call the SetLocation method. I ...
by Mike Jones
Tue Dec 09, 2008 8:46 pm
Forum: .NET
Topic: Unhandled exception
Replies: 12
Views: 18215

Estimate when this could be addressed

I continually having to modify the source code to add a catch to a try block. This is an easy fix and will prevent the exception from crashing applications. Could the method in TeeChart.cs have the try catch statement added as shown below? public virtual void Draw(Graphics g) { bool old = chart.Auto...
by Mike Jones
Thu Oct 30, 2008 7:25 pm
Forum: .NET
Topic: 1D chart
Replies: 1
Views: 16727

1D chart

Do you have a recommendation on how to chart data that is 1 dimension? Option #1 I would like to create a number line. The data would look something like a number line with a dark line drawn from the min to the max value of the data. Option #2 As another way to chart something like this would be to ...
by Mike Jones
Tue Oct 21, 2008 1:52 pm
Forum: .NET
Topic: Logarithmic scale with small numbers results bad axis labels
Replies: 6
Views: 39973

What is MaximumOffset?

What exactly is the purpose for MaximumOffset and what does it do?
by Mike Jones
Fri Oct 17, 2008 12:40 pm
Forum: .NET
Topic: Logarithmic scale with small numbers results bad axis labels
Replies: 6
Views: 39973

Not sure I understand

This is because values are very similar and there's no significative differences between them in a logarithimic scale. Same would happen with non-logarithmic axes and a series with a constant y value (all y values being the same), in that case the constant y value would be represented as a single l...
by Mike Jones
Thu Oct 16, 2008 8:59 pm
Forum: .NET
Topic: Logarithmic scale with small numbers results bad axis labels
Replies: 6
Views: 39973

Logarithmic scale with small numbers results bad axis labels

I have uploaded an example project called ChartLogrithamicBug It charts 7 point series. 6 are visible and have 1 point in each series. The 7th series has 2 points but the points are made invisible with a transparency = 100. Here is a picture of what is charted http://tinyurl.com/4rmvna on the vertic...
by Mike Jones
Tue Oct 14, 2008 3:26 pm
Forum: .NET
Topic: Exception when an axis is logarithmic
Replies: 7
Views: 40446

Impressive

I am impressed! I think that is the fastest response I have ever experienced in a support site that was not using chat software.

Thanks for the quick response.
by Mike Jones
Tue Oct 14, 2008 2:51 pm
Forum: .NET
Topic: Exception when an axis is logarithmic
Replies: 7
Views: 40446

Exception when an axis is logarithmic

Exception details: Steema.TeeChart.TeeChartException: Logarithmic Axis Min and Max values should be >= 0 at Steema.TeeChart.Axis.set_Logarithmic(Boolean value) at Steema.TeeChart.Samples.Log_CustomIncrement.checkBox1_CheckedChanged(Object sender, EventArgs e) at System.Windows.Forms.CheckBox.OnCheck...
by Mike Jones
Fri Oct 10, 2008 5:12 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

Results

I just uploaded the bin\release build of the ChartMillionPoints test application. Your test hardware is definitely much faster than mine. I tested the release build on another machine. This machine was a 3 GHz, P4 processor, with 1 Gb of memory, NVidia GeForce 5200. It did perform better and I did s...
by Mike Jones
Fri Oct 10, 2008 1:35 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

Flash file uploaded

The other file has been uploaded. Here is some observations on speed. Action Your Time My Time Adding a Million Points 24 seconds 40 seconds Resizing to afterdraw 19 seconds 79 seconds You also don't seem to get as many BeforeDraw/AfterDraw events to fire. This seems to indicate that something I am ...
by Mike Jones
Thu Oct 09, 2008 3:45 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

What I am using

I am using Steema's binary version 3.5.3146.24805 I know that is about 1 version behind the latest. I did what you had to do to run. My form_load looks like yours. I am curious, What does your output tab look like when running under visual studio? You should see entries for the debug statements here...
by Mike Jones
Thu Oct 09, 2008 3:00 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

I see a different behavior

Oops on the code. Sorry I left that incomplete line in the code when I sent it. The video you reference was the behavior I would like to see. I am not seeing that behavior. Instead as I drag, the dialog will freeze because it is repainting the chart as I am resizing. I can move the mouse about a mil...
by Mike Jones
Wed Oct 08, 2008 4:15 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

Suggestion does not work

The code suggestion does not work in the tChart1_Resize event. It appears that this event fires at the beginning of the dragging. I tried moving the code to the Form_MouseUp event. That did not help either. It appears when the Chart Resizes it still wants to Repaint as I drag the corner of the form....
by Mike Jones
Tue Oct 07, 2008 9:09 pm
Forum: .NET
Topic: Resizing freezes up WinForm
Replies: 11
Views: 39231

Resizing freezes up WinForm

If I have many points on a chart (~1 million) and I try to resize the parent form of the chart by dragging a corner of the window, the form freezes up. I have the chart's Anchor property set to Left, Right, Top, & Bottom. I would like to have the chart not resize until the MouseUp event fires. Any s...
by Mike Jones
Wed Oct 01, 2008 2:03 pm
Forum: .NET
Topic: Request for a new Series Style
Replies: 20
Views: 52740

Just need some advice

I don't expect support on this issue, just some friendly advise where to start looking. We do have the DrawValue method overriden and it is trying to draw the rectangle. The problem seems to go deeper into the System.Drawing.Graphics. I have a simple example where I have 1 large rectangle drawn. If ...