```html
body {
fontfamily: Arial, sansserif;
margin: 20px;
}
h1 {
textalign: center;
}
.chartcontainer {
width: 80%;
margin: 0 auto;
}
.chart {
width: 100%;
height: 400px;
}
// Data for Bitcoin Mining Machine Sales
const salesData = {
labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
datasets: [{
label: "Bitcoin Mining Machine Sales",
[5000, 5200, 5400, 5800, 6000, 5900, 6100, 6300, 6400, 6600, 6700, 6800],
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1
}]
};
// Creating chart
const ctx = document.getElementById('bitcoinChart').getContext('2d');
const bitcoinChart = new Chart(ctx, {
type: 'line',
salesData,
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});