I have verified that all of my data only exists in 2020.
I’ve been using this chart for months, and suddenly the Y-Axis goes back to the beginning of epoch time.
Any ideas as to why?
function buildChart() {
        chart = new CanvasJS.Chart(“chartContainer”, {
          animationEnabled: true,
          theme: “light2”,
          title: {
            text: “Overall Covid Count”
          },
          axisY: {
            title: “Cases”,
            titleFontSize: 24
          },
          data: [{
            type: “line”,
            yValueFormatString: “#,### positive”,
            dataPoints: dataPoints
          }]
        });
        chart.render();
      }
	- 
		This topic was modified 5 years, 3 months ago by  raketemensch. raketemensch.