Changes between Version 13 and Version 14 of VisualizationPlugin


Ignore:
Timestamp:
Jan 2, 2012, 4:48:29 PM (12 years ago)
Author:
Rob Guttman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VisualizationPlugin

    v13 v14  
    116116
    117117=== Burndown chart on Milestone page ===
     118In the examples above, the data for the charts came from a report table found on the same page.  You can also create charts by [http://code.google.com/apis/chart/interactive/docs/queries.html querying remote data sources] for the data using data sources that conform to the [http://code.google.com/apis/chart/interactive/docs/dev/implementing_data_source.html Google Visualization Data Source API].  One such example is [wiki:SumStatsPlugin SumStats plugin] which provides a burndown data source amenable to graphing on any milestone page.  For example:
     119{{{
     120[viz.milestone]
     121# Burndown
     122type = ColumnChart
     123options = width:400,height:300,title:'Burndown',colors:['blue','lightgray'],isStacked:true,backgroundColor:{strokeWidth:1,stroke:'#999'}
     124source = https://trac.mycompany.com/sumstats/query
     125selector = #stats fieldset
     126}}}
    118127
     128The above will add a burndown chart to your milestone pages:
     129[[Image(burndown.png)]]
    119130
    120 
    121  * table
    122  * remote
    123131
    124132== Recent Changes ==