Skip to content

Instantly share code, notes, and snippets.

@zgramming
Created September 17, 2019 01:27
Show Gist options
  • Save zgramming/c718369ffbec625d3a9be2ac28735ff1 to your computer and use it in GitHub Desktop.
Save zgramming/c718369ffbec625d3a9be2ac28735ff1 to your computer and use it in GitHub Desktop.
<script>
window.onload = function() {
var tampil_kategori = '<?= $tampil_kategori ?>';
var newdataPoints = JSON.parse(tampil_kategori);
var jumlahBerita = new CanvasJS.Chart("chartContainer2", {
animationEnabled: true,
theme: "light2", // "light1", "light2", "dark1", "dark2"
title: {
text: "Jumlah Berita(per Kategori)"
},
data: [{
type: "column",
dataPoints: newdataPoints
}]
});
jumlahBerita.render();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment