parentChart = () => {
return Plot.plot({
title: 'Total Female Olympic Athletes by Sport',
subtitle: "Click to drilldown into a sport",
height:400,
width: 700,
marginLeft: 0,
x: {tickSize:0, grid:true, domain: [0, 1200]},
y: { tickSize:0, label:null, tickFormat: (y) => ''},
marks: [
Plot.barX(female_olympians, Plot.groupY(
{x: "count"},
{y: "sport", title: "sport", fill: '#01BAEF', insetTop:10, insetBottom:10, render: onClickDrilldown, sort: {y: "-x"}})),
Plot.text(female_olympians, Plot.groupY(
{x: "count", text: "count"},
{y: "sport", dx: 15, sort: {y: "-x"}})),
Plot.text(female_olympians, Plot.groupZ(
{y: "first", text: "first"},
{y: "sport", z: 'sport', x:0, text:"sport",textAnchor: "start", dy:-17, fontWeight:'bold', fontSize:13}))
],
tooltip: {fill: '#19E385', opacity: 1}
})
}