Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 2, 2021 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6055d2a1bb3805f11fd0abba6eca1141 to your computer and use it in GitHub Desktop.
Save parzibyte/6055d2a1bb3805f11fd0abba6eca1141 to your computer and use it in GitHub Desktop.
new Chart(document.querySelector("#graficaDias"), {
type: "line",
data: {
labels: ["Etiqueta 1", "Etiqueta 2"],
datasets: [
{
label: "Título del dataset",
data: [100, 200],
borderWidth: 1,
},
],
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment