// ThreeD Garden Base Styles import typography from "~/themes/theme-light/base/typography" function configs(labels: any, datasets: any) { return { data: { labels, datasets: [...datasets], }, options: { responsive: true, plugins: { legend: { display: false, }, }, scales: { y: { grid: { drawBorder: false, display: true, drawOnChartArea: true, drawTicks: false, borderDash: [5, 5], }, ticks: { display: true, padding: 10, color: "#b2b9bf", font: { size: 11, family: typography.fontFamily, style: "normal", lineHeight: 2, }, }, }, x: { grid: { drawBorder: false, display: true, drawOnChartArea: true, drawTicks: false, borderDash: [5, 5], }, ticks: { display: true, color: "#b2b9bf", padding: 10, font: { size: 11, family: typography.fontFamily, style: "normal", lineHeight: 2, }, }, }, }, }, } } export default configs