Skip to content

Bug: when keep adding a constant value to the TimeSeries #112

@Jesministrator

Description

@Jesministrator

please try to run the codes below:
`<script type="text/javascript">

  // Random data
  var line1 = new TimeSeries();
  //var line2 = new TimeSeries();
  setInterval(function() {
	  
    line1.append(new Date().getTime(), 0.6);
    //line2.append(new Date().getTime(), 0.5);
  }, 1000);

  var smoothie = new SmoothieChart({ grid: { strokeStyle: 'rgb(125, 0, 0)', fillStyle: 'rgb(60, 0, 0)', lineWidth: 1, millisPerLine: 250, verticalSections: 6 } });
  smoothie.addTimeSeries(line1, { strokeStyle: 'rgb(0, 255, 0)', fillStyle: 'rgba(0, 255, 0, 0.4)', lineWidth: 3 });
  //smoothie.addTimeSeries(line2, { strokeStyle: 'rgb(255, 0, 255)', fillStyle: 'rgba(255, 0, 255, 0.3)', lineWidth: 3 });

  smoothie.streamTo(document.getElementById("mycanvas"), 1000);
</script>`

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions