Search found 9527 matches

by Yeray
Tue Jun 10, 2008 8:52 am
Forum: VCL
Topic: TCursorTool - Click Tolerance and movement
Replies: 1
Views: 5162

Hi Dominik, I suggest you to force the ClickTolerance of the non clicked cursor to 0 when dragging. And restore the default (3) when finish dragging. procedure TForm1.Chart1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if ChartTool1.Clicked(X,Y) = ccBoth ...
by Yeray
Fri Jun 06, 2008 8:52 am
Forum: VCL
Topic: GANTT chart automatic reposition (TeeChart Pro 6.01)
Replies: 5
Views: 6430

Hi Jose, 1) I think you should use OnDragBar and OnResizeBar events from your Gantt Tool to explore the whole Gantt series and modify start or end values when they are superposed. I think you should do something like following. But note that it's not completed, but maybe it's a good start. procedure...
by Yeray
Thu Jun 05, 2008 9:55 am
Forum: VCL
Topic: wrong printing with Region Tool
Replies: 2
Views: 6656

Hi Dominik,

We couldn't reproduce it with v8.03. We've just sent a link to your registered mail account to download latest sources. So, please, could try this with them?
by Yeray
Thu Jun 05, 2008 8:57 am
Forum: VCL
Topic: Used Series is not stored for tools?
Replies: 5
Views: 10191

Hi Dominik,

I'm afraid development of v8.03 has already been closed. We are currently testing the installers and fixing any issue they may have to make the version public ASAP.
by Yeray
Thu Jun 05, 2008 8:36 am
Forum: VCL
Topic: Used Series is not stored for tools?
Replies: 5
Views: 10191

Hi Dominik,

You are right. It seems that Region series link is not saved in the tee file when the series is added to the chart at runtime.

I've added it to the wish list to be fixed in future releases (TV52013106). And I'm afraid I can't think on any satisfying workaround for this by the moment.
by Yeray
Wed Jun 04, 2008 9:19 am
Forum: VCL
Topic: Used Series is not stored for tools?
Replies: 5
Views: 10191

Hi Dominik, Could you try the following simple test? This works fine for me using latest internal steema sources. Note that, at design time, I've added two charts and an ImportChart component. Finally, I've added a line series and a series region tool to the chart1. uses TeeStore; procedure TForm1.F...
by Yeray
Wed Jun 04, 2008 8:27 am
Forum: VCL
Topic: 2 column legend
Replies: 2
Views: 3947

Hi TSmith,

Probably the easiest solution for you could be the Legend ScrollBar Tool. There's a demo with the same name at "New Features demo".
by Yeray
Thu May 29, 2008 8:29 am
Forum: ActiveX
Topic: chart 3D - coloring
Replies: 3
Views: 5529

Hi adenin, We think that probably you should work with a color range, one of predefined palettes or with a custom palette. With this code you could see a simple color range example: Private Sub Form_Load() Dim i, j As Integer TChart1.AddSeries scSurface With TChart1.Series(0).asSurface .IrregularGri...
by Yeray
Wed May 28, 2008 10:17 am
Forum: ActiveX
Topic: 3D chart - covered header
Replies: 2
Views: 4760

Hi adenin,

I think that the best here could be using an annotation tool. It will be displayed in front of walls and series.

Another solution could be changing your chart margins, but then your chart will look smaller.
by Yeray
Wed May 28, 2008 8:59 am
Forum: ActiveX
Topic: Clickonce isolation problem
Replies: 3
Views: 6280

Hi Tom,

Thanks for your project and feedback. I've been able to run your application and reproduce the 65 warnings.

I've added this issue to the wish list to be investigated for future releases (TA05013078).

By the meanwhile, I'm glad to see that you and your customer are at least satisfied.
by Yeray
Fri May 23, 2008 8:56 am
Forum: ActiveX
Topic: Clickonce isolation problem
Replies: 3
Views: 6280

Hi Tom, I'm afraid we are not too much familiarized with isolated and clickonce features but, after some investigation through the web, and taking in consideration what's explained here and here , we made a vb project in a vista machine with visual studio 2008 and worked fine in another vista machin...
by Yeray
Wed May 21, 2008 7:54 am
Forum: VCL
Topic: Unhappy out of box experience.
Replies: 4
Views: 5169

Hi JeffS,

This seems really similar to this or this, for example.

Please check that the search path and the packages installed are the correct ones.
by Yeray
Tue May 20, 2008 10:32 am
Forum: VCL
Topic: How to clip drawn points in a chart ?
Replies: 2
Views: 5846

Hi Marck, Firs of all I'd like to say that this should be easier with teechart v8 since there is the SubChart tool and with it you could work as with 4 different charts in the same chart. So these separations should work by default as each chart would perform its own clipping. In the following examp...
by Yeray
Tue May 20, 2008 7:55 am
Forum: ActiveX
Topic: Vbscript with Teechart 7
Replies: 2
Views: 4454

Hi nthan, Which TeeChart version are you exactly using? Please, ensure that you are running the newest AX version available at the web (v7.0.1.4). This code works fine for me here with this version: Private Sub TChart1_OnCursorToolChange(ByVal Tool As Long, ByVal X As Long, ByVal Y As Long, ByVal XV...
by Yeray
Thu May 15, 2008 11:12 am
Forum: VCL
Topic: CursorTool Question
Replies: 5
Views: 7422

Hi ChZiegelt, This property should work if you are using TeeChart v8 and TeeTools unit is included in your project. Nevertheless, since we are going to deactivate the cursor tools, you could simply delete these lines from FormCreate: ChartTool1.ScopeStyle := scsEmpty; ChartTool1.Style := cssScopeOnl...