I have a Material UI dropdown component and a label. How to open this dropdown clicking the label?
<label>Dash style</label>
<DropDownMenu
value={this.props.seriesOptions.dashStyle}
onChange={this.handleDashChange} >
<MenuItem key={1} value={"Solid"} label="Solid" primaryText="Solid" />
<MenuItem key={2} value={"ShortDash"} label="ShortDash" primaryText="ShortDash" />
<MenuItem key={3} value={"ShortDot"} label="ShortDot" primaryText="ShortDot" />
</DropDownMenu>
react-tap-event-plugin?