Search found 9527 matches

by Yeray
Fri Jul 11, 2008 8:51 am
Forum: VCL
Topic: TeeChart Pro 8.02 and Quickreport 5
Replies: 9
Views: 9531

Hi Gus,

It should be fixed for the next maintenance release. I have sent you the URL to download the v8.03 Release Candidate installer for Delphi 2007.
by Yeray
Fri Jul 11, 2008 8:37 am
Forum: ActiveX
Topic: Visibility of Point3D series.
Replies: 3
Views: 6423

Hi LVL,

I'm afraid that the exactly property you wish doesn't exist. But activating OpenGL could be the easiest solution for your request.

Code: Select all

TChart1.Aspect.OpenGL.Active = True
by Yeray
Fri Jul 11, 2008 8:09 am
Forum: ActiveX
Topic: Surface Smoothing
Replies: 4
Views: 6559

Hi , I'm afraid I can't see any difference between both demos you mention. I've also tested the following code with both v7 and v8 and the result seems to be exactly the same. Private Sub Form_Load() TChart1.AddSeries scSurface TChart1.Series(0).FillSampleValues 5 TChart1.Series(0).asSurface.SmoothG...
by Yeray
Thu Jul 10, 2008 8:24 am
Forum: ActiveX
Topic: Visibility of Point3D series.
Replies: 3
Views: 6423

Hi LVL, Yes, you can hide the points you wish, knowing their indexes: Private Sub TChart1_OnGetSeriesPointerStyle(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, AStyle As TeeChart.EPointerStyle) If SeriesIndex = 1 Then ' supposing that your point series' index is 1 Select Case ValueIndex Case ...
by Yeray
Wed Jul 09, 2008 8:47 am
Forum: ActiveX
Topic: Problem when unloading forms containing TChart control
Replies: 4
Views: 6500

Hi Raymond and Ross,

Yes, you are right. Something strange is happening here. I've added it to the wish list to be investigated asap. (TA05013203)
by Yeray
Wed Jul 09, 2008 7:53 am
Forum: VCL
Topic: Event line in a TBarSeries
Replies: 3
Views: 6269

Hi Ed,

As you can see in the method header, you have the ValueIndex.

Code: Select all

procedure Series1Click(Sender: TChartSeries; ValueIndex: Integer;
      Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
by Yeray
Tue Jul 08, 2008 8:16 am
Forum: VCL
Topic: Event line in a TBarSeries
Replies: 3
Views: 6269

Hi TestAlways, I've achieved something really similar to your picture with the following code. In this example, Series1 is the BarSeries and Series2 is a LineSeries. procedure TForm1.FormCreate(Sender: TObject); var max: double; begin Chart1.View3D := False; Series1.FillSampleValues(15); Chart1.Marg...
by Yeray
Fri Jul 04, 2008 8:53 am
Forum: ActiveX
Topic: SurfaceNearestTool
Replies: 7
Views: 10725

Hi LVL, I've tested the tool as you suggest and it seems to work fine for me here. Could you tell me if I'm missing any important step to reproduce it? Private Sub Command1_Click() TeeEditor1.ShowEditor End Sub Private Sub Form_Load() Dim x, z As Integer TeeCommander1.Chart = TChart1 TeeEditor1.Char...
by Yeray
Thu Jul 03, 2008 9:32 am
Forum: VCL
Topic: Draw Axis without a series:?:
Replies: 3
Views: 5205

Hi Scott, Here is how you could do it. The axes need a series associated to them to be displayed but the series doesn't need to have any value because you can use SetMinMax method. Note that you can remove the series from the legend with ShowInLegend property. And also note that this code is in delp...
by Yeray
Thu Jul 03, 2008 8:35 am
Forum: ActiveX
Topic: SurfaceNearestTool
Replies: 7
Views: 10725

Hi LVL, Could you explain us what is your exact problem so we can reproduce it here? Or, you could also send us a simple example project we can run "as-is" to reproduce the problem here too. You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload ...
by Yeray
Thu Jul 03, 2008 8:05 am
Forum: ActiveX
Topic: Full Rotation
Replies: 1
Views: 4418

Hi LVL,

In this topic you can see an example of how you could achieve similar results as teecommander, using simple buttons:
by Yeray
Wed Jul 02, 2008 8:06 am
Forum: ActiveX
Topic: TeeChart 8 download?
Replies: 1
Views: 4461

Hi Amol, Since you are a v7 customer, you'll have access to download all the maintenance releases for v7. But if you want access to v8 download area, you'll need a v8 license. I recommend you to try the free evaluation version and test it before purchasing an upgrade license . And please, feel free ...
by Yeray
Tue Jul 01, 2008 9:50 am
Forum: VCL
Topic: How to draw an arrow on top of a point
Replies: 4
Views: 8666

Hi Mariano,

Yes you are right. We could reproduce it with latest v7 too.

As you say, the easiest workaround is forcing the property to true in OnCreate.

Finally, note that we tested it with v8 too and it works fine with it.
by Yeray
Tue Jul 01, 2008 7:42 am
Forum: VCL
Topic: Legend.NumRows and Legend.NumCols
Replies: 1
Views: 3615

Hi Richard, CustomPosition (true/false) is used to draw the legend in the position indicated for Left and Top properties or in the predefined positions indicated in Alignment property (left, top, right, bottom). That shouldn't have any effect to the properties NumRows and NumCols. Note that having, ...
by Yeray
Mon Jun 30, 2008 8:44 am
Forum: ActiveX
Topic: Bottom axis labels
Replies: 1
Views: 4209

Hi Rossmc, I think that in this demo there is achieved something very similar than what you are looking for: Private Sub Form_Load() With TChart1.Series(0) .Clear .Add 123, "First", clTeeColor .Add 456, "Second", clTeeColor .Add 321, "Third", clTeeColor .Add 234, "Last", clTeeColor End With End Sub ...