How would I build a Graphical Timeline

Ask a Question related to ASP, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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,...
  3. #2

    Default 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

  4. #3

    Default Re: How would I build a Graphical Timeline

    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 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 :)


    Dan Brussee Guest

  5. #4

    Default Re: How would I build a Graphical Timeline

    Thanks a bunch!

    Chris


    "TJS" <nospam@here.com> wrote in message
    news:vp8hsgrdua226f@corp.supernews.com...
    > 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
    > >
    > >
    >
    >

    Cobb Guest

  6. #5

    Default 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...
    > 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 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 :)
    >
    >

    Cobb Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139