flot-data.js 3.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
// Flot Line Chart with Tooltips
$(document).ready(function() {
	console.log("document ready");
	var offset = 0;
	plot();

	function plot() {
		var sin = [], cos = [];
		for (var i = 0; i < 12; i += 0.2) {
			sin.push([ i, Math.sin(i + offset) ]);
			cos.push([ i, Math.cos(i + offset) ]);
		}

		var options = {
			series : {
				lines : {
					show : true
				},
				points : {
					show : true
				}
			},
			grid : {
				hoverable : true
			// IMPORTANT! this is needed for tooltip to work
			},
			yaxis : {
				min : -1.2,
				max : 1.2
			},
			tooltip : true,
			tooltipOpts : {
				content : "'%s' 的 %x.1 是 %y.4",
				shifts : {
					x : -60,
					y : 25
				}
			}
		};

		var plotObj = $.plot($("#flot-line-chart"), [ {
			data : sin,
			label : "sin(x)"
		}, {
			data : cos,
			label : "cos(x)"
		} ], options);
	}
});

// Flot Pie Chart with Tooltips
$(function() {

	var data = [ {
		label : "Safari浏览器",
		data : 1
	}, {
		label : "Firefox浏览器",
		data : 3
	}, {
		label : "IE浏览器",
		data : 9
	}, {
		label : "Chrome浏览器",
		data : 20
	} ];

	var plotObj = $.plot($("#flot-pie-chart"), data, {
		series : {
			pie : {
				show : true
			}
		},
		grid : {
			hoverable : true
		},
		tooltip : true,
		tooltipOpts : {
			content : "%p.0%, %s", // show percentages, rounding to 2 decimal places
			shifts : {
				x : 20,
				y : 0
			},
			defaultTheme : false
		}
	});

});

// Flot Chart Dynamic Chart
$(function() {

	var container = $("#flot-moving-line-chart");

	// Determine how many data points to keep based on the placeholder's initial size;
	// this gives us a nice high-res plot while avoiding more than one point per pixel.
	var maximum = container.outerWidth() / 2 || 300;

	var data = [];

	function getRandomData() {

		if (data.length) {
			data = data.slice(1);
		}

		while (data.length < maximum) {
			var previous = data.length ? data[data.length - 1] : 50;
			var y = previous + Math.random() * 10 - 5;
			data.push(y < 0 ? 0 : y > 100 ? 100 : y);
		}

		// zip the generated y values with the x values
		var res = [];
		for (var i = 0; i < data.length; ++i) {
			res.push([ i, data[i] ])
		}

		return res;
	}

	//

	series = [ {
		data : getRandomData(),
		lines : {
			fill : true
		}
	} ];

	//

	var plot = $.plot(container, series, {
		grid : {
			borderWidth : 1,
			minBorderMargin : 20,
			labelMargin : 10,
			backgroundColor : {
				colors : [ "#fff", "#e4f4f4" ]
			},
			margin : {
				top : 8,
				bottom : 20,
				left : 20
			},
			markings : function(axes) {
				var markings = [];
				var xaxis = axes.xaxis;
				for (var x = Math.floor(xaxis.min); x < xaxis.max; x += xaxis.tickSize * 2) {
					markings.push({
						xaxis : {
							from : x,
							to : x + xaxis.tickSize
						},
						color : "rgba(232, 232, 255, 0.2)"
					});
				}
				return markings;
			}
		},
		xaxis : {
			tickFormatter : function() {
				return "";
			}
		},
		yaxis : {
			min : 0,
			max : 110
		},
		legend : {
			show : true
		}
	});

	// Update the random dataset at 25FPS for a smoothly-animating chart
	setInterval(function updateRandom() {
		series[0].data = getRandomData();
		plot.setData(series);
		plot.draw();
	}, 40);

});