<ChartComponent id='charts'
primaryXAxis={{
labelIntersectAction:'MultipleRows',
}}>
</ChartComponent> |
<DashboardLayoutComponent created={this.created.bind(this)} ref={(scope) => { this.dashboardObj = scope; }} >
<div id="one" className="e-panel" data-row="0" data-col="0" data-sizeX="1" data-sizeY="1">
<div className="e-panel-content">
<ChartComponent ref={(scope) => { this.chartObj = scope; }} height="100%" width="100%" id="charts" >
</ChartComponent>
</div>
</div>
</DashboardLayoutComponent>
created() {
// Refresh the chart component.
this.chartObj.refresh();
}
<style>
.e-chart {
height:100%;
width:100%;
}
</style> |
#edit_dashboard .e-panel-content {
height: calc(100% - 35px) !important;
overflow: visible;
width:100%;
}
#chart1, #chart2, #chart3, #chart4 {
overflow: visible ! important;
}
#layout_0 {
z-index: 1001 ! important;
} |