Changes between Version 48 and Version 49 of EstimationToolsPlugin


Ignore:
Timestamp:
Feb 13, 2022, 12:09:50 PM (2 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • EstimationToolsPlugin

    v48 v49  
    55== Description
    66
    7 This plugin includes macros that visualize remaining effort estimations, eg Burndown Charts, as well as an extension that allows inline editing of estimations in the query view. The charts use [https://developers.google.com/chart/?csw=1 Google's Chart API], hence no additional Python modules are required.
     7This plugin includes macros that visualize remaining effort estimations, eg Burndown Charts, as well as an extension that allows inline editing of estimations in the query view. An explanation of burndown charts and how they fit in a project working environment, is given on [wikipedia:Burndown_chart Wikipedia]. The charts use [https://developers.google.com/chart/?csw=1 Google's Chart API], hence no additional Python modules are required.
    88
    99=== !BurndownChart
    1010
    11 Creates burn down chart for selected tickets.
     11Creates a burndown chart for selected tickets.
    1212
    1313This macro creates a chart that can be used to visualize the progress in a milestone, eg sprint or product backlog.
     
    2323The macro has the following arguments and parameters:
    2424
    25 ||Argument      ||Plugin[[BR]]Version   ||Description   ||Default ||Example
    26 || `query`|| || a comma-separated list of query parameters for the ticket selection, in the form "key=value" as specified in TracQuery#QueryLanguage. || || `milestone=2011-05,owner=adrian` ||
    27 || `startdate`|| || [''Required''] specifies the start date of the period `[YYYY-MM-DD ISO-8601 format]` || || `startdate=2011-05-10` ||
    28 || `enddate`|| || end date of the period `[YYYY-MM-DD ISO-8601 format]` || In order (defaults on first given): `milestones` or `completed` date, or `due` date, or `today` || `enddate=2011-05-30` ||
    29 || `weekends`|| || include weekends in chart `[true, false]` || `true` || `weekends=false` ||
    30 || `title`|| || chart title `[accepts non ASCII charset (i.e. à, ü, ñ ...)]` || first milestone or `Burndown Chart` || `title=Estimation Tools Plugin` ||
    31 || `expected`|| || show expected progress in chart `[0 or any number to define initial expected hours]`  || `0` || `expected=500` ||
    32 || `gridlines`|| || show gridlines in chart `[0 or any number to define hour steps]` || `0` || `gridlines=100` ||
    33 || `width`|| || width of resulting diagram `[px]` || `800` || `width=450` ||
    34 || `height`|| || height of resulting diagram `[px]` || `200` || `height=150` ||
    35 || `color`|| || burn down graph color `[RRGGBB]` ||`ff9900` (a nice orange) ||  `color=0099ff` ||
    36 || `colorexpected`|| || color for expected hours graph `[RRGGBB]` || `ffddaa` (a nice yellow) || `colorexpected=ddffdd` ||
    37 || `bgcolor`|| || chart drawing area background color `[RRGGBB]` || `ffffff` || `bgcolor=ccee10` ||
    38 || `wecolor`|| || chart drawing area background color for weekends `[RRGGBB]` ||`cccccc` || `wecolor=10bb20` ||
     25||'''Argument'''||'''Description'''||'''Default'''||'''Example'''||
     26|| `query`|| a comma-separated list of query parameters for the ticket selection, in the form "key=value" as specified in TracQuery#QueryLanguage. || || `milestone=2011-05,owner=adrian` ||
     27|| `startdate`|| [''Required''] specifies the start date of the period `[YYYY-MM-DD ISO-8601 format]` || || `startdate=2011-05-10` ||
     28|| `enddate`|| end date of the period `[YYYY-MM-DD ISO-8601 format]` || In order (defaults on first given): `milestones` or `completed` date, or `due` date, or `today` || `enddate=2011-05-30` ||
     29|| `weekends`|| include weekends in chart `[true, false]` || `true` || `weekends=false` ||
     30|| `title`|| chart title `[accepts non ASCII charset (i.e. à, ü, ñ ...)]` || first milestone or `Burndown Chart` || `title=Estimation Tools Plugin` ||
     31|| `expected`|| show expected progress in chart `[0 or any number to define initial expected hours]`  || `0` || `expected=500` ||
     32|| `gridlines`|| show gridlines in chart `[0 or any number to define hour steps]` || `0` || `gridlines=100` ||
     33|| `width`|| width of resulting diagram `[px]` || `800` || `width=450` ||
     34|| `height`|| height of resulting diagram `[px]` || `200` || `height=150` ||
     35|| `color`|| burn down graph color `[RRGGBB]` ||`ff9900` (a nice orange) ||  `color=0099ff` ||
     36|| `colorexpected`|| color for expected hours graph `[RRGGBB]` || `ffddaa` (a nice yellow) || `colorexpected=ddffdd` ||
     37|| `bgcolor`|| chart drawing area background color `[RRGGBB]` || `ffffff` || `bgcolor=ccee10` ||
     38|| `wecolor`|| chart drawing area background color for weekends `[RRGGBB]` ||`cccccc` || `wecolor=10bb20` ||
     39
    3940 Note ^1^:: The arguments can be given in any order.
    4041 Note ^2^:: `[RRGGBB]` is a 6-character string of hexadecimal values
     
    8485Supports the following parameters:
    8586
    86 ||Argument      ||Plugin[[BR]]Version   ||Description   ||Default ||Example
    87 || `query`|| || a comma-separated list of query parameters for the ticket selection, in the form "key=value" as specified in TracQuery#QueryLanguage. || || `milestone=2011-05,owner=adrian` ||
    88 || `width`|| || width of resulting diagram `[px]` || `400` || `width=450` ||
    89 || `height`|| || height of resulting diagram `[px]` || `100` || `height=150` ||
    90 || `color`|| || pie chart starting set of color `[RRGGBB]` ||`ff9900` (a nice orange) ||  `color=00ff00` ||
     87||'''Argument'''||'''Description'''||'''Default'''||'''Example'''||
     88|| `query`|| a comma-separated list of query parameters for the ticket selection, in the form "key=value" as specified in TracQuery#QueryLanguage. || || `milestone=2011-05,owner=adrian` ||
     89|| `width`|| width of resulting diagram `[px]` || `400` || `width=450` ||
     90|| `height`|| height of resulting diagram `[px]` || `100` || `height=150` ||
     91|| `color`|| pie chart starting set of color `[RRGGBB]` ||`ff9900` (a nice orange) ||  `color=00ff00` ||
     92
    9193 Note ^1^:: The arguments can be given in any order.
    9294 Note ^2^:: `[RRGGBB]` is a 6-character string of hexadecimal values