芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/status.pulsehost.co.uk/themes/altum/assets/js/chartjs_defaults.js
/* Default chart settings */ const set_hex_opacity = (hex, alpha) => `${hex}${Math.floor(alpha * 255).toString(16).padStart(2, 0)}`; Chart.defaults.elements.line.borderWidth = 4; Chart.defaults.elements.point.radius = 3; Chart.defaults.elements.point.hoverRadius = 4; Chart.defaults.elements.point.borderWidth = 5; Chart.defaults.elements.point.hoverBorderWidth = 6; Chart.defaults.font.family = "-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'"; let chart_css = window.getComputedStyle(document.body); /* Default chart options */ let chart_options = { // animation: false, // animations: { // colors: false, // x: false, // }, // transitions: { // active: { // animation: { // duration: 0 // } // } // }, responsiveAnimationDuration: 0, elements: { line: { tension: 0 } }, interaction: { intersect: false, mode: 'index', }, plugins: { legend: { display: false }, tooltip: { boxPadding: 8, boxHeight: 12, boxWidth: 12, padding: 18, backgroundColor: chart_css.getPropertyValue('--gray-900'), cornerRadius: 8, titleColor: chart_css.getPropertyValue('--white'), titleSpacing: 30, titleFont: { size: 16, weight: 'bold' }, titleMarginBottom: 10, bodyColor: chart_css.getPropertyValue('--white'), bodyFont: { size: 14, }, bodySpacing: 10, footerMarginTop: 10, footerFont: { size: 12, weight: 'normal' }, caretSize: 6, caretPadding: 20, callbacks: { label: (context) => { return `${context.dataset.label}: ${nr(context.raw)}`; } } }, }, scales: { y: { beginAtZero: true, grid: { display: false }, ticks: { callback: (value, index, ticks) => { if(Math.floor(value) === value) { return nr(value); } }, } }, x: { grid: { display: false }, } }, responsive: true, maintainAspectRatio: false };