// {
// const svg =
// d3.create("svg")
// .attr("width", "300px")
// .attr("height", "500px")
// .attr("viewBox", [0, 0, 300, 500])
// .attr("style",
// "max-width: 100%; height: auto; height: intrinsic;");
// // X axis
// var x = d3.scaleBand()
// .range([ 0, width ])
// .domain(data.map(function(d) { return d.Country; }))
// .padding(0.2);
// svg.append("g")
// .attr("transform", "translate(0," + height + ")")
// .call(d3.axisBottom(x))
// .selectAll("text")
// .attr("transform", "translate(-10,0)rotate(-45)")
// .style("text-anchor", "end");
// }
Plot.plot({
marks: [
Plot.barY(mydata,
{
x: "team",
y: "value",
name: "name"
})
],
style: {
color: "white",
backgroundColor: "transparent"
}
})