Thank you Narcís.
But if I need to draw this digital with analog single like the picture.
I can't use tChart1.Axes.Bottom.SetMinMax.
Is HorizBar must start at left or not? How can I do?
Search found 13 matches
- Fri Sep 28, 2007 8:55 am
- Forum: .NET
- Topic: how to draw digital on-off signal
- Replies: 9
- Views: 9222
- Fri Sep 28, 2007 1:52 am
- Forum: .NET
- Topic: how to draw digital on-off signal
- Replies: 9
- Views: 9222
- Thu Sep 27, 2007 7:32 am
- Forum: .NET
- Topic: how to draw digital on-off signal
- Replies: 9
- Views: 9222
- Wed Sep 26, 2007 9:07 am
- Forum: .NET
- Topic: how to draw digital on-off signal
- Replies: 9
- Views: 9222
- Thu Sep 20, 2007 1:10 am
- Forum: .NET
- Topic: how to draw digital on-off signal
- Replies: 9
- Views: 9222
how to draw digital on-off signal
How can I draw like this picture
http://img507.imageshack.us/img507/677/46495697wc1.png
I use Area to draw but Area is hard to use.
I also draw two line and set width but can't do very well.
Is there other Object easy to use?
http://img507.imageshack.us/img507/677/46495697wc1.png
I use Area to draw but Area is hard to use.
I also draw two line and set width but can't do very well.
Is there other Object easy to use?
- Mon Jun 11, 2007 6:17 am
- Forum: .NET
- Topic: How to get new point index after zoom
- Replies: 1
- Views: 4331
How to get new point index after zoom
I draw a fastline in webchart.
When user zoom the webchart, how can I get the new point index.
Example:
If this fastline has 100 point.
And when user zoom the webchart(if user select index 30 to 40).
Webchart will show new scale in point 30 to 40.
How can I know user zoom index 30 to 40.
When user zoom the webchart, how can I get the new point index.
Example:
If this fastline has 100 point.
And when user zoom the webchart(if user select index 30 to 40).
Webchart will show new scale in point 30 to 40.
How can I know user zoom index 30 to 40.
- Wed Apr 18, 2007 8:50 am
- Forum: .NET
- Topic: What does mean DeterminePostBackMode
- Replies: 6
- Views: 6960
- Wed Apr 18, 2007 1:03 am
- Forum: .NET
- Topic: What does mean DeterminePostBackMode
- Replies: 6
- Views: 6960
Please see the step 1.Web page load 2.Zoom the WebChart 3.Click Button1 the WebChrt.Series[0] will change value, but WebChart still in the step 2 zoom scale. My problem is when I already zoomed a webchart, then I update webchart data. But the webchart still in last zoom scale. When I update webchart...
- Tue Apr 17, 2007 4:51 am
- Forum: .NET
- Topic: What does mean DeterminePostBackMode
- Replies: 6
- Views: 6960
- Mon Apr 16, 2007 1:40 am
- Forum: .NET
- Topic: What does mean DeterminePostBackMode
- Replies: 6
- Views: 6960
What does mean DeterminePostBackMode
There is a onhelp SetCurrentZoom method. This is the sample code. private void Page_Load(object sender, System.EventArgs e) { MemoryStream tmpChart; if (Session["ch1"]==null) { WebChart1.Chart[0].FillSampleValues(); tmpChart=new MemoryStream(); WebChart1.Chart.Export.Template.Save(tmpChart); //save ...
- Wed Mar 28, 2007 3:10 am
- Forum: .NET
- Topic: TeeChart.NET 2.0 Export Text file datetime type
- Replies: 5
- Views: 6428
- Tue Mar 27, 2007 12:48 am
- Forum: .NET
- Topic: TeeChart.NET 2.0 Export Text file datetime type
- Replies: 5
- Views: 6428
- Mon Mar 26, 2007 9:46 am
- Forum: .NET
- Topic: TeeChart.NET 2.0 Export Text file datetime type
- Replies: 5
- Views: 6428
TeeChart.NET 2.0 Export Text file datetime type
I use TeeChart.NET 2.0. I used WebChart and set Chart.XValues.DateTime = true, x value show in DateTime. But when I use Export textformat, the xvalue in file always is float. How can I to write datetime text in file? My code: string filename = Server.MapPath("~/App_Data/chart.txt"); Steema.TeeChart....