Search found 9507 matches

by Yeray
Thu Feb 26, 2009 3:58 pm
Forum: VCL
Topic: Pie Series Options tab is blank in the editor
Replies: 3
Views: 5579

Hi Jørgen,

Now I could reproduce the problem and I've added it to the wish list to be fixed as soon as possible (TV52013899).

It seems that this problem only happens for pie series and the editor's tree mode.
by Yeray
Thu Feb 26, 2009 10:27 am
Forum: .NET
Topic: show selected bar on gantt chart
Replies: 12
Views: 13973

Hi Pujol, The gantts are shown taking in consideration their order in the series' valuelist. So, to show a gantt hided below another, you could swap the gantt for the first one. Here there is a method you could use: private void GantToFront(int ValueIndex) { double tmp = gantt1.StartValues[0]; gantt...
by Yeray
Wed Feb 25, 2009 3:16 pm
Forum: ActiveX
Topic: Canvas member ceases to exist on Export
Replies: 4
Views: 6243

Hi Bruce,

I haven't been able to reproduce the problem here. At the same time, I'd like to apologize because VFP isn't very familiar to us. So, could you please try to explain the exact steps to reproduce it here?

Thanks in advance.
by Yeray
Wed Feb 25, 2009 12:23 pm
Forum: .NET
Topic: Legend-click event
Replies: 1
Views: 3668

Hi asupriya, The color is stored at LinePen.Color. The following code tests it. If ((Index <> -1) And (MyChart.Series.Count >= Index)) Then Series = CType(MyChart.Series(Index), Steema.TeeChart.Styles.FastLine) Steema.TeeChart.Editors.PenEditor.Edit(Series.LinePen) TChart1.Header.Font.Color = Series...
by Yeray
Wed Feb 25, 2009 12:08 pm
Forum: .NET
Topic: CursorTool intersection with multiple series
Replies: 8
Views: 12878

Hi asupriya, To customize your text box to show I recommend you to use an annotation tool instead of mark tips tool. Here there is an example of how you could show some info of the nearest point when the cursor tool is moved. If I understand well, you are trying to do something similar to this. publ...
by Yeray
Wed Feb 25, 2009 10:58 am
Forum: VCL
Topic: THorizBarSeries - scroll bar bug
Replies: 9
Views: 11560

Hi marder, Could you please verify that your TScrollBar has a is getting position values (ScrollPos) in your series' range? I mean, the scrollbar.min has the same value of your series Y min and the scrollbar.max has your series' max Y value (-PointsShown). If everything seems ok, could you try to ma...
by Yeray
Wed Feb 25, 2009 10:02 am
Forum: VCL
Topic: Rendering WMF images
Replies: 1
Views: 3850

Hi Edward,

Yes you are right. It seems that shadow's transparency of the annotation tool isn't exported well. Have you noticed this with any other shadow? I've added it to the wish list to be fixed in further releases (TV52013895).
by Yeray
Wed Feb 25, 2009 9:08 am
Forum: VCL
Topic: Returning the X axis label when moving mouse
Replies: 3
Views: 7020

Hi Phineas, Excuse me. I think I didn't understand well your request. To retrieve the corresponding value in bottom axis for an x point, you could do as follows: procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin caption := floattostr(Chart1.Axes.Bottom.CalcP...
by Yeray
Wed Feb 25, 2009 8:39 am
Forum: VCL
Topic: Duplicate a chart
Replies: 2
Views: 4687

Hi Calou, I'm afraid there isn't a single function to do this. The simplest way probably is : - Create your new chart at runtime - Save your old chart in a tee file - Import the tee file to the new chart - Remove all series or clear the data of the new chart - Verify and copy the original's chart pr...
by Yeray
Tue Feb 24, 2009 3:37 pm
Forum: VCL
Topic: MakeIsoAxis
Replies: 5
Views: 6046

Hi Jerry, I've tested this with several windows and screens and now I think I've found the problem. It seems that having a comfortable proportional resolution the demo apparently works fine (or the error is small) and when the resolution is "strange" the demo doesn't return square axis. I've added t...
by Yeray
Tue Feb 24, 2009 2:24 pm
Forum: VCL
Topic: Not getting all the Data points to show on the Graph
Replies: 2
Views: 3229

Hi lkuderick,

I'm happy to see that you found your problem.
by Yeray
Tue Feb 24, 2009 11:12 am
Forum: VCL
Topic: Pie Series Options tab is blank in the editor
Replies: 3
Views: 5579

Hi Jørgen, I couldn't reproduce the problem here. Do you mean the demo at All Features/Chart Styles/Pie ? What TeeChart version are you using? Could you please verify that you are using the latest version available at the client area ? Can you reproduce the problem in a simple new project? If you ca...
by Yeray
Tue Feb 24, 2009 11:00 am
Forum: VCL
Topic: Extra legend tool position
Replies: 11
Views: 12566

Hi stsl,

I'm happy to see that you solved it!
by Yeray
Tue Feb 24, 2009 10:54 am
Forum: Wishes and ideas
Topic: Improvement of TSeriesBandTool
Replies: 3
Views: 29216

Hi

1) You are right. I've added the bug to the wish list to be fixed in future releases (TV52013891).

2) Thanks for the suggestion. We'll try to implement this in further releases (TV52013892)
by Yeray
Tue Feb 24, 2009 10:42 am
Forum: VCL
Topic: Returning the X axis label when moving mouse
Replies: 3
Views: 7020

Hi Phineas,

Could you take a look at this post? I think it's pretty similar than what you are looking for.