Changes between Version 43 and Version 44 of EstimationToolsPlugin


Ignore:
Timestamp:
Feb 17, 2016, 11:04:18 PM (8 years ago)
Author:
figaro
Comment:

Google link update

Legend:

Unmodified
Added
Removed
Modified
  • EstimationToolsPlugin

    v43 v44  
    3333|| `width`|| || width of resulting diagram `[px]` || `800` || `width=450` ||
    3434|| `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` ||
     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` ||
    3737|| `bgcolor`|| || chart drawing area background color `[RRGGBB]` || `ffffff` || `bgcolor=ccee10` ||
    3838|| `wecolor`|| || chart drawing area background color for weekends `[RRGGBB]` ||`cccccc` || `wecolor=10bb20` ||
     
    7777
    7878{{{
    79  [WorkloadChart([<query>][,<width>][,<height>][,<color>])]]
     79 [[WorkloadChart([<query>][,<width>][,<height>][,<color>])]]
    8080}}}
    8181
     
    8888|| `width`|| || width of resulting diagram `[px]` || `400` || `width=450` ||
    8989|| `height`|| || height of resulting diagram `[px]` || `100` || `height=150` ||
    90 || `color`|| || pie chart starting set of color `[RRGGBB]` ||`ff9900` ,,(a nice orange),, ||  `color=00ff00` ||
     90|| `color`|| || pie chart starting set of color `[RRGGBB]` ||`ff9900` (a nice orange) ||  `color=00ff00` ||
    9191 Note ^1^:: The arguments can be given in any order.
    9292 Note ^2^:: `[RRGGBB]` is a 6-character string of hexadecimal values
     
    115115  ...                                      # normal SELECT statement
    116116  id AS ticket,
    117   COALESCE(tc.value,'') AS estimatedhours, # adds the value of estimatedhours in a column that must have same name original field
     117  COALESCE(tc.value, '') AS estimatedhours # adds the value of estimatedhours in a column that must have same name original field
    118118  FROM ticket t
    119119  LEFT JOIN ...                            # other LEFT JOIN statements (in the default Trac queries) can be left in place
     
    198198=== Requirements
    199199
    200 The charts use [http://code.google.com/apis/chart/ Google's Chart API], hence no additional Python modules are required.
     200The charts use [https://developers.google.com/chart/?csw=1 Google's Chart API], hence no additional Python modules are required.
    201201
    202202The [EstimationToolsPlugin#HoursInPlaceEditor HoursInPlaceEditor] requires the XmlRpcPlugin.