Search found 9545 matches

by Yeray
Tue Jul 29, 2008 7:32 am
Forum: VCL
Topic: Using Teechart 8.02 in quickreport5 (Delphi 2007)
Replies: 12
Views: 10831

Hi yam49,

I'm happy to see that!
by Yeray
Mon Jul 28, 2008 8:58 am
Forum: VCL
Topic: quadrant labels
Replies: 4
Views: 6314

Hi mc,

I think that annotation tool is what probably you are looking for. You can customize the text, color, position,...
by Yeray
Mon Jul 28, 2008 8:50 am
Forum: VCL
Topic: Using Teechart 8.02 in quickreport5 (Delphi 2007)
Replies: 12
Views: 10831

Hi yam49,

Could you try to follow the QuickReport instructions here?

And note that in this topic title you talk about QuickReport v5 and the packages you are mentioning are from QuickReport v4 (xxxQR4xxx.dpk and DclxxxQR4xxx.dpk).
by Yeray
Mon Jul 28, 2008 8:27 am
Forum: ActiveX
Topic: Customizing Bottom Axis Labels
Replies: 1
Views: 3777

Hi marathoner,

You could use custom labels or OnGetAxisLabel event to customize your axes' labels.
by Yeray
Mon Jul 28, 2008 8:21 am
Forum: ActiveX
Topic: Change individual candle bar color
Replies: 1
Views: 4758

Hi David, I've tried what you say, and I've been able to set open-close colors, up-down color and even border width and color with TeeChart AX v6.0.1.1. These are customizations for the whole series and not for individual candles, but you can use OnGetPointerStyle event to apply each setup to differ...
by Yeray
Thu Jul 24, 2008 9:38 am
Forum: ActiveX
Topic: Fixing one side of the zoom rectangle?
Replies: 4
Views: 6523

Hi Phil, Then you should draw your custom Rectangle while the mouse holds down and apply a custom zoom at OnMouseUp event. Something as follows: Dim EndX, EndY As Double Dim Go As Boolean Private Sub Form_Load() TChart1.Aspect.View3D = False TChart1.AddSeries scPoint TChart1.Series(0).FillSampleValu...
by Yeray
Thu Jul 24, 2008 8:20 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21098

Hi Colin,

1. Scrollbars should work with DateTime axis. Have you received this example from Narcis?

2. So, you are planning to add a slider to do something similar as the Zoom slider does in the Design Time editor?
by Yeray
Wed Jul 23, 2008 9:01 am
Forum: ActiveX
Topic: Fixing one side of the zoom rectangle?
Replies: 4
Views: 6523

Hi Phil, If we understood well, you are trying to do something as following: Dim MinLeft As Double Private Sub Form_Load() TChart1.Aspect.View3D = False TChart1.AddSeries scPoint TChart1.Series(0).FillSampleValues 25 TChart1.Environment.InternalRepaint MinLeft = TChart1.Axis.Left.Minimum MinBottom =...
by Yeray
Wed Jul 23, 2008 8:40 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21098

Hi Colin, I've added you request to the wish list to be considered those enhancements in future releases (TV52013268). Meanwhile, consider using buttons as I told you before. Or even you could use an Arrow series with only two arrows. This option would be harder to implement as you will need to reca...
by Yeray
Wed Jul 23, 2008 8:08 am
Forum: ActiveX
Topic: Magnifying Glass icon for zooming in?
Replies: 5
Views: 7067

Hi Phil, We are not sure to understand what are you exactly trying to do here. Please, take a look at the Tutorial 11 - Zoom and Scroll and at the demo What's New/New Chart Tools/Magnify . If you still have problems with it, please, feel free to explain it. You will find both tutorials and demos at ...
by Yeray
Tue Jul 22, 2008 8:29 am
Forum: VCL
Topic: word wrap on axis titles?
Replies: 1
Views: 4284

Hi Ed, I'm afraid there is not an automatic option to do that. However, you could calculate the length of the title string in pixels, compare with the axis size, and add your "end of line" manually. Here is how your method could start: procedure TForm1.WordWrap; begin //Bottom Axis Canvas.Font.Size ...
by Yeray
Mon Jul 21, 2008 8:14 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21098

Hi Colin, Sorry, but I do not understand what you mean about using little buttons. How do I put little buttons on the chart axis? I mean a Standard TButton. Not any TChart tool. For example, the button which would do something similar as the left arrow could be: procedure TForm1.Button1Click(Sender:...
by Yeray
Mon Jul 21, 2008 7:43 am
Forum: VCL
Topic: problem to install teechart
Replies: 20
Views: 19119

Hola José,

Pues nos alegramos que lo hayas solucionado.
by Yeray
Thu Jul 17, 2008 9:54 am
Forum: ActiveX
Topic: Surface Smoothing
Replies: 4
Views: 6572

Hi bkaff,

Yes, you are right. It seems to be a bug from TeeChart 7.08 VCL and up. And that has been propagated to ActiveX from 7.0.0.7 and up.
We've added it to the wish list to be fixed in future releases (TV52013251).
by Yeray
Thu Jul 17, 2008 8:38 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21098

Hi Colin, Here I found a little problem. If you want two arrows superposed, you may want to give preference to the little one. To do this, the little arrow must be above the big one at the tools list. But then, you'll have the big arrow painted above the little one. So you'll be able to click the li...