Changes between Version 9 and Version 10 of JqChartMacro


Ignore:
Timestamp:
Jul 3, 2016, 7:36:07 AM (8 years ago)
Author:
figaro
Comment:

Added jqPlot description

Legend:

Unmodified
Added
Removed
Modified
  • JqChartMacro

    v9 v10  
    55== Description
    66
    7 This macro adds JQplot based charts to Trac pages:
     7This macro adds [http://www.jqplot.com/index.php jqPlot] based charts to Trac pages:
    88
    99[[Image(gauge.png)]]
    1010[[Image(line.png)]]
     11
     12jqPlot is a plotting and charting plugin for the jQuery Javascript framework and is dual licensed under GPL and MIT.
    1113
    1214== Bugs/Feature Requests
     
    4345== Example
    4446
    45 This creates a gauge counting the number of rows returned in report number 10.
     47This creates a gauge counting the number of rows returned in report number 10:
    4648
    4749{{{
     
    6163}}}
    6264
    63 This creates a line chart with one series per ticket type. The x axis is the time the ticket was created, and the y axis is a 'cooked' number for demonstration only (the ticket id times 10). Notice that the sql query returns the ticket id. This will make each point in the chart clickable. When you click on a point, you will be sent to the ticket corresponding to that point.
     65This creates a line chart with one series per ticket type. The x axis is the time the ticket was created, and the y axis is a 'cooked' number for demonstration only (the ticket id times 10). Notice that the sql query returns the ticket id. This will make each point in the chart clickable. When you click on a point, you will be sent to the ticket corresponding to that point:
    6466
    6567{{{
     
    7678}}}
    7779
    78 The options element is the jqplot options parameter. See jqplot for more information.
     80The options element is the jqPlot options parameter. See the [http://www.jqplot.com/index.php jqPlot website] for more information.
    7981
    8082== Recent Changes