.html
<div class="overlay">
<ejs-menu id="menu" [items]='menuItems' title='' hamburgerMode='true' type='Over' style="background-color: white;">
</ejs-menu>
<ejs-chart [primaryXAxis]='xAxis' [primaryYAxis]='yAxis' [title]='chartTitle' [tooltip]='tooltipSettings'
[legendSettings]='legend' style="z-index: -1; width: fit-content; position: absolute;">
<e-series-collection>
<e-series [dataSource]='data' type='Spline' xName='month' yName='sales' name='Sales' [marker]='markerSettings'>
</e-series>
</e-series-collection>
</ejs-chart>
</div>
--------------------------------------------------------------------------------------------------------------------------------------------
.css
.overlay{
position: absolute;
width: 8%;
height: 5%;
font-size: 10px;
z-index: 1;
margin-top: 100px;
}
Here I'm using here Spline Chart and I've to place menu bar over the chart . So i have hamburgermode which is true . but i can't overlay on chart so Any one who can help me with this problem.