In Apache echarts I want to make more advanced layouts akin to matplotlib gridspec or row and col spanning in plotly. Is this doable? For example is it possible to make this layout in echarts?
>Solution :
You can specify each grid in absolute or relative coordiantes.
grid: [
{ left: '7%', top: '7%', right: '7%', height: '25%' },
{ left: '7%', top: '37%', width: '55%', height: '25%' },
{ left: '7%', bottom: '7%', width: '25%', height: '25%' },
{ right: '7%', bottom: '7%', width: '27%', height: '56%' }