wiki:JqChartMacro

Version 9 (modified by figaro, 8 years ago) (diff)

Cosmetic changes

JQPlot Chart Macro

Description

This macro adds JQplot based charts to Trac pages:

Bugs/Feature Requests

Existing bugs and feature requests for JqChartMacro are here.

If you have any issues, create a new ticket.

defect

2 / 3

enhancement

0 / 1

task

2 / 2

Download

Download the zipped source from here.

Source

You can check out JqChartMacro from here using Subversion, or browse the source with Trac.

Installation

General instructions on installing Trac plugins can be found on the TracPlugins page.

Configuration

Make sure that jqplotchart is enabled in your trac.ini file:

[components]
jqplotchart.* = enabled

Example

This creates a gauge counting the number of rows returned in report number 10.

{{{
#!JQChart
  "type": "MeterGauge",
  "report_id": 10,
  "options" : {
    "seriesDefaults": {
      "rendererOptions": {
        "label": "# bugs",
        "intervals": [4, 8, 12]
      }
    }
  }
}}}

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.

{{{
#!JQChart
  "width": 400,
  "height": 250,
  "query": "select type, time, id * 10, id from ticket order by time",
  "options" : {
    "title": "Creation date of each ticket, by type"
  },
  "series_column": "type"
}}}

The options element is the jqplot options parameter. See jqplot for more information.

Recent Changes

18440 by rjollos on 2021-07-15 02:38:34
1.0dev: Make compatible with Python 2.7

Refs #14037.

18439 by rjollos on 2021-07-15 02:22:25
1.0dev: Remove unnecessary semicolons

Refs #14037.

18438 by rjollos on 2021-07-15 02:20:46
1.0dev: Make compatible with Python 3 and Trac 1.6

Refs #14037.

(more)

Author/Contributors

Author: gpablo
Maintainer: Pablo
Contributors:

Attachments (4)

Download all attachments as: .zip