Changes between Version 54 and Version 55 of TracTicketStatsPlugin


Ignore:
Timestamp:
Oct 20, 2016, 7:14:14 PM (7 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketStatsPlugin

    v54 v55  
    2424 * Adobe Flash player needs to be installed on the client.
    2525
     26This plugin can be used to visualize the progress of a project by seeing the rate of tickets being created vs. tickets being closed. Graphs can be customized.
     27
     28The macro allows graphs to be inserted within wiki markup.
     29
     30{{{
     31[[TicketStats(title = Total tickets last 15 days, height=250, daterange=15d, res_days=1)]]
     32}}}
     33
     34{{{
     35[[TicketStats(title = Error tickets by week last 3 months, daterange=3m, res_days=7, query=Type='error')]]
     36}}}
     37
     38The macro's arguments are:
     39 * '''title''': caption to your graph
     40 * '''height''': graph height, default 500 px.
     41 * '''column_width''': default 40 px.
     42 * '''daterange''': date range specified as "from;to" or just "to". Using Trac's 0.12 date field query syntax (trac:wiki:TracQuery?version=20#QueryLanguage).
     43 * '''res_days''': resolution in days for each point in the graph.
     44
     45Version 2.1 of this plugin looks as follows:
     46
     47[[Image(screenshot01.png, 80%)]]
     48
    2649See also TicketChartsMacro, TracMetrixPlugin, TracGvizPlugin.
    27 
    28 == Screenshots
    29 
    30 Version 2.1:
    31 
    32 [[Image(screenshot01.png, 50%)]]
    3350
    3451== Bugs/Feature Requests
     
    6077}}}
    6178
     79== Configuration
     80
    6281The following options can be specified in `trac.ini` (default values are shown):
    6382{{{#!ini
     
    6584yui_base_url = http://yui.yahooapis.com/2.9.0      # Location of YUI API
    6685}}}
    67 
    68 == Examples
    69 
    70 This plugin can be used to visualize the progress of a project by seeing the rate of tickets being created vs. tickets being closed. Graphs can be customized.
    71 
    72 The macro allows graphs to be inserted within wiki markup.
    73 
    74 {{{
    75 [[TicketStats(title = Total tickets last 15 days, height=250, daterange=15d, res_days=1)]]
    76 }}}
    77 
    78 {{{
    79 [[TicketStats(title = Error tickets by week last 3 months, daterange=3m, res_days=7, query=Type='error')]]
    80 }}}
    81 
    82 The macro's arguments are:
    83  * '''title''': caption to your graph
    84  * '''height''': graph height, default 500 px.
    85  * '''column_width''': default 40 px.
    86  * '''daterange''': date range specified as "from;to" or just "to". Using Trac's 0.12 date field query syntax (trac:wiki:TracQuery?version=20#QueryLanguage).
    87  * '''res_days''': resolution in days for each point in the graph.
    8886
    8987== Recent Changes