Search found 10 matches

by grace
Wed Jun 13, 2007 12:36 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

oh ..sorry,it's ok now .thank you
by grace
Wed Jun 13, 2007 12:25 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

thank you for your reply.but it still a problem that the line1 show in the chart will not the true line.because we add more points in it.we want the line shown like these :~~~ but it will be changed to these:~\~~.how to do let the more add part in line1 unvisible.
by grace
Tue Jun 12, 2007 7:34 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

but use this method: The other one is to use a custom labels, you can put this as below line: Code: tChart1.Axes.Bottom.Labels.Items.Add(1.5, "1.5"); it is a problem that the items won't show friendly when there are so much points i added.and also it must can be zoom in or out.so if zoom out ,the it...
by grace
Tue Jun 12, 2007 6:35 am
Forum: .NET
Topic: the Axes.bottom show mutiple line's title
Replies: 1
Views: 3968

the Axes.bottom show mutiple line's title

i want to let my lines which are link one by one,no overlap,just like these:

~~~ in my chart.but the problem is i had to realize every line has its x labels or x items and all they can zoom in or zoom out.not by mutiple axises.how to do it...[/img]
by grace
Thu Jun 07, 2007 9:20 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

Image
by grace
Thu Jun 07, 2007 9:14 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

Hi Grace You can use the "GetAxisLabel" event of the chart to change x-Axis label, your code can be something similar as below code: private void tChart1_GetAxisLabel(object sender, Steema.TeeChart.GetAxisLabelEventArgs e) { if (sender == tChart1.Axes.Bottom) //Only x-Axis e.LabelText = (Convert.To...
by grace
Thu Jun 07, 2007 9:11 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

please look this code public partial class Form1 : Form { public Form1() { InitializeComponent(); TestLine(); } public void TestLine() { Line line1 = new Line(); Line line2 = new Line(); line1.Add(1.5, 1.7); line1.Add(2.4, 2.9); line1.Add(3.6, 4.9); line1.Add(4.9, 5.6); line2.Add(5.7, 2.6); line2.Ad...
by grace
Thu Jun 07, 2007 6:16 am
Forum: .NET
Topic: how to do display x-Axis Label
Replies: 9
Views: 13495

how to do display x-Axis Label

how to do display x-Axis Label like 0 1 2 3 0 1 2 3 0 1 2 3
one axes not multi axis
by grace
Wed May 09, 2007 5:59 am
Forum: .NET
Topic: display Multiple Charts?
Replies: 2
Views: 5080

thank you very much :D
by grace
Mon May 07, 2007 2:36 am
Forum: .NET
Topic: display Multiple Charts?
Replies: 2
Views: 5080

display Multiple Charts?

how to do display multiple charts in on teechart
like this http://demo.q139.cn/Code/Java/Chart/JFr ... tDemo3.htm
Image