jQuery Sparkline Plugin ChangeLog http://omnipotent.net/jquery.sparkline/ 1.2 - 19/November/2008 + Fixed positioning of min/max line markers for fixed range graphs (thanks to Stéphane Busso) + Fixed rendering of bar charts with negative values + All values in a bar chart have a height now (min values used to have height = 0) + Added zeroColor option for bar charts which allows assignment of a different color for values that are equal to zero + Line charts can now specify both x and y values if required in one of three ways: a) Inline with HTML with values interleaved: x1:y1,x2:y2,x3:y3 eg. 1:10,5:8,7:10 b) Programatically using an x,y array for each value: $('#mychart').sparkline([ [1,10], [5,8], [7,10] ]); c) Programatically using a separate array for the x values: $('#mychart').sparkline( [10,8,10], { xvalues: [1,5,7] }); + Added chartRangeMin and chartRangeMax to line, bar and discrete graphs This allows you to artificialy fix the min/max values for the graph so that multiple graphs can share the same scale. + Added defaultPixelsPerValue option to specify how many pixels wide each value should be in a dynamically sized line graph + Added offset option to piecharts - Takes a positive or negative degree offset to start drawing the chart from. 1.1 - 29/July/2008 + Added minSpotColor and maxSpotColor to line charts - If set then spot markers are placed at the cordinates of the minimum and maximum values. + Added normalRangeMin and normalRangeMax to line charts - If set then a normalRangeColor band will be drawn on the graph + Added chart compositing - Applying another chart to a DOM element with an option of composite: true will cause the second (or more) chart to be overlayed on the first rather than replacing it. + Added optional colorMap option to tristate chart - This allows specific colors to be supplied for specific values + Added discrete chart type - Uses fixed size discrete vertical lines to mark each values in a series + Added bullet graph type - Implementation of Stephen Few's bullet graphs + Added pie chart type + Improved auto height option to match the line height of the containing element + Fixed some off by one positioning errors + Reduced the default radius of spot markers from 2 to 1.5 pixels 1.0 - 17/July/2008 + Initial Release