STATISTIK DATA PEGAWAI PENGADILAN NEGERI ATAMBUA KELAS 1B
BULAN APRIL 2023
var ctx = document.getElementById("statistik").getContext("2d");
var data = {
labels: null,
datasets: [
{
label: "Masuk",
fill: false,
backgroundColor: "#F1C40F",
borderColor: "#F1C40F",
pointHoverBackgroundColor: "#F1C40F",
pointHoverBorderColor: "rgba(59, 100, 222, 1)",
data: null },
{
label: "Minutasi",
fill: false,
backgroundColor: "#2ECC71",
borderColor: "#2ECC71",
pointHoverBackgroundColor: "#2ECC71",
pointHoverBorderColor: "rgba(59, 100, 222, 1)",
data: null },
{
label: "Sisa",
fill: false,
backgroundColor: "#E74C3C",
borderColor: "#E74C3C",
pointHoverBackgroundColor: "#E74C3C",
pointHoverBorderColor: "rgba(59, 100, 222, 1)",
data: null }
]
};
var myBarChart = new Chart(ctx, {
type: 'line',
data: data,
options: {
tooltips: {
mode: 'index'
},
responsive:true,
hoverMode:'index',
stacked:false,
barValueSpacing: 20,
scales: {
yAxes: [{
type:'linear',
display:true,
ticks: {
min: 0,
}
}],
xAxes: [{
gridLines: {
color: "rgba(0, 0, 0, 0)",
}
}]
}
}
});