Search found 9528 matches

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 ...
by Yeray
Thu Jun 26, 2008 8:10 am
Forum: VCL
Topic: TeeChart Pro 8 Marks
Replies: 3
Views: 4511

Hi kennedyr, I've done some tests with Line, Point, Bar, Pie and Area series and font's size marks seems to work fine for me here both at design and run time. Series1.Marks.Font.Size := 15; Could you explain the steps you follow more accurately or could you send us a simple example project we can ru...
by Yeray
Wed Jun 25, 2008 10:22 am
Forum: VCL
Topic: circular gauge issues/questions with 8.02
Replies: 4
Views: 10444

Hi Volker, If tested the issues you mention... 1.1. You are right. I've added it to the bug list to be fixed in future releases. 1.2. You can do the same as in the demo at All features/Chart styles/Standard/Pie/Multiple Charts . But note that the centers won't be drawn at their correct positions as ...
by Yeray
Mon Jun 23, 2008 9:06 am
Forum: ActiveX
Topic: 3D Elevation Scaling
Replies: 1
Views: 4278

Hi LVL,

Please, take a look at this topic. I think that here we are achieving something very similar than what you are trying to do. If not, could you explain your issue more accurately?
by Yeray
Mon Jun 23, 2008 8:57 am
Forum: VCL
Topic: Drawing on Chart
Replies: 5
Views: 11602

Hi McMClark, One solution could be drawing a Shape series instead of a canvas rectangle in OnMouseUp event: var Form1: TForm1; X0, X1, Y0, Y1: Integer; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); begin X0 := -1; Y0 := -1; Chart1.Zoom.Allow := false; Chart1.View3D := false...
by Yeray
Fri Jun 20, 2008 1:17 pm
Forum: ActiveX
Topic: Making Isometric 3d grapsh
Replies: 14
Views: 25832

Hi QuijoteMX, Could you test the following code and see if it's what you are looking for? We think that the rotation problem is now solved but if you find any problem, please feel free to tell us. Option Explicit Const pi = 3.14159265358979 Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal h...
by Yeray
Fri Jun 20, 2008 8:36 am
Forum: ActiveX
Topic: Making Isometric 3d grapsh
Replies: 14
Views: 25832

Hi QuijoteMX,

Excuse us for the delay. We haven't forgotten you. I made some tests and found some problems. So, as soon as we'll find the solution we'll tell you. Please, be patient.
by Yeray
Fri Jun 20, 2008 8:26 am
Forum: VCL
Topic: MACD & ADX - 'Active := false', has no effect.
Replies: 1
Views: 4430

Hi Phineas, As you can see in MACD demo in All features/Functions/Financial , when you add the function, a Line series and a function are created. And inside the function there are two series. So you'll have to deactivate all this series. And the same happens to ADX function. An example will be more...
by Yeray
Thu Jun 19, 2008 10:43 am
Forum: ActiveX
Topic: Moving the cursor
Replies: 3
Views: 4699

Hi Anne, I've done some tests and I couldn't reproduce your problem here. I've made two tests, one with vb and one with c# under Visual Studio 2003 .NET. Both of them consisted in create a new project, add a new Chart (v6.0.1.1), add a fast line series and add a cursor tool (and fill some values to ...
by Yeray
Wed Jun 18, 2008 10:16 am
Forum: VCL
Topic: Banda entre series no se pinta bien con series en escalera
Replies: 6
Views: 8572

Hola Carles,

Parece que tienes razón porque he podido reproducir el problema tal como dices. Lo he añadido a la lista de bugs para que se arregle lo antes posible (TV52013141).

Gracias por informarnos del problema.

Salut!
by Yeray
Wed Jun 18, 2008 9:32 am
Forum: VCL
Topic: Mark tips Style
Replies: 8
Views: 11679

Hi Alex, Yes, with OnGetMarkText event, from your series, you can customize its mark text as you want: procedure TForm1.FormCreate(Sender: TObject); begin Series1.Marks.Visible := True; end; procedure TForm1.Series1GetMarkText(Sender: TChartSeries; ValueIndex: Integer; var MarkText: String); begin M...
by Yeray
Wed Jun 18, 2008 8:58 am
Forum: VCL
Topic: 2D Pie Chart SVG /XAML export is messed up
Replies: 1
Views: 3491

Hi tsiipola,

Thank you for advising us. I've reproduced it and I've added it to the wish list with high priority to be fixed asap (TV52013140).
by Yeray
Tue Jun 17, 2008 11:12 am
Forum: VCL
Topic: Bottom axis labels
Replies: 24
Views: 30825

Hi SiA, I'm not able to reproduce it here. could you try the following code? Note that there's a line series, a memo and a button added at design time. procedure TForm1.Button1Click(Sender: TObject); var i: integer; begin Memo1.Clear; for i:=0 to Chart1.Axes.Left.Items.Count-1 do begin if Chart1.Axe...
by Yeray
Tue Jun 17, 2008 10:01 am
Forum: ActiveX
Topic: Como puedo marcar en el axis derecho el valor actual
Replies: 3
Views: 5346

Hola Jordi, Creo que lo que quieres hacer es algo asi: Private Sub Form_Load() Timer1.Enabled = True TChart1.Aspect.View3D = False TChart1.AddSeries scLine TChart1.Tools.Add tcAnnotate TChart1.Series(0).asLine.Pointer.Visible = True TChart1.Series(0).VerticalAxis = aBothVertAxis TChart1.Axis.Right.P...
by Yeray
Thu Jun 12, 2008 8:18 am
Forum: ActiveX
Topic: Making Isometric 3d grapsh
Replies: 14
Views: 25832

Hi QuijoteMX, Could you try the following code? It seems to work fine here. And please, feel free to suggest any improving modification. Option Explicit Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hdc As Long, ByVal nIndex As Long) As Long Private Const HORZSIZE = 4 Private Const VERTS...