Search found 9536 matches

by Yeray
Mon May 28, 2007 4:08 pm
Forum: VCL
Topic: TeeChartStandard + QReport 4.07Pro in C++ 2006
Replies: 19
Views: 33087

Hi Kevin,

I've sent directly to your mail account the TQRChart sources for TeeChart 7 Standard with QR4.06 for C2006 (even the package names end to C6).
Could you please try to rebuild and install the DclTQR7C6 package having installed the QR4 for C2006 ?
by Yeray
Mon May 28, 2007 9:24 am
Forum: VCL
Topic: TeeChart 7.07 + QReport 4.06 + C++Builder 5
Replies: 13
Views: 21770

We've recreated the environment you are working with and we can run your project with no errors.

So, we've attached at news://www.steema.net/steema.public.attachments newsgroup the files we used to run it.
by Yeray
Fri May 25, 2007 9:01 am
Forum: ActiveX
Topic: Marks position restoring @ various resolution
Replies: 12
Views: 29900

We've made a project where you can resize the chart (width and height), save as .tee file, load from .tee file. We coudn't reproduce the problem here so, please, test this project and feel free to modify it to obtain a project where we can see the issue. But we think you should do something similar ...
by Yeray
Tue May 22, 2007 8:32 am
Forum: ActiveX
Topic: Marks position restoring @ various resolution
Replies: 12
Views: 29900

Hi Daryl, We've made some tests using the following code and we found no differences between importing @1280x1024 and importing @800x600 a teefile from a chart exported @1280x1024: Private Sub Command1_Click() With CommonDialog1 .Filter = "TeeFile (.tee)|*.tee" .ShowSave If .FileName <> "" Then TCha...
by Yeray
Fri May 18, 2007 7:44 am
Forum: VCL
Topic: Bug in SVG generation
Replies: 7
Views: 12651

Hi ToniK, I'm afraid I can't tell you when it will be fixed for now. Please be aware at this forum for new releases announcements and what's being implemented/fixed on each release. Also note that since I'm working with v8 beta, I'm not sure if you need to include the same characters than me in your...
by Yeray
Wed May 16, 2007 8:43 am
Forum: VCL
Topic: Bug in SVG generation
Replies: 7
Views: 12651

Hi ToniK, Yes, those are two bugs in our wish-list. I cannot think in a workaround for the gradient bug, but for special characters you can check the text before it's written to svg stream and replace literal chars like <, > %, &,... with their ascii char code. You can use a method like the followin...
by Yeray
Mon May 14, 2007 9:31 am
Forum: VCL
Topic: TCursortool.Yvalue
Replies: 3
Views: 8423

If you want the difference between the YValues from Cursor Tools associated to different series (associated to different axes) you can simply calculate it but that'll be a difference between values from different scales. You can also calculate the YValue of a cursor tool for another axis (not associ...
by Yeray
Fri May 11, 2007 8:50 am
Forum: VCL
Topic: Placing shapes between custom axes
Replies: 1
Views: 5920

Hi Bill,

In this post I show you a complete example using TRectangleTool.
by Yeray
Fri May 11, 2007 8:42 am
Forum: VCL
Topic: TColorLineTool glitch
Replies: 6
Views: 14098

Hi Bill, I achieved what you requested working with: -StartPosition and EndPosition percents from Custom axes. -Chart1.CustomAxes.Items .CalcPosPoint(Chart1.CustomAxes.Items .IEndPos) and IStartPos pixels from Custom Axes. -Value pixels from Color Line Tools. -Left, Width, Top, Height pixels from Re...
by Yeray
Wed May 09, 2007 8:12 am
Forum: VCL
Topic: TColorLineTool glitch
Replies: 6
Views: 14098

Hi Bill, I'm sorry but I'm not sure to understand what exactly you need. Why have you moved the Lines creation to OnAfterDraw event? You want to have always a line at the top of the chart and anotherone at the bottom? I've modified your new OnAfterDraw event to achieve it and it remains: procedure T...
by Yeray
Tue May 08, 2007 10:30 am
Forum: VCL
Topic: TColorLineTool glitch
Replies: 6
Views: 14098

Hi Bill, The problem is that when you have your axis maximum set to auto (Chart1.Axes.Left.AutomaticMaximum is true) the ChartRect is recalculated to fit the marks (if they're visible) but Chart1.Axes.Left.Maximum is not changed. So to draw your line at the top of the ChartRect you should replace th...
by Yeray
Fri May 04, 2007 9:35 am
Forum: VCL
Topic: Custom vertical axis and LabelsSize
Replies: 4
Views: 15164

Hi Bill, 1) The code above was thought for having one Custom Axis per Series and avoid overlapping. 2) If you want to add a title to each Custom Axis you should increment the axis separation setting higher extraPos and extraMargin (at PlaceAxes method). Following values work for me: extraPos := 32 a...
by Yeray
Thu May 03, 2007 9:00 am
Forum: VCL
Topic: Custom vertical axis and LabelsSize
Replies: 4
Views: 15164

Please, add this 3 lines to the TForm1.FormCreate to see the chart better.

Code: Select all

Chart1.View3D := false;
Chart1.Title.Visible := false;
Chart1.Legend.Alignment := laBottom;
by Yeray
Thu May 03, 2007 8:44 am
Forum: VCL
Topic: Custom vertical axis and LabelsSize
Replies: 4
Views: 15164

Hi Bill, I've made a project for a customer who requested something similar to you. Here's the code: procedure TForm1.FormCreate(Sender: TObject); var i: Integer; const nSeries = 6; begin ComboBox1.Items.Clear; ComboBox2.Items.Clear; for i := 0 to nSeries-1 do begin Chart1.AddSeries(TLineSeries); Ch...
by Yeray
Mon Apr 30, 2007 9:04 am
Forum: VCL
Topic: Creating a right custom vertical axis
Replies: 2
Views: 7071

Hi Bill,

You should do the following:

Code: Select all

Chart1.CustomAxes.Items[0].OtherSide := true;