Ask a Question related to ASP, Design and Development.
-
Cobb #1
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
Cobb Guest
-
Flex 2.0 Graphical skins
I want set graphical skin for Flex2.0 components (ComboBox for Ex.). The way I do it: But upSkin don't work properly when width attribut is... -
Graphical Library
We are working on a tool to allow users to make notes on images and then merge the notes with the underlying png, jpeg....does anyone have a... -
ANNOUNCE: Graph::Timeline and Graph::Timeline::GD 1.0
Graph::Timeline - Render timeline data This document refers to verion 0.1 of Graph::Timeline, released November 11, 2003 This class takes a... -
Graphical Timeline to Depict Company History
Does anyone have a good example of a timeline (not timeline in Flash) depicting company history, for example? I want to design a timeline for our... -
Graphical Interfase
Is there a graphical interfase to administer Informix? I'm looking for something like MSSQL Enterprise Manager, it doesn't have to be as complete,... -
TJS #2
Re: How would I build a Graphical Timeline
try this:
[url]http://www.aspkey.net/aspkey/_store/asp/store.asp#projectdisplay[/url]
"Cobb" <ccoyusa@yahoo.com> wrote in message
news:%23M8ulKxlDHA.1656@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
>
>
TJS Guest
-
Dan Brussee #3
Re: How would I build a Graphical Timeline
On Mon, 20 Oct 2003 10:02:36 -0400, "Cobb" <ccoyusa@yahoo.com> wrote:
Depending on your audience and the level of sophistication you have,>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.
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"> </td>
<td width=40% bgcolor="yellow"> </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 :)
Dan Brussee Guest
-
Cobb #4
Re: How would I build a Graphical Timeline
Thanks a bunch!
Chris
"TJS" <nospam@here.com> wrote in message
news:vp8hsgrdua226f@corp.supernews.com...that> try this:
>
> [url]http://www.aspkey.net/aspkey/_store/asp/store.asp#projectdisplay[/url]
>
>
> "Cobb" <ccoyusa@yahoo.com> wrote in message
> news:%23M8ulKxlDHA.1656@tk2msftngp13.phx.gbl...> > Hello-
> > I'm interested in building a graphical timeline for a series of taskstable.> > are stored in a SQL Server 2000 database. The tasks reside within aSome> > We also have a table to track the history and date of status changes.a> > 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>> > 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
> >
> >
>
Cobb Guest
-
Cobb #5
Re: How would I build a Graphical Timeline
Thanks alot, I appreciate the tip. This is the direction I'm pursuing.
Chris
"Dan Brussee" <dbrussee@NOSPAMnc.rr.com> wrote in message
news:g6o8pvg841jg6mgtvlq5cfo3cla4fvcg77@4ax.com...that> On Mon, 20 Oct 2003 10:02:36 -0400, "Cobb" <ccoyusa@yahoo.com> wrote:
>> >Hello-
> >I'm interested in building a graphical timeline for a series of taskstable.> >are stored in a SQL Server 2000 database. The tasks reside within aSome> >We also have a table to track the history and date of status changes.>> >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"> </td>
> <td width=40% bgcolor="yellow"> </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 :)
>
>
Cobb Guest



Reply With Quote

