graph_selector = select({
title: "",
options: ["Sole Producer", "Absolute value Graph", "Delta Graph"],
selected: "Sole Producer",
selectStyle: {
background: "linear-gradient(#e66465, #9198e5)",
"font-size": "15px",
height: "30px"
},
onchange: ({ select, value }) =>d3.select(select).style("background", graph_selector_color[value])
})