Javascript/棒グラフ

Aさん Bさん Cさん Dさん
営業成績
Aさん
Bさん
Cさん
Dさん
JavaScript
const graphA = document.getElementById("graphA");
const graphB = document.getElementById("graphB");
const graphC = document.getElementById("graphC");
const graphD = document.getElementById("graphD");
function change(graph, value){
  graph.style.width = value + "px";
};