changeset 405:bec06654d67b

fixed decimals numbering in graph
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 17 Aug 2010 22:29:17 +0200
parents a10bdd0b05a7
children b153a51b1d3b
files pylons_app/templates/summary/summary.html
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pylons_app/templates/summary/summary.html	Tue Aug 17 15:40:22 2010 +0200
+++ b/pylons_app/templates/summary/summary.html	Tue Aug 17 22:29:17 2010 +0200
@@ -169,11 +169,11 @@
 			    			  points: { show: true, radius:0,fill:true },
 			    			  legend:{show:true, container:"legend_container"},
 			    	          selection: { mode: "xy" },
-			    	          yaxis:{tickSize:[1]},
+			    	          yaxis: {tickDecimals:0},
 				              xaxis: { mode: "time", timeformat: "%d",tickSize:[1, "day"],min:${c.ts_min},max:${c.ts_max} }, 
 				              grid: { hoverable: true, clickable: true,autoHighlight:true },
 					        });
-		        
+			        
 				    function showTooltip(x, y, contents) {
 				        var div=document.getElementById('tooltip');
 				        if(!div) {