123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <html>
- <head>
- <meta charset="utf-8">
- <script src="lib/esl.js"></script>
- <script src="lib/config.js"></script>
- </head>
- <body>
- <style>
- html, body, #main {
- width: 100%;
- height: 100%;
- /* background-image: url(old_mathematics.png); */
- /* background-repeat: repeat; */
- }
- </style>
- <div id="main"></div>
- <script>
- var chart;
- require([
- 'echarts'
- ], function (echarts) {
- chart = echarts.init(document.getElementById('main'), null, {
- // renderer: 'svg'
- });
- var data = [{
- name: 'Grandpa',
- children: [{
- name: 'Uncle Leo',
- value: 15,
- children: [{
- name: 'Cousin Jack',
- value: 2
- }, {
- name: 'Cousin Mary',
- value: 5,
- children: [{
- name: 'Jackson',
- value: 2
- }]
- }, {
- name: 'Cousin Ben',
- value: 4
- }]
- }, {
- name: 'Aunt Jane',
- children: [{
- name: 'Cousin Kate',
- value: 4
- }]
- }, {
- name: 'Father',
- value: 10,
- children: [{
- name: 'Me',
- value: 5,
- itemStyle: {
- color: 'red'
- }
- }, {
- name: 'Brother Peter',
- value: 1
- }]
- }]
- }, {
- name: 'Mike',
- children: [{
- name: 'Uncle Dan',
- children: [{
- name: 'Cousin Lucy',
- value: 3
- }, {
- name: 'Cousin Luck',
- value: 4,
- children: [{
- name: 'Nephew',
- value: 2
- }]
- }]
- }]
- }, {
- name: 'Nancy',
- children: [{
- name: 'Uncle Nike',
- children: [{
- name: 'Cousin Betty',
- value: 1
- }, {
- name: 'Cousin Jenny',
- value: 2
- }]
- }]
- }];
- chart.setOption({
- visualMap: {
- type: 'continuous',
- min: 0,
- max: 10,
- inRange: {
- color: ['#2D5F73', '#538EA6', '#F2D1B3', '#F2B8A2', '#F28C8C']
- }
- },
- series: {
- type: 'sunburst',
- data: data,
- radius: [0, '90%'],
- label: {
- rotate: 'radial'
- }
- }
- });
- setTimeout(function () {
- chart.dispatchAction({
- type: 'sunburstHighlight',
- targetNodeId: 'Cousin Jenny'
- });
- }, 3000);
- setTimeout(function () {
- chart.dispatchAction({
- type: 'sunburstUnhighlight'
- });
- }, 5000);
- });
- </script>
- </body>
- </html>
|