12345678910111213141516171819202122232425262728293031 |
- import Chart from '../../../src/chart/map/ChartRotateMap/ChartRotateMap';
-
- let chart = new Chart(document.getElementsByClassName('c1')[0]);
- chart.render();
-
-
-
-
- const option = {
- color: ['#01FF91', '#00FFF0', '#00DEFF', '#009BFF', '#014EFF', '#6200FF', '#E400FF', '#FF50EB', '#FF9600', '#FFFF00', '#FFFFFF'],
- bg: {
- backgroundColor: "#000000"
- },
- earth:{
- innerEarthR: 180,
- outerEarthR: 260,
- x: '10%',
- y: '10%',
- inColor: '#ff0000',
- outColor: '#00ff00',
- lightShow: true,
- inLineColor: '#ffff00',
-
- },
-
- series: []
- };
-
-
-
|