Search found 15 matches

by Michael
Wed Feb 20, 2008 4:16 pm
Forum: .NET
Topic: Synchronized Scrolling
Replies: 1
Views: 3973

Synchronized Scrolling

I want to be able to horizontally scroll several charts at once based upon the movement (pan) of any other chart. I have several highlow charts being displayed in a winform. I want to limit the vertical movement to zero as all charts' vertical scale is set to allow some "white space". It does not ma...
by Michael
Wed Jul 26, 2006 2:16 pm
Forum: .NET
Topic: How to add a highlow series???
Replies: 3
Views: 6295

Exactly! This one sample has answered so many questions!!! One type-o... For the benefit of the curious onlooker... the following: Private Sub AddChartVal(ByRef chrt As Steema.TeeChart.TChart, ByVal iSer As Integer, ByVal XVal As Date, ByVal LoVal As Double, ByVal HiVal As Double, ByVal strText As S...
by Michael
Mon Jul 24, 2006 5:08 pm
Forum: .NET
Topic: How to add a highlow series???
Replies: 3
Views: 6295

How to add a highlow series???

I am trying to produce a chart of two x-y linear series with the area between the lines filled in with color. If the first line y value is greater than the second line yValue a different color would be used (or different transparency - some way to indicate an "above the line" situation). So while th...
by Michael
Wed Mar 22, 2006 11:22 pm
Forum: .NET
Topic: StackOverflowException with 31 charts on main form
Replies: 2
Views: 5547

Error occurs in onPaint of the form/chart(?)

Error occurs in: system.windows.forms.dll! System.Windows.Forms.Control.PaintWithErrorHandling(System.Windows.Forms.PaintEventArgs e = {ClipRectangle={X=234 Y=0 Width=162 Height=132}}, short layer = 2, bool disposeEventArgs = false) + 0xf0 bytes I split the groups of six charts onto different forms ...
by Michael
Tue Mar 21, 2006 10:36 pm
Forum: .NET
Topic: StackOverflowException with 31 charts on main form
Replies: 2
Views: 5547

StackOverflowException with 31 charts on main form

I have copied groups of 6 charts (once added a 7th in the set) over and over to display on the main form, totaling 31 charts. After copying and pasting the last 6 bringing the total up to 31, I get a StackOverflowException when the form is trying to redisplay after processing is complete. In other w...
by Michael
Mon Mar 20, 2006 3:55 pm
Forum: .NET
Topic: Copy chart and all data to new object
Replies: 2
Views: 5636

Thanks very much. Works like a champ.
by Michael
Thu Mar 16, 2006 7:09 pm
Forum: .NET
Topic: Copy chart and all data to new object
Replies: 2
Views: 5636

Copy chart and all data to new object

HI, I am working a large app with a ton of tchart objects on the main form. I am not allowing the main form to be sizeable at the moment. This results in small charts with no good way to zoom or see more detail. Instead, so that user can see more detail, they will dblclick a chart and a new form wil...
by Michael
Wed Feb 04, 2004 9:43 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Marc,

THANK YOU!!!!!!! :D

I'll be awaiting the new release as this is a little sluggish for the larger charts. This week?

Thanks again!!!!
Michael
by Michael
Thu Jan 15, 2004 5:53 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Chris, Yes, my sample data has a 4-second periodicity. I may be displaying as many as 12 series over an 8 hour period in 16 separate forms (charts) in one instance of the program. I am doing multiple dynamic chart creation for any time-based data source. I have enjoyed working with Steema support ov...
by Michael
Fri Jan 09, 2004 3:49 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Chris, That works but gets me back to where I was before.... In C, date values can be one very long integer. In VB they are doubles where the integer portion indicates the date, the decimal portion indicates the time of day... like.... ?date.FromOADate(e.XValue) #12/30/2003 11:26:03 PM# ?e.XValue 37...
by Michael
Wed Dec 31, 2003 3:58 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

In an effort further things along I converted the sample to VB, I'm much more at ease there.... Here's my sample code that does not work. Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load TChart1.Aspect.View3D = False Line1.FillSampleValues(8000) Line1.X...
by Michael
Wed Dec 31, 2003 2:43 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Excellent, that was it and it now works but it is not what I'm looking for. What I am trying to get is the assoc. Y values for each series from the position of the cursortool without the cursortool being tied to a series. Every x value should a corresponding (or nearest) value in every series. I can...
by Michael
Mon Dec 29, 2003 3:06 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Hi, Thanks for the reply. I created a new C# project, cut and pasted the code sample provided and nothing happens to label1. I set a break in cursorTool1_Change in the if statement. It is never executed. I am not a C# programmer so I could have omitted something in the creation of the project. Form1...
by Michael
Fri Dec 19, 2003 9:05 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Is this support?

This issue has been going on longer than a month. If this is still under discussion or having to go back to R&D I'd like to know. If no one is looking at this issue still, please advise.
by Michael
Thu Dec 04, 2003 4:02 pm
Forum: .NET
Topic: Cursortool tied to multiple series
Replies: 14
Views: 34348

Cursortool tied to multiple series

Hi, Hopefully this is the correct place to post this now... When we last "spoke" I received the following sample to try to tie a cursortool to multiple series: private void cursorTool1_Change(object sender, Steema.TeeChart.Tools.CursorChangeEventArgs e) { int xValIndex = line1.XValues.IndexOf(Math.R...