- Notifications
You must be signed in to change notification settings - Fork70
Closed
Description
Currently there is no support for creating TreeMap type of charts. Would be great to add this (I can then also convert my last chart to ECharts_Java).
P.S Personally I actually only require little functionality, below is roughly the generated Javascript and as you can see the TreeMap Series specific attributes are very minimal (mostly the breadcrumb attribute). But can imagine others need more functionality.
{ title: { text: 'Asset Performance' }, visualMap: { min: -100.0, max: 100.0, dimension: 1, calculable: true, orient: 'horizontal', left: 'center', top: 'top', inRange : { color: ['#FF0000', '#00FF00'] } }, tooltip: { position: 'top', formatter: 'some format }, toolbox: { feature: { restore: {}, saveAsImage: {} } }, series : [{ name: 'Assets', type: 'treemap', data : ..., breadcrumb : { show: false }, }], backgroundColor: 'rgba(0,0,0,0)' }