Search found 57 matches

by Chris.CHWU
Wed Aug 20, 2008 2:33 am
Forum: .NET
Topic: Legend : checkbox & custom position
Replies: 1
Views: 4484

Legend : checkbox & custom position

Hi, When I using the following code Dim lines As New Steema.TeeChart.Styles.Line TChart1.Series.Add(lines) lines.Add(0, 3) lines.Add(1, 4) lines.Add(2, 5) lines.Add(3, 6) TChart1.Legend.CustomPosition = True TChart1.Legend.Left = 10 TChart1.Legend.Top = 10 TChart1.Legend.CheckBoxes = True TChart1.Le...
by Chris.CHWU
Mon Aug 18, 2008 6:55 am
Forum: .NET
Topic: custom labels problem
Replies: 1
Views: 3946

custom labels problem

Public Class Form11 Private Sub Form11_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim lines As New Steema.TeeChart.Styles.Line TChart1.Series.Add(lines) lines.Add(0, 3) lines.Add(1, 4) lines.Add(2, 5) lines.Add(3, 6) Dim labels As Steema.TeeChart.AxisLabels...
by Chris.CHWU
Mon Aug 18, 2008 3:22 am
Forum: .NET
Topic: How to drag and resize the legend at runtime?
Replies: 1
Views: 3993

How to drag and resize the legend at runtime?

When I use below code,

TChart1.Legend.CustomPosition = True
TChart1.Legend.AutoSize = False

How to drag and resize the legend rely on mouse at runtime?

Thanks.
by Chris.CHWU
Mon Aug 04, 2008 8:43 am
Forum: .NET
Topic: Series overlap.
Replies: 1
Views: 4285

Series overlap.

Hi,
When I add two series to the chart. The series overlap.

Now, the top series is the second series,but,

I want the top series is the first series.

Have any method to change the order of series?
by Chris.CHWU
Fri Jul 11, 2008 8:08 am
Forum: .NET
Topic: Problems with inverted bottom axis.
Replies: 1
Views: 3769

Problems with inverted bottom axis.

When I use this: Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart) series.VertAxis = Steema.TeeChart.Styles.VerticalAxis.Right series.Add(1, 5) series.Add(2, 6) series.Add(3, 10) series.Add(4, 11) series.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle series.Pointer.Visible = ...
by Chris.CHWU
Thu Jul 10, 2008 6:39 am
Forum: .NET
Topic: Associate CursorTool with a custom axis (not Axes.Left)
Replies: 5
Views: 8314

Hi, When I use this : Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart) series.VertAxis = Steema.TeeChart.Styles.VerticalAxis.Right series.Add(1, 5) series.Add(2, 10) Dim cursorTool As New Steema.TeeChart.Tools.CursorTool(TChart1.Chart) cursorTool.Active = True cursorTool.FastCursor = Tru...
by Chris.CHWU
Fri Jul 04, 2008 9:44 am
Forum: .NET
Topic: How to get all labels?
Replies: 3
Views: 5744

Thanks for your reply.

I had tried out the method, but I have more than 200's labels.

When executed, the labels overlap.

Have any method to solved the problem?
by Chris.CHWU
Fri Jul 04, 2008 1:53 am
Forum: .NET
Topic: How to get all labels?
Replies: 3
Views: 5744

How to get all labels?

Hi, When I add two series, Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart) Dim series2 As New Steema.TeeChart.Styles.Line(TChart1.Chart) series.Add(1, 1, "A") series.Add(3, 3, "C") series.Add(5, 5, "E") series.Add(7, 7, "G") series.Add(9, 9, "I") series.Add(11, 11, "K") series2.Add(2, 1...
by Chris.CHWU
Thu Jul 03, 2008 3:38 am
Forum: .NET
Topic: How to get X Axis Label Text when I click a bubble
Replies: 1
Views: 3925

How to get X Axis Label Text when I click a bubble

Dear Sir I have a bubble chart with custom defined X Axis Label Text and Y Axis Label Text. But when I click the any certain bubble on the bubble chart(drill down event) , I can only get the certain bubble's Y Axis Label Text, is there any way that I can get the bubble's X Axis Label Text? Thanks in...
by Chris.CHWU
Wed Jul 02, 2008 10:27 am
Forum: .NET
Topic: export multiple charts into the clipboard
Replies: 3
Views: 5913

narcis wrote:
Would you like to export all charts into an image and then copy that image to the clipoard?
Yes. Is it possible?
by Chris.CHWU
Wed Jul 02, 2008 9:47 am
Forum: .NET
Topic: Print Chart Tilte
Replies: 3
Views: 5753

Hello, How can I adjust the size of the image? I want to put my image at the top/left corner and text in the center, is it possible? Thanks Hi Fleming, Yes, you can do something like that: tChart1.Header.Transparent = false; tChart1.Header.Text = " \n \n "; tChart1.Header.Image = pictureBox1.Image;
by Chris.CHWU
Wed Jul 02, 2008 9:40 am
Forum: .NET
Topic: How to set line's color to black?
Replies: 3
Views: 5731

Thanks for your quick response. Dim series As New Steema.TeeChart.Styles.Line(TChart1.Chart) 'Dim series As New Steema.TeeChart.Styles.Line Dim dMin, dMax As Double Me.TChart1.Axes.Left.CalcMinMax(dMin, dMax) series.Add(5, dMin) series.Add(5, dMax) series.Color = Color.Black 'Me.TChart1.Series.Add(s...
by Chris.CHWU
Wed Jul 02, 2008 7:05 am
Forum: .NET
Topic: Print Chart Tilte
Replies: 3
Views: 5753

Print Chart Tilte

Hi,

We want to print chart with our company logo.
Any codes we should do before Chart.Printer.Print.
Any suggestions would be appreciated!

Thanks

Fleming
by Chris.CHWU
Wed Jul 02, 2008 3:20 am
Forum: .NET
Topic: How to set line's color to black?
Replies: 3
Views: 5731

How to set line's color to black?

When I add one line to TChart,and set it color with black. It will looks like the orange color. But, if set series.Color = Color.Red . It will show the red color. Dim series As New Steema.TeeChart.Styles.Line Dim dMin, dMax As Double Me.TChart1.Axes.Left.CalcMinMax(dMin, dMax) series.Add(5, dMin) se...
by Chris.CHWU
Wed Jun 18, 2008 9:22 am
Forum: .NET
Topic: export multiple charts into the clipboard
Replies: 3
Views: 5913

export multiple charts into the clipboard

Hi,

Can I export multiple charts into the clipboard and then paste into

word or excel?

I'm using TeeChart.NET version 3 Build 3.5.3054.17205 and

VS2005(VB.net).

Thanks.