عنوان البلوك
سعر الذهب اليوم في
السعودية




عنوان البلوك
30 يوم
تغير السعر محلياً لعيار 21
جميع الأسعار بالريال السعودي
ريال سعودي

ريال سعودي

دولار أمريكي

ريال سعودي

const ctx = document.getElementById('goldChart');
new Chart(ctx, {
type: 'line',
data: {
labels: [
'26 أبريل', '28 أبريل', '30 أبريل', '02 مايو', '04 مايو', '06 مايو', '08 مايو', '10 مايو', '12 مايو', '14 مايو', '16 مايو', '18 مايو', '20 مايو', '22 مايو', '24 مايو', '25 مايو'
],
datasets: [{
data: [
493, 485, 489, 489, 478, 484, 499, 500, 505, 499, 483, 481, 475, 482, 477, 477
],
borderColor:'#0E8F4F',
borderWidth:3,
backgroundColor:'rgba(14,143,79,.10)',
fill:true,
tension:.4,
pointRadius:5,
pointHoverRadius:5,
pointBackgroundColor:'#fff',
pointBorderColor:'#0E8F4F',
pointBorderWidth:3
}]
},
options: {
responsive:true,
maintainAspectRatio:false,
plugins:{
legend:{ display:false }
},
scales:{
x:{
grid:{ display:false },
ticks:{
color:'#777',
font:{ size:14, family:'IBM Plex Sans Arabic' }
}
},
y:{
grid:{ color:'rgba(0,0,0,.05)' },
ticks:{
color:'#777',
font:{ size:14, family:'IBM Plex Sans Arabic' }
}
}
}
}
});