Files
seweb/client/jsFiles/SEAWebClientGraphics.js
2020-12-04 09:05:06 +01:00

32 lines
804 B
JavaScript

// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
// % GRAPHICS
/*
var swiperGraphics = []; // This array contains graphics-swiper-Instances.
var begin = -10; // Time to look back (in seconds).
var timeServer; // Every time a graph-update-mesage is received the
// server-timestamp is stored.
var timeRange; // Range of time to regard (unix-time in seconds).
var blocks; // array of graphic-blocks sorted by units. (as from var_list, but values added)
var MARGIN_TOP = 10;
var MARGIN_RIGHT = 10;
var MARGIN_BOTTOM = 20;
var MARGIN_LEFT = 60;
var width;
var height;
var margin;
var scaleX;
zoomSelection = false;
function createCharts(graph) {
createCharts2(graph);
return
}
function updateCharts(graph){
updateCharts2(graph)
}