Search found 9 matches

by Chinfot
Thu Mar 31, 2016 9:48 am
Forum: .NET
Topic: axis labels and title overlaping for many vertical axes
Replies: 4
Views: 9534

Re: axis labels and title overlaping for many vertical axes

the Line's Datasource is not fixed.when I set line.Smoothed = true; Interface cannot refresh. The following code. public partial class Form1 : Form { public Form1() { InitializeComponent(); line = new Line(tChart1.Chart); timer1 = new Timer(); timer1.Interval = 2000; timer1.Tick += new System.EventH...
by Chinfot
Wed Mar 30, 2016 9:25 am
Forum: .NET
Topic: axis labels and title overlaping for many vertical axes
Replies: 4
Views: 9534

axis labels and title overlaping for many vertical axes

hello I hava two Problems,please help me. Frist,Look the picture axis labels and title overlaping for many vertical axes.I want title on the left all the time,What should I do ? Second,I want to draw a curve.when I set line.Smoothed = true; the Interface is not refresh. What should I do ?
by Chinfot
Tue Dec 15, 2015 8:16 am
Forum: .NET
Topic: Real-time in Line
Replies: 1
Views: 5457

Real-time in Line

Dear: I want draw 50000 points per second on the line,the repaint is too delay,about 3 seconds later the Interface to refresh.Can you help me? I want Improve the efficiency of drawing. I use the following methods to add data foreach (SPoint da in SPoints) { line1.Add(da.XValue,da.YValue); }
by Chinfot
Thu Oct 22, 2015 10:46 am
Forum: .NET
Topic: Flexible display Mask
Replies: 1
Views: 7669

Flexible display Mask

/// <summary> /// XYZ轴类 /// </summary> public class NumberAxis { public DateTime X { get; set; } public int Y { get; set; } public int Z { get; set; } } private void Form1_Load(object sender, EventArgs e) { points3D1 = new Points3D(tChart1.Chart); this.tChart1.Header.Text = "端口XXXX"; this.tChart1.A...
by Chinfot
Wed Sep 30, 2015 1:27 am
Forum: .NET
Topic: show datetime on the x-axis
Replies: 2
Views: 6708

Re: show datetime on the x-axis

thank you!
by Chinfot
Tue Sep 29, 2015 7:31 am
Forum: .NET
Topic: show datetime on the x-axis
Replies: 2
Views: 6708

show datetime on the x-axis

public class NumberAxis { public DateTime X { get; set; } public int Y { get; set; } public int Z { get; set; } } private void Form1_Load(object sender, EventArgs e) { List<NumberAxis> stemp = new List<NumberAxis>(); for (int t = 0; t < 20; t++) { DateTime dt = DateTime.Parse("2015-02-14 12:02:06")...
by Chinfot
Tue Sep 29, 2015 7:17 am
Forum: .NET
Topic: show datetime
Replies: 1
Views: 5172

show datetime

public class NumberAxis { public DateTime X { get; set; } public int Y { get; set; } public int Z { get; set; } } private void Form1_Load(object sender, EventArgs e) { List<NumberAxis> stemp = new List<NumberAxis>(); for (int t = 0; t < 20; t++) { DateTime dt = DateTime.Parse("2015-02-14 12:02:06")...
by Chinfot
Tue Sep 22, 2015 1:43 am
Forum: .NET
Topic: points3D show all point info
Replies: 1
Views: 5105

points3D show all point info

/// <summary> /// XYZ /// </summary> public class NumberAxis { public int X { get; set; } public int Y { get; set; } public int Z { get; set; } } private void Form2_Load(object sender, EventArgs e)[attachment=0]QQ截图20150922093643.png[/attachment] { List<NumberAxis> stemp = new List<NumberAxis>(); N...