в таком ключе, значение передается , все ок. 
var data = 111;
function initScriptedGauges() {
    new RadialGauge({
        renderTo: 'another-gauge',
        width: 800,
        height: 800,
        title: false,
        value: data,
По другому как мне надо не хочет....
<script>
	setInterval(function() { 
var getDataFromDOM = function (selector) {
  var el = document.querySelector(selector),
    values = el.textContent.replace(/[^\d,]/g, '').split(','),
    last = values.pop().split('');
 
  return values.concat(last);
};
 //обработка строки
var data = getDataFromDOM('#data');
document.querySelector('#qw').textContent = data[3]; 
initScriptedGauges(data[3]);
}, 100); 
  </script>
<script>
function initScriptedGauges(data) {
    new RadialGauge({
        renderTo: 'another-gauge',
        width: 800,
        height: 800, 
        title: false,
        value: data, 
    }).draw();
}
 
</script>