Search found 29 matches

by lilo
Tue Sep 20, 2011 10:01 am
Forum: .NET
Topic: Font Metrics
Replies: 5
Views: 8101

Re: Font Metrics

I also need to determine textheight in pixels. I am getting inconsistent results using this code: Private Sub TChart1_AfterDraw(ByVal sender As Object, ByVal g As Steema.TeeChart.Drawing.Graphics3D) Handles TChart1.AfterDraw text_hgt = g.TextHeight("Text") End Sub The result is given in some other u...
by lilo
Sun Sep 18, 2011 10:04 am
Forum: .NET
Topic: Font Metrics
Replies: 5
Views: 8101

Re: Font Metrics

The g.textwidth worked for centering and positioning text.
by lilo
Tue Sep 06, 2011 10:42 am
Forum: .NET
Topic: TeeChart.OpenGL.dll
Replies: 1
Views: 3614

TeeChart.OpenGL.dll

I installed the latest 2011 net release of Teechart. Some of the dlls included with full version I purchased in 2010 are not present in the update package. TeeChart.OpenGL.dll TeeChart.Languages.dll TeeChart.Mapping.dll TeeChart.Silverlight.dll TeeChart.ReportingServices.Designer.dll TeeChart.Video....
by lilo
Tue Sep 06, 2011 10:23 am
Forum: .NET
Topic: Gridding Library for 3D Chart
Replies: 1
Views: 3504

Gridding Library for 3D Chart

Hi,

Can you recommend gridding libraries for use with your 3D charts?
by lilo
Wed Aug 31, 2011 1:56 am
Forum: .NET
Topic: Printing Opengl Chart
Replies: 1
Views: 3351

Printing Opengl Chart

I am having some problems printing the opengl chart. Nothing will display in the print preview. I am using the following code: Sub InitOpengl() Points1.Chart.Aspect.View3D = True Points1.Chart.Walls.Visible = True Points1.Chart.Aspect.Orthogonal = False Points1.Chart.Aspect.Chart3DPercent = 100 Poin...
by lilo
Tue Aug 30, 2011 10:48 am
Forum: .NET
Topic: Calc Midpoint of chart
Replies: 3
Views: 5060

Re: Calc Midpoint of chart

This works, thank you
by lilo
Tue Aug 30, 2011 10:02 am
Forum: .NET
Topic: Resize Teechart
Replies: 2
Views: 4705

Re: Resize Teechart

Yes, it works if I declare a new opengl teechart.

openglchart= new Steema.TeeChart.Drawing.GL.TeeOpenGL(tChart1.Chart)
by lilo
Tue Aug 30, 2011 9:26 am
Forum: .NET
Topic: Calc Midpoint of chart
Replies: 3
Views: 5060

Calc Midpoint of chart

I need to calculate the x midpoint of a chart in order to plot a string. I am using: Midpoint = ((Points1.Chart.Axes.Bottom.Maximum - Points1.Chart.Axes.Bottom.Minimum) / 2) + Points1.Chart.Axes.Bottom.Minimum This works fine for a manual scale but if I set the chart scale to automatic, the calculat...
by lilo
Mon Aug 29, 2011 6:15 am
Forum: .NET
Topic: Resize Teechart
Replies: 2
Views: 4705

Resize Teechart

What is the best way to resize a teechart containing and opengl 3d canvas? If I resize the 3d opengl teechart in the form_sizechanged event the teechart crashes. Points1.Chart.Aspect.View3D = True Points1.Chart.Walls.Visible = True Points1.Chart.Aspect.Orthogonal = False Points1.Chart.Aspect.Chart3D...
by lilo
Mon Aug 29, 2011 3:50 am
Forum: .NET
Topic: Zoom 3D Chart
Replies: 3
Views: 5656

Re: Zoom 3D Chart

I was using the 2D Zoom property. This code works: Points1.Chart.Aspect.View3D = True Points1.Chart.Walls.Visible = True Points1.Chart.Aspect.Orthogonal = False Points1.Chart.Aspect.Chart3DPercent = 100 Points1.Chart.Aspect.Zoom = 50 Points1.Chart.Aspect.View3D = True Rotate1.Active = True Steema.Te...
by lilo
Mon Aug 29, 2011 3:15 am
Forum: .NET
Topic: Zoom 3D Chart
Replies: 3
Views: 5656

Re: Zoom 3D Chart

Any value I use for zoompercent does not seem to work in code.
by lilo
Mon Aug 29, 2011 2:12 am
Forum: .NET
Topic: Rotate Labels in 3D Graph
Replies: 3
Views: 5467

Re: Rotate Labels in 3D Graph

Yes, this works, thanks.
by lilo
Mon Aug 29, 2011 2:11 am
Forum: .NET
Topic: Zoom 3D Chart
Replies: 3
Views: 5656

Zoom 3D Chart

If I zoom a 3D chart using code, the chart will not zoom out beyong its original size (smaller). I am using the following code: Points1.Chart.Aspect.View3D = True Points1.Chart.Walls.Visible = True Points1.Chart.Aspect.Orthogonal = False Points1.Chart.Aspect.Chart3DPercent = 100 Rotate1.Active = Tru...
by lilo
Thu Aug 25, 2011 4:57 am
Forum: .NET
Topic: Rotate Labels in 3D Graph
Replies: 3
Views: 5467

Re: Rotate Labels in 3D Graph

I am referring to annotation text when the 3D chart is rotated with the rotate tool
by lilo
Thu Aug 25, 2011 3:15 am
Forum: .NET
Topic: Rotate Labels in 3D Graph
Replies: 3
Views: 5467

Rotate Labels in 3D Graph

Hi,

Does the latest release have the ability to rotate text labels in the 3D Charts?