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...
#6
(05.01.2022, 09:30)admin Wrote: You should only create a chart instance once then update it with new data. Keep in mind that this library does not work correctly if visualization scaling is enabled.
Code:
$(function(){
  var chart;

  grp.listen('20/3/200', function(obj) {
    var classImage = 'pie1';
    var idChart = 'chart1';
    const variableCourbes = ["20/3/0", "20/3/1", "20/3/2", "20/3/3", "20/3/4"];
   
    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: 300+20,
      height: 300+20,
      donut: true,
      donutWidth: 50,
      donutSolid: true,
      startAngle: 270,
      showLabel: true
    };

    if (chart) {
      chart.update(data);
    }
    else {
      var plans = $('.' + classImage)[0]
      plans.innerHTML = '<div class="" id="'+ idChart + '"></div>';
      chart = new Chartist.Pie('#'+idChart, data, options);
    }
  }, true);
});

Hi @admin, why it doesn't work if visualitzation sacling is enabled? Is there any way to solve it?
Thanks!
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 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: