473,396 Members | 1,738 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How would I build a Graphical Timeline

Hello-
I'm interested in building a graphical timeline for a series of tasks that
are stored in a SQL Server 2000 database. The tasks reside within a table.
We also have a table to track the history and date of status changes. Some
of the status flags are as follows:
1 - In Progress.
2 - Awaiting Info.
3 - On review server.

For each task, using ASP or ASP.Net, I would like to be able to display a
graphical timeline for each task, with the status changes denoted for a
given date range.

Does anyone have any ideas on the best approach for this task?

Thanks alot!
Chris
Jul 19 '05 #1
4 8001
TJS
try this:

http://www.aspkey.net/aspkey/_store/...projectdisplay
"Cobb" <cc*****@yahoo.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello-
I'm interested in building a graphical timeline for a series of tasks that
are stored in a SQL Server 2000 database. The tasks reside within a table.
We also have a table to track the history and date of status changes. Some
of the status flags are as follows:
1 - In Progress.
2 - Awaiting Info.
3 - On review server.

For each task, using ASP or ASP.Net, I would like to be able to display a
graphical timeline for each task, with the status changes denoted for a
given date range.

Does anyone have any ideas on the best approach for this task?

Thanks alot!
Chris

Jul 19 '05 #2
On Mon, 20 Oct 2003 10:02:36 -0400, "Cobb" <cc*****@yahoo.com> wrote:
Hello-
I'm interested in building a graphical timeline for a series of tasks that
are stored in a SQL Server 2000 database. The tasks reside within a table.
We also have a table to track the history and date of status changes. Some
of the status flags are as follows:
1 - In Progress.
2 - Awaiting Info.
3 - On review server.

For each task, using ASP or ASP.Net, I would like to be able to display a
graphical timeline for each task, with the status changes denoted for a
given date range.


Depending on your audience and the level of sophistication you have,
you can try either a normal charting tool, or if you just want a
horizontal or vertical bar chart with different colors, you could do
it with a table. Assuming a horizontal bar, if you can calculate a
percent of the total time to display, this would be the width of a td
element in a table row. You would need to determine beforehand how
many changes were made in the timeframe...

<table width=400 cellspacing=0 cellpadding=0>
<tr>
<td width=10% bgcolor="red">&nbsp;</td>
<td width=40% bgcolor="yellow">&nbsp;</td>
<td bgcolor="green">nbsp;</td>
</tr>
</table>

This would show a horizontal bar 400 pixels wide with 10% in red, 40%
in yellow and the rest (50%) in green. I would suggest using a style
sheet instead of coding in the colors. You could also use background
images instead of the background colors. This way, you could use
graphics, shading, etc. Depending on your skills with HTML and Table
layout, the sky is "almost" your limit :)
Jul 19 '05 #3
Thanks a bunch!

Chris
"TJS" <no****@here.com> wrote in message
news:vp************@corp.supernews.com...
try this:

http://www.aspkey.net/aspkey/_store/...projectdisplay
"Cobb" <cc*****@yahoo.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello-
I'm interested in building a graphical timeline for a series of tasks that are stored in a SQL Server 2000 database. The tasks reside within a table. We also have a table to track the history and date of status changes. Some of the status flags are as follows:
1 - In Progress.
2 - Awaiting Info.
3 - On review server.

For each task, using ASP or ASP.Net, I would like to be able to display a graphical timeline for each task, with the status changes denoted for a
given date range.

Does anyone have any ideas on the best approach for this task?

Thanks alot!
Chris


Jul 19 '05 #4
Thanks alot, I appreciate the tip. This is the direction I'm pursuing.

Chris
"Dan Brussee" <db******@NOSPAMnc.rr.com> wrote in message
news:g6********************************@4ax.com...
On Mon, 20 Oct 2003 10:02:36 -0400, "Cobb" <cc*****@yahoo.com> wrote:
Hello-
I'm interested in building a graphical timeline for a series of tasks thatare stored in a SQL Server 2000 database. The tasks reside within a table.We also have a table to track the history and date of status changes. Someof the status flags are as follows:
1 - In Progress.
2 - Awaiting Info.
3 - On review server.

For each task, using ASP or ASP.Net, I would like to be able to display a
graphical timeline for each task, with the status changes denoted for a
given date range.


Depending on your audience and the level of sophistication you have,
you can try either a normal charting tool, or if you just want a
horizontal or vertical bar chart with different colors, you could do
it with a table. Assuming a horizontal bar, if you can calculate a
percent of the total time to display, this would be the width of a td
element in a table row. You would need to determine beforehand how
many changes were made in the timeframe...

<table width=400 cellspacing=0 cellpadding=0>
<tr>
<td width=10% bgcolor="red">&nbsp;</td>
<td width=40% bgcolor="yellow">&nbsp;</td>
<td bgcolor="green">nbsp;</td>
</tr>
</table>

This would show a horizontal bar 400 pixels wide with 10% in red, 40%
in yellow and the rest (50%) in green. I would suggest using a style
sheet instead of coding in the colors. You could also use background
images instead of the background colors. This way, you could use
graphics, shading, etc. Depending on your skills with HTML and Table
layout, the sky is "almost" your limit :)

Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Tennill, Dustin | last post by:
Hello all, I am brand new to this list, not sure if this the right place to ask this question. I have two AIX 5.1 64-bit boxes and would like to have Python on both of them but don't need any...
0
by: cect425mike | last post by:
I'm just learning how to use TIME, with some success I'd say.. I'm trying to figure out how to pause the timeline of an entire document. The HTML + Time introduction document has a quote: "You can...
0
by: Abhishek Bagga | last post by:
I want to Display a timeline in my Application based on which I will create a flow of series. How can I create a Timeline, somewhat similar to the ones available in video authoring tools. ...
5
by: krose | last post by:
I am looking for a control that would look like a timeline (12 hours) which would allow the user to click at a particular location on the timeline, then allow characteristics to be associated with...
17
by: jshanman | last post by:
I am working on a timeline API that devevelopers can use to add a dynamic timeline to their sites. Here is a *working* demo of the basic interface. (it works for me anyway on ie6 & firefox 1.5)...
2
by: monteverest | last post by:
I have a movieclip with 15 frame of animation nested on the main timeline. I want to code a delay on the nested clip so that when the playhead reaches the final frame, the nest clip will stop or...
0
by: nbt725 | last post by:
Dear Sir, Hello ! I have use simile timeline. (http://simile.mit.edu/mail.html). I am new to timeline and would like to do following, please guide me. In my timeline I have created 2 bands one...
1
by: doublestack | last post by:
Hi everyone, I have a xml file that Simile Timeline uses to call events...Some of the events have links in them and I need to have those links open a new window. As it stands now the links replace...
5
by: doublestack | last post by:
Hi everyone, I have a xml file that Simile Timeline uses to call events...Some of the events have links in them and I need to have those links open a new window. As it stands now the links replace...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.