picograph.js Simple and tiny graphing library for javascript.
Simple and tiny graphing library for javascript.
<!DOCTYPE html>
<html>
<head>
<title>PicoGraphDemo</title>
<script src="picograph.js"></script>
</head>
<body style="font-family: Lucida Console, Monaco, monospace;">
<h1>PicoGraphDemo</h1>
<!-- Canvas for the graph -->
<canvas id="graphDemo"
style="width: 900px; height:200px; border:2px solid #000000;">
</canvas>
<!-- div for legends/labels -->
<div id="graphLabels"></div>
<script>
/* Create graph using picograph */
var demograph = createGraph("graphDemo",
["Random Y0", "Random Y1"],
"units", "graphLabels", 50, 10, 0, true, true);
/* Update values every second */
setInterval(updateEverySecond, 1000);
function updateEverySecond() {
/* Get new values */
yrand0 = Math.random()*10;
yrand1 = Math.random()*10;
/* Update graph */
demograph.update([yrand0, yrand1])
}
</script>
</body>
</html>
function createGraph(canvasID, labels, unit, labelDivID, intervalSize,
maxVal, vlines=false, timestamps=false, scalesteps=5, vlinesFreq = 1)
Arguments :
<canvas>
tag for the graph.<div>
tag to place graph labels/legend.vlinesFreq*intervalSize
. Increase this if the vertical lines are too crowded.Returns : Graph
object.
Graph.update(values)
Arguments :
Always use CSS or style
to set height and width of the canvas. Do not use height
and width
attributes of the canvas tag, it may cause scaling issues.
Correct Way:
<canvas id="graphDemo" style="width: 900px; height:200px">
Or you can use CSS flex box, the canvas should be surrounded by
<div style="flex-basis: 0; flex-grow: 1;">
Incorrect Way:
<canvas id="graphDemo" width=900 height=200">
Author: RainingComputers
Source Code: https://github.com/RainingComputers/picograph.js
JavaScript Shopping Cart - javascript shopping cart tutorial for beginnersBuy me a coffee 🍺 https://www.paypal.com/paypalme/ziddahSource Code: https://bit....
The essential JavaScript concepts that you should understand - For successful developing and to pass a work interview
JavaScript data types are kept easy. While JavaScript data types are mostly similar to other programming languages; some of its data types can be unique. Here, we’ll outline the data types of JavaScript.
Introduction With Basic JavaScript - Unlike most programming languages, the JavaScript language has no concept of input or output. It is designed to run as a scripting language in a host environment, and it is up to the host environment to provide mechanisms for communicating with the outside world.
The main goal of this article is help to readers to understand that how memory management system performs in JavaScript. I will use a shorthand such as GC which means Garbage Collection. When the browsers use Javascript, they need any memory location to store objects, functions, and all other things. Let’s deep in dive that how things going to work in GC.