Search found 14 matches

by cs_ech
Tue Nov 10, 2009 9:46 pm
Forum: .NET
Topic: time taken to plot the graph
Replies: 1
Views: 2410

time taken to plot the graph

Hi, I am extracting data from SybaseIQ and plotting it using the add method while (rdr.Read() ) { DateTime dt = (System.DateTime)rdr.GetValue(0); Double latency = (Double)rdr.GetValue(1); f1.points1.Add(dt,latency); f1.fastline1.Add(dat, latency); } There are 20 million data points that get plotted ...
by cs_ech
Fri Nov 06, 2009 7:42 pm
Forum: .NET
Topic: change the x axis value of a t-chart point graph
Replies: 9
Views: 9102

Re: change the x axis value of a t-chart point graph

Please change the graph type to point instead of bar and then increae the data size from 5 to 5000 and to reproduce the error that I get: private Steema.TeeChart.Styles.Points point1; private void InitializeChart() { System.Random rnd = new System.Random(); System.DateTime today = System.DateTime.To...
by cs_ech
Thu Nov 05, 2009 11:56 pm
Forum: .NET
Topic: change the x axis value of a t-chart point graph
Replies: 9
Views: 9102

Re: change the x axis value of a t-chart point graph

The data that i retieve is in the datetime format: 8/24/2009 9:35:11 AM 8/24/2009 9:35:30 AM 8/24/2009 9:35:33 AM 8/24/2009 9:35:36 AM 8/24/2009 2:19:31 PM 8/24/2009 2:19:31 PM 8/24/2009 2:19:32 PM 8/24/2009 3:05:00 PM 8/24/2009 3:05:00 PM 8/24/2009 3:05:00 PM I am not sure how the follwoing add met...
by cs_ech
Wed Nov 04, 2009 10:59 pm
Forum: .NET
Topic: how to plot a pointgraph and a fastline series in the same g
Replies: 1
Views: 2801

how to plot a pointgraph and a fastline series in the same g

how to plot a pointgraph and a fastline series in the same graph.
I would use the left and the right side of the graphs as two different y axises for both the graph types.
by cs_ech
Wed Nov 04, 2009 10:56 pm
Forum: .NET
Topic: change the x axis value of a t-chart point graph
Replies: 9
Views: 9102

Re: change the x axis value of a t-chart point graph

private void BuildGraphs_Click(object sender, EventArgs e) { IDbConnection conn = Get_Connection(); IEnumerator AgoraChecklistEnumerator; AgoraChecklistEnumerator = AgoraInstancesCheckList.CheckedIndices.GetEnumerator(); int AgoraInstance; while (AgoraChecklistEnumerator.MoveNext() != false) { Agora...
by cs_ech
Tue Nov 03, 2009 11:11 pm
Forum: .NET
Topic: change the x axis value of a t-chart point graph
Replies: 9
Views: 9102

Re: change the x axis value of a t-chart point graph

so I added the following lines in my code: points1.XValues.DateTime = true; tChart1.Axes.Bottom.Labels.DateTimeFormat = "hh:mm:ss.ffff"; while (rdr.Read() ) { DateTime dt = (System.DateTime)rdr.GetValue(0); Double latency = (Double)rdr.GetValue(1); Console.WriteLine(counter); f1.points1.Add(dt, late...
by cs_ech
Thu Oct 22, 2009 7:28 pm
Forum: .NET
Topic: plot x AND y axis values.
Replies: 1
Views: 2560

plot x AND y axis values.

I need to extract x and y axis values form the database and plot them on a points graph.
The following code plots only y axis values:
points1.Add(rdr[0]);
Please advice.
by cs_ech
Tue Oct 20, 2009 9:46 pm
Forum: .NET
Topic: label x and y axis in a bragraph and fastline series graph
Replies: 1
Views: 2650

label x and y axis in a bragraph and fastline series graph

how do i label x and y axis in a bragraph and fastline series graph ?
by cs_ech
Mon Sep 14, 2009 10:15 pm
Forum: .NET
Topic: plot more data points.
Replies: 5
Views: 5193

Re: plot more data points.

This code gives me following errors: Steema.TeeChart.Drawing.ChartPen redPen = new Steema.TeeChart.Drawing.ChartPen(tChart1.Chart, rPen); The best overloaded method match for 'Steema.TeeChart.Drawing.ChartPen.ChartPen(Steema.TeeChart.Chart, bool)' has some invalid arguments Steema.TeeChart.Drawing.C...
by cs_ech
Wed Sep 02, 2009 9:14 pm
Forum: .NET
Topic: plot more data points.
Replies: 5
Views: 5193

Re: plot more data points.

hi,
I am not using FastLine series but a point graph.
I was unable to activate the paging property.
Out of the 10 million data points, I am only able to plot 1000 points in one page.
by cs_ech
Tue Sep 01, 2009 9:29 pm
Forum: .NET
Topic: plot more data points.
Replies: 5
Views: 5193

plot more data points.

I am querying from a database and plotting the retrieved data.
The query on an average returns around 10 million data points.
I am currently not able to plot them all.
Please advice.
by cs_ech
Tue Aug 04, 2009 4:38 pm
Forum: .NET
Topic: change the x axis value of a t-chart point graph
Replies: 9
Views: 9102

change the x axis value of a t-chart point graph

how can i change the value of the x-axis of a t-chart point graph from int to timestamp with format hh:mm:ss.xxxx where xxxx is milliseconds.
by cs_ech
Mon Aug 03, 2009 9:18 pm
Forum: .NET
Topic: t-chart point graph
Replies: 1
Views: 2816

t-chart point graph

I need to remove the data bar that appears on the right hand side of a point graph. I havent been able to figure out how to do that myself. Pls advise.
I would also like to increase the length of the graph grid once the data bar disappears.
by cs_ech
Wed Jul 22, 2009 6:53 pm
Forum: .NET
Topic: Resizing t-chart form.
Replies: 1
Views: 2371

Resizing t-chart form.

How can I implement resizing a t-chart form dynamically ?