import { Line } from "react-chartjs-2"; function LineChart({lineData}) { const data = { labels: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", ], datasets: [ { label: "Water", backgroundColor: "rgba(22, 82, 240, 0.75)", borderColor: "transparent", data: lineData.facebook, lineTension: 0, pointRadius: 0, borderWidth: 2, }, { label: "Water", backgroundColor: "rgba(22, 82, 240, 0.5)", borderColor: "transparent", data: lineData.youtube, lineTension: 0, // borderDash: [10, 5], borderWidth: 1, pointRadius: 0, }, ], }; const options = { responsive: true, maintainAspectRatio: false, legend: { display: false, }, scales: { xAxes: [ { stacked: true, barPercentage: 0.45, gridLines: { display: false, drawBorder: false, }, ticks: { // fontColor: "#8a909d", }, }, ], yAxes: [ { stacked: true, gridLines: { display: false, color: "#eee", }, ticks: { stepSize: 50, // fontColor: "#8a909d", }, }, ], }, tooltips: { mode: "index", intersect: false, titleFontColor: "#888", bodyFontColor: "#555", titleFontSize: 12, bodyFontSize: 15, backgroundColor: "rgba(256,256,256,0.95)", displayColors: true, xPadding: 10, yPadding: 7, borderColor: "rgba(220, 220, 220, 0.9)", borderWidth: 2, caretSize: 6, caretPadding: 5, }, }; return ( <> ); } export default LineChart;