123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- Template Name: Monster Admin
- Author: Themedesigner
- Email: niravjoshi87@gmail.com
- File: js
- */
- // Real Time chart
- var data = [],
- totalPoints = 300;
- function getRandomData() {
- if (data.length > 0) data = data.slice(1);
- // Do a random walk
- while (data.length < totalPoints) {
- var prev = data.length > 0 ? data[data.length - 1] : 50,
- y = prev + Math.random() * 10 - 5;
- if (y < 0) {
- y = 0;
- } else if (y > 100) {
- y = 100;
- }
- data.push(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;
- }
- // Set up the control widget
- var updateInterval = 30;
- $("#updateInterval").val(updateInterval).change(function() {
- var v = $(this).val();
- if (v && !isNaN(+v)) {
- updateInterval = +v;
- if (updateInterval < 1) {
- updateInterval = 1;
- } else if (updateInterval > 3000) {
- updateInterval = 3000;
- }
- $(this).val("" + updateInterval);
- }
- });
- var plot = $.plot("#placeholder", [getRandomData()], {
- series: {
- shadowSize: 0 // Drawing is faster without shadows
- },
- yaxis: {
- min: 0,
- max: 100
- },
- xaxis: {
- show: false
- },
- colors: ["#55ce63"],
- grid: {
- color: "#AFAFAF",
- hoverable: true,
- borderWidth: 0,
- backgroundColor: '#FFF'
- },
- tooltip: true,
- tooltipOpts: {
- content: "Y: %y",
- defaultTheme: false
- }
- });
- function update() {
- plot.setData([getRandomData()]);
- // Since the axes don't change, we don't need to call plot.setupGrid()
- plot.draw();
- setTimeout(update, updateInterval);
- }
- update();
- //Flot Line Chart
- $(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
- },
- colors: ["#009efb", "#55ce63"],
- grid: {
- color: "#AFAFAF",
- hoverable: true,
- borderWidth: 0,
- backgroundColor: '#FFF'
- },
- tooltip: true,
- tooltipOpts: {
- content: "'%s' of %x.1 is %y.4",
- shifts: {
- x: -60,
- y: 25
- }
- }
- };
- var plotObj = $.plot($("#flot-line-chart"), [{
- data: sin,
- label: "sin(x)",
- }, {
- data: cos,
- label: "cos(x)"
- }], options);
- }
- });
|