The ButtonGroup with rounded corner has round edges on both sided. To ButtonGroup with rounded corner, e-round-corner
class is to be
added to the target element.
The following example illustrates how to create ButtonGroup with rounded corner.
<div class='e-btn-group e-round-corner'>
@Html.EJS().Button("html").Content("HTML").Render()
@Html.EJS().Button("css").Content("CSS").Render()
@Html.EJS().Button("javacript").Content("Javascript").Render()
</div>
public ActionResult Index()
{
return View();
}