plot12434467 = Plot.plot({
title: `${PaysSelectionne} - ${NormeSelectionne}`,
marks: [
Plot.dot(tableData3, {
x: xAxisValues,
y: 'certificates',
r: d => d.certificates * 5,
fill: 'blue',
fillOpacity: 0.5,
hoverinfo: 'text',
title: d => `Sector : ${d.sector}\nCertificates : ${d.certificates}`,
tip: true
})
],
width: 1000,
height: 300,
layout: {
margin: {l: 80, r: 20, t: 50, b: 50},
xaxis: {
tickvals: [1, 2, 3, 4, 5, 6, 7],
ticktext: ['1','2', '10', '15', '20', '25', '30', '35', '40'],
tickangle: -45,
automargin: true,
showticklabels: true
}
}
});