This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

chartist to display nice pie...
#3
I still have a little issue explained with this picture:

   

The display is ok opn load, but at the first change of the knx object value of the script (20/3/200), the display change badly !
Any idea if it possible to fix it and keep auto scale of visualisation ?

Code:
//instantane pie
$(function(){
    grp.listen('20/3/200', function(obj, type) {

    var classImage ='pie1';
    var idChart ='chart1';
    var chart=[];
    const variableCourbes = ["20/3/0", "20/3/1", "20/3/2", "20/3/3", "20/3/4"];
    const hauteur='300px';
    const largeur='300px';
   
    var labelTab = [];
        var serieTab = [];
    var separateurNom = ' '
   
    for (let i = 0; i < variableCourbes.length; i++) {
      var id = Scada.encodeGroupAddress(variableCourbes[i]);
        var obj = objectStore.getObject(id);
        var nom = obj.name.split(separateurNom)[0]
     
      labelTab.push(nom);
      serieTab.push(obj.value);
    }
   
    var data = {
      labels: labelTab,
      series: serieTab
    };
    var options = {
      width: largeur,
      height: hauteur,
      donut: true,
          donutWidth: 50,
          donutSolid: true,
          startAngle: 270,
          showLabel: true
    };

    if (chart[idChart]) {
      chart[idChart].update(data);
    }
    else {
      var plans = $('.' + classImage)[0]
      plans.innerHTML = '';
      chart[idChart] = new Chartist.Pie('.'+classImage, data, options);
    }
  }, true);
});
-----------
FRANCE SMARTHOME & SMARTBUILDING INTEGRATION
SE ECO EXPERT
Reply


Messages In This Thread
chartist to display nice pie... - by domotiqa - 05.01.2022, 08:56
RE: chartist to display nice pie... - by jmir - 14.02.2022, 11:32
RE: chartist to display nice pie... - by domotiqa - 05.01.2022, 11:07
RE: chartist to display nice pie... - by jmir - 14.02.2022, 13:34
RE: chartist to display nice pie... - by jmir - 15.02.2022, 11:15
RE: chartist to display nice pie... - by Acla - 12.06.2023, 05:05
RE: chartist to display nice pie... - by JRP - 08.09.2022, 16:18
RE: chartist to display nice pie... - by Acla - 12.06.2023, 15:44
RE: chartist to display nice pie... - by jmir - 25.03.2024, 14:49

Forum Jump: