Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://code.google.com/apis/chart/basics.html" rel="nofollow noreferrer">Google charts api/server</a> can make one fairly easily</p> <p><img src="https://chart.apis.google.com/chart?chs=600x250&amp;cht=lxy&amp;chtt=Burndown&amp;chxt=x,y&amp;chxl=days&amp;chdl=Estimated|Actual&amp;chco=FF0000,00FF00&amp;chd=t:-1|40,36,32,28,24,20,16,12,8,4,0|-1|40,38,36,35,20,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1&amp;chxr=0,0,30,2|1,0,40,2&amp;chds=0,40&amp;chm=s,FF0000,0,-1,5|s,0000ff,1,-1,5|s,00aa00,2,-1,5" alt="Burndown 2"> <img src="https://chart.apis.google.com/chart?chs=600x250&amp;chtt=Burndown&amp;cht=lc&amp;chxt=x,y&amp;chxl=days&amp;chdl=Estimated|Actual&amp;chco=FF0000,00FF00&amp;chd=t:40,36,32,28,24,20,16,12,8,4,0|40,39,38,37,36,35,30,25,23,21,18,14,4,0,0&amp;chxr=0,0,30,2|1,0,40,2&amp;chds=0,40" alt="Burn down"></p> <p>You specify everything in the URL so it's easy to update:</p> <pre><code>http://chart.apis.google.com/chart? chs=600x250&amp; // the size of the chart chtt=Burndown&amp; // Title cht=lc&amp; // The chart type - "lc" means a line chart that only needs Y values chdl=estimated|actual&amp; // The two legends chco=FF0000,00FF00&amp; // The colours in hex of the two lines chxr=0,0,30,2|1,0,40,2&amp; // The data range for the x,y (index,min,max,interval) chds=0,40 // The min and max values for the data. i.e. amount of features chd=t:40,36,32,28,24,20,16,12,8,4,0|40,39,38,37,36,35,30,25,23,21,18,14,12,9,1 // Data </code></pre> <p>The URL above plots in intervals of 2 - so work every 2 days. You'll need a bigger size chart for every day. To do this make the data have 30 values for estimated and actual, and change the "chxr" so the interval is 1, not two.</p> <p>You can plot only the days done more clearly with the "lxy" chart type (the first image). This needs you to enter the X data values too (so a vector). Use -1 for unknown.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload