wefra-odoo11/custom/scripts/d3js/current_real_gain.js

9 lines
289 B
JavaScript
Raw Normal View History

2019-10-02 21:28:58 +00:00
//var svg = SVG.init("#current_real_gain", 600, 400);
get_gauge(
"custom/scripts/ajax/current_real_gain.php",
"#current_real_gain",
function(dataset){ return dataset.current; }, //current
function(){ return 0; }, //min
function(dataset){ return dataset.max; } //max
);