Search found 13 matches

by scott
Fri Sep 28, 2007 8:55 am
Forum: .NET
Topic: how to draw digital on-off signal
Replies: 9
Views: 9222

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?
Image
by scott
Fri Sep 28, 2007 1:52 am
Forum: .NET
Topic: how to draw digital on-off signal
Replies: 9
Views: 9222

Thank you for reply. It works.
But HorizBar always start at the left axes.
Could I make HorizBar start at the middle like the picture?
by scott
Thu Sep 27, 2007 7:32 am
Forum: .NET
Topic: how to draw digital on-off signal
Replies: 9
Views: 9222

Thank you Narcís.
But I need to draw like hat.
It should have underline not a rectangle.
like this
Image
by scott
Wed Sep 26, 2007 9:07 am
Forum: .NET
Topic: how to draw digital on-off signal
Replies: 9
Views: 9222

Sorry, I don't know how to draw like the picture use horizontal bar series.
Can you give me some example?
by scott
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?
by scott
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.
by scott
Wed Apr 18, 2007 8:50 am
Forum: .NET
Topic: What does mean DeterminePostBackMode
Replies: 6
Views: 6960

Narcís, thank you very much. It really helps me.

I stuck this function a little time.

The resolve is so easy. :roll:

I need to study in TeeChart. And it is a good 'Object'.
by scott
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...
by scott
Tue Apr 17, 2007 4:51 am
Forum: .NET
Topic: What does mean DeterminePostBackMode
Replies: 6
Views: 6960

Thank you Narcís,
I knew there is a Zoom sample in file WebAppZoomChart.aspx.
But I can't find any thing about DeterminePostBackModebout int WebAppZoomChart.aspx.
by scott
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 ...
by scott
Wed Mar 28, 2007 3:10 am
Forum: .NET
Topic: TeeChart.NET 2.0 Export Text file datetime type
Replies: 5
Views: 6428

Thank you Narcís:
This code is work. Now I understand your mean.
Export can't Save datetime format string.
We should write double first then transfer to datetime string.
Thank you angan!!
by scott
Tue Mar 27, 2007 12:48 am
Forum: .NET
Topic: TeeChart.NET 2.0 Export Text file datetime type
Replies: 5
Views: 6428

Hi Narcís:
Thank you for reply.
Before I post this problem, I already readed that article.
But I still don't understand how to export datetime text format file.
Will you write some sample to me?
Thank you very much.

p.s I use WebChart
by scott
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....