Search found 9526 matches

by Yeray
Tue Mar 03, 2009 11:14 am
Forum: .NET
Topic: Drawing an arrow at the end of a line using Graphics3D
Replies: 5
Views: 9666

Hi Kevin, Here you have an example of how you could draw a thin line with a big head: public partial class Form1 : Form { bool DrawLine; Point headStartPoint, fromPoint, toPoint; public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { chartController1.Chart = tC...
by Yeray
Tue Mar 03, 2009 8:29 am
Forum: ActiveX
Topic: Move annotation
Replies: 2
Views: 6197

Hi spol, Here you have a fast example of how you could do this: Dim MoveAnnotation As Boolean Private Sub Form_Load() TChart1.Tools.Add tcAnnotate TChart1.Tools.Items(0).asAnnotation.Text = "My annotation tool" End Sub Private Sub TChart1_OnMouseDown(ByVal Button As TeeChart.EMouseButton, ByVal Shif...
by Yeray
Mon Mar 02, 2009 3:54 pm
Forum: VCL
Topic: Adjust margins for PrintProportional
Replies: 4
Views: 4646

Hi Manfred,

Thanks for your code, we'll consider if it's a good solution for the general problem.
by Yeray
Mon Mar 02, 2009 3:49 pm
Forum: VCL
Topic: problem with axis labeling and grid
Replies: 5
Views: 5557

Hi Heinz, I've tried to draw a chart similar to your and tried to reproduce your problem but I couldn't. Could you try this code and see if you could reproduce the problem? uses series, teestore; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Chart1.Color := clWhite; Chart1.View...
by Yeray
Mon Mar 02, 2009 3:02 pm
Forum: VCL
Topic: Extra legend tool position
Replies: 11
Views: 12570

Hi stsl, As OnGetLegendRect is executed for all the legends, you could get the biggest there doing something like this: procedure TForm1.Chart1GetLegendRect(Sender: TCustomChart; var Rect: TRect); begin if ((Rect.Right - Rect.Left) > MaxLegendWidth) then MaxLegendWidth := Rect.Right - Rect.Left; Rec...
by Yeray
Mon Mar 02, 2009 2:29 pm
Forum: .NET
Topic: show selected bar on gantt chart
Replies: 12
Views: 13979

Hi Pujol,

I'm happy to see you solved it!
by Yeray
Mon Mar 02, 2009 2:21 pm
Forum: VCL
Topic: installing v8 over v4
Replies: 55
Views: 42324

Hi Roy,

Could you try to verify that TeeChart v8 paths are on the top of your IDE's search and library path lists?
by Yeray
Mon Mar 02, 2009 2:16 pm
Forum: VCL
Topic: Adjust margins for PrintProportional
Replies: 4
Views: 4646

Hi Manfred, Yes, the printproportional property could force the chart to be proportional, so that when the user changes one of the margins, the other is would be set automatically. I've added it to the wish list to be implemented in further releases (TV52013915). In the meanwhile you could control t...
by Yeray
Mon Mar 02, 2009 12:37 pm
Forum: VCL
Topic: Legend bottom
Replies: 2
Views: 3968

Hi Calou,

Could you try this code to obtain the legend's height?

Code: Select all

Chart1.Legend.RectLegend.Bottom - Chart1.Legend.RectLegend.Top
by Yeray
Mon Mar 02, 2009 12:19 pm
Forum: ActiveX
Topic: Canvas member ceases to exist on Export
Replies: 4
Views: 6244

Hi Bruce, Thanks for the explanation but we still aren't able to reproduce your problem so, please, could you send us a simple example project we can run "as-is" to reproduce the problem here? You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our uploa...
by Yeray
Mon Mar 02, 2009 12:14 pm
Forum: ActiveX
Topic: Displaying Chinese characters at design time
Replies: 3
Views: 5372

Hi loulblades, You probably need the multilanguage + unicode version. Note that the unicode version allows you to view unicode text at runtime using methods like CodeUTF8String, but the multilanguage version is the one that allows you to see the editors with the language you choose. Could you please...
by Yeray
Mon Mar 02, 2009 12:00 pm
Forum: VCL
Topic: V8.04 out of system resources
Replies: 3
Views: 4385

Hi ahab, I can reproduce your problem when I execute your application but after recompiling it, it seems to work fine. So that makes me think that you could have some old TeeChart paths in your IDE's search and/or library paths. Could you verify these lists and remove the remaining references to the...
by Yeray
Mon Mar 02, 2009 11:29 am
Forum: VCL
Topic: DBChart org.Chart nodes overlap and hide node
Replies: 4
Views: 4380

Hi Lars,

I'm afraid that this is a new series and needs some improvements. And as you've noticed there is no property to get the series' width and I can't think an easy workaround to determine it.

I've added it to the wish list to be enhanced in further releases (TV52013914).
by Yeray
Mon Mar 02, 2009 11:05 am
Forum: ActiveX
Topic: Back Image Custom Position
Replies: 3
Views: 6867

Hi nbp,

Yes, these properties are available from TeeChart v8. If you want to load an image in v7 I think you'll have to use TChart1.Canvas.Draw method at OnBeforeDrawChart event.
by Yeray
Fri Feb 27, 2009 2:45 pm
Forum: .NET
Topic: Releases 6, 12 Feb 2009 incompatible with previous releases.
Replies: 8
Views: 10412

Hi georgez, I've tested and reproduced the problem with your ten file. Now, I'm trying to create a chart similar to yours to identify what is the property (or the combination of properties) that is causing the problem. Could you please, tell me if you see anything I could miss or could you please se...