Skip to content

Commit

Permalink
updated styling
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisMoschina committed Nov 14, 2024
1 parent f83b1c1 commit 5eb46dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion open_earable/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,16 @@

var labels = JSON.parse(labelsString);
var datasets = JSON.parse(datasetsString);

if (!datasets || !labels) {
console.error('Datasets or labels are null');
return;
}

datasets.forEach(dataset => {
dataset.pointStyle =false;
});

if (canvas.chartInitialized === true) {
console.log('Updating existing chart');
// Update the existing chart
Expand Down

0 comments on commit 5eb46dc

Please sign in to comment.