| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | <!DOCTYPE html><!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements.  See the NOTICE filedistributed with this work for additional informationregarding copyright ownership.  The ASF licenses this fileto you under the Apache License, Version 2.0 (the"License"); you may not use this file except in compliancewith the License.  You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing,software distributed under the License is distributed on an"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANYKIND, either express or implied.  See the License for thespecific language governing permissions and limitationsunder the License.--><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <script src="../../dist/echarts.js"></script>    <script src="../../map/js/china.js"></script></head><body>    <style>        body {            margin: 0;        }    </style>    <div id="main"></div>    <script type="module">        import bar from './option/bar';        import area from './option/area';        import scatter from './option/scatter';        import pie from './option/pie';        import graph from './option/graph';        import map from './option/map';        let options = [bar, area, scatter, pie, graph, map];        let mainDiv = document.querySelector('#main');        let theme = window.location.hash.slice(1);        let scriptTag = document.createElement('script');        scriptTag.src = '../' + theme + '.js';        scriptTag.onload = function () {            options.forEach(option => {                let div = document.createElement('div');                mainDiv.appendChild(div);                div.style.cssText = 'float:left;width:50%;height:400px';                let chart = echarts.init(div, theme);                option.animation = false;                chart.setOption(option);            });        }        document.body.appendChild(scriptTag);    </script></body></html>
 |