Search found 73 matches
- Fri Feb 02, 2007 4:33 pm
- Forum: VCL
- Topic: Get Index of Cursor at unknown X or Y Value?
- Replies: 2
- Views: 5596
Hi Tom, What about doing something as I suggested here in TCursorTool's OnChange event? OnChange's ValueIndex parameter only has valid values when the cursor is set to snap. Yeah I used this code below for the on change event in the cursor: curpos: Integer; curpos := Chart1.Series[seriesidx].XValue...
- Fri Feb 02, 2007 3:59 pm
- Forum: VCL
- Topic: Get Index of Cursor at unknown X or Y Value?
- Replies: 2
- Views: 5596
Get Index of Cursor at unknown X or Y Value?
I need to get the index of the position of a cursor at an unknown x or y value. I can get the rest and I seen a GetCursorValueIndex function with the Series Heirarchy and tried it but it didnt return what I needed.
Any ideas?
Thanks,
Tom
Any ideas?
Thanks,
Tom
- Thu Feb 01, 2007 12:37 pm
- Forum: VCL
- Topic: Moving Cursor with StringGrid Entry...
- Replies: 3
- Views: 6953
- Thu Feb 01, 2007 11:49 am
- Forum: VCL
- Topic: Moving Cursor with StringGrid Entry...
- Replies: 3
- Views: 6953
Moving Cursor with StringGrid Entry...
Ok, this should be neat. I basically want to move my cursor to the point with which an entry of a number in a cell has occurred. I have all the events in place. Do I set the YValue of the cursor to move or the XValue? Id assume the XValue but how do I calculate the position. And of course the value ...
- Wed Jan 31, 2007 12:27 pm
- Forum: VCL
- Topic: Move Cursor Tool with arrow keys
- Replies: 4
- Views: 10197
- Wed Jan 31, 2007 12:06 pm
- Forum: VCL
- Topic: Move Cursor Tool with arrow keys
- Replies: 4
- Views: 10197
- Wed Jan 31, 2007 1:19 am
- Forum: VCL
- Topic: Move Cursor Tool with arrow keys
- Replies: 4
- Views: 10197
Move Cursor Tool with arrow keys
I have 2 cursors in my chart.
How can I use the left and right arrow keys to move the cursor selected?
I seen the demo doing it programmically, but I would like to do it with the keyboard.
Thanks,
Tom
How can I use the left and right arrow keys to move the cursor selected?
I seen the demo doing it programmically, but I would like to do it with the keyboard.
Thanks,
Tom
- Tue Jan 30, 2007 2:04 pm
- Forum: VCL
- Topic: Chart ListBox
- Replies: 1
- Views: 4409
Chart ListBox
The ChartListbox comes in handy, however there seems to be no way to see what item is checked or not, is this true or some obscure way I am not seeing?
I need to be able to iterate through the thing to see whats checked, not currently selected.
Any ideas?
Thanks,
Tom
I need to be able to iterate through the thing to see whats checked, not currently selected.
Any ideas?
Thanks,
Tom
- Wed Jan 24, 2007 3:43 pm
- Forum: VCL
- Topic: Changing Series Color
- Replies: 3
- Views: 6426
- Wed Jan 24, 2007 11:50 am
- Forum: VCL
- Topic: Changing Series Color
- Replies: 3
- Views: 6426
Changing Series Color
I seem to be having some trouble changing the color of a series in code. I am dynamically setting up series and just do a color scheme like this: chart1.Series[mycol].Color := GetDefaultColor(mycol); if chart1.Series[mycol].Color = 16777215 then chart1.Series[mycol].Color := 0; However if the color ...
- Wed Jan 24, 2007 11:45 am
- Forum: VCL
- Topic: Make TCursorTool perform OnChange Event?
- Replies: 3
- Views: 6186
- Tue Jan 23, 2007 1:09 pm
- Forum: VCL
- Topic: Make TCursorTool perform OnChange Event?
- Replies: 3
- Views: 6186
Make TCursorTool perform OnChange Event?
Is there a possible way to execute the OnChange event of the TCursor Tool from else where in my code?
I am updating labels showing the output this change and as doing the updat would like that event to execute WITHOUT actually moving a cursor.
Is this possible?
Thanks,
Tom
I am updating labels showing the output this change and as doing the updat would like that event to execute WITHOUT actually moving a cursor.
Is this possible?
Thanks,
Tom
- Fri Dec 22, 2006 3:23 pm
- Forum: VCL
- Topic: Problems with TeePreviewPanel
- Replies: 15
- Views: 26693
You need to set the width/height of your charts then. Say if you have 3 charts that need to fit on the panel then loop each chart and change its height/width to match the total height/width of the panel. divide 3 by the width of the panel and that should give you the width for each chart, same with ...
- Fri Dec 22, 2006 12:16 pm
- Forum: VCL
- Topic: Problems with TeePreviewPanel
- Replies: 15
- Views: 26693
Re: Problems with TeePreviewPanel
Hi Tom, Thank you for the answer at my first question. Now, I still need an answer at my question 2: Question 2. In the metafile example provided by Josep Lluis Jorge (see the posts above), if I print it on paper, how could I diminish the extra space around the charts, in order to maximize the info...
- Thu Dec 21, 2006 6:39 pm
- Forum: VCL
- Topic: Problems with TeePreviewPanel
- Replies: 15
- Views: 26693
Re: Problems with TeePreviewPanel
Question 1. Could you tell me if you have an example of how could I create a metafile for each Chart and panit it on the Printer Canvas? Here's an example that I use to do just this: procedure TForm1.AdvToolBarButton14Click(Sender: TObject); Var m: TMetafile; c: TMetafileCanvas; topc,botc: Integer;...