<!DOCTYPE html>
|
<!--
|
Licensed to the Apache Software Foundation (ASF) under one
|
or more contributor license agreements. See the NOTICE file
|
distributed with this work for additional information
|
regarding copyright ownership. The ASF licenses this file
|
to you under the Apache License, Version 2.0 (the
|
"License"); you may not use this file except in compliance
|
with the License. You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless 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 ANY
|
KIND, either express or implied. See the License for the
|
specific language governing permissions and limitations
|
under the License.
|
-->
|
|
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>Option View</title>
|
<script src="lib/esl.js"></script>
|
<script src="lib/config.js"></script>
|
<style type="text/css">
|
body {
|
margin: 0;
|
}
|
html, body, #option-view-chart {
|
height: 100%;
|
}
|
</style>
|
</head>
|
<body>
|
|
<div id="option-view-chart"></div>
|
<script src="./lib/jquery.min.js"></script>
|
|
<script>
|
|
var echarts;
|
var formatUtil;
|
var chart;
|
|
require([
|
'echarts'
|
// 'echarts/util/format',
|
// 'echarts/component/tooltip',
|
// 'echarts/component/legend',
|
// 'echarts/chart/treemap'
|
], function (ec) {
|
echarts = ec;
|
formatUtil = echarts.format;
|
|
chart = echarts.init($('#option-view-chart')[0]);
|
chart.showLoading();
|
|
$.getJSON('./data/option-view2.json', initEcharts);
|
});
|
|
function initEcharts(rawData) {
|
chart.hideLoading();
|
|
function convert(source, target, basePath) {
|
for (var key in source) {
|
var path = basePath ? (basePath + '.' + key) : key;
|
if (key.match(/^\$/)) {
|
|
}
|
else {
|
target.children = target.children || [];
|
var child = {
|
name: path
|
};
|
target.children.push(child);
|
convert(source[key], child, path);
|
}
|
}
|
|
if (!target.children) {
|
target.value = source.$count || 1;
|
}
|
else {
|
target.children.push({
|
name: basePath,
|
value: source.$count
|
});
|
}
|
}
|
|
var data = [];
|
|
convert(rawData, data, '');
|
|
chart.setOption({
|
title: {
|
text: 'ECharts 配置项查询分布',
|
subtext: '2016/04',
|
left: 'leafDepth'
|
},
|
tooltip: {},
|
series: [{
|
name: 'option',
|
type: 'treemap',
|
visibleMin: 300,
|
data: data.children,
|
leafDepth: 2,
|
label: {
|
normal: {
|
formatter: '{a|{a}} {b}\n{c|{c}}',
|
rich: {
|
a: {
|
// color: '#ffff00',
|
fontSize: 18
|
},
|
c: {
|
fontSize: 20,
|
color: '#918543'
|
}
|
}
|
}
|
},
|
levels: [
|
{
|
itemStyle: {
|
normal: {
|
borderColor: '#333',
|
borderWidth: 1,
|
gapWidth: 1
|
}
|
}
|
},
|
{
|
colorSaturation: [0.3, 0.6],
|
itemStyle: {
|
normal: {
|
borderColor: '#fff',
|
borderWidth: 1
|
}
|
}
|
}
|
]
|
}]
|
});
|
|
chart.getZr().on('mousedown', function (params) {
|
console.log(arguments);
|
});
|
}
|
|
$(window).resize(function () {
|
chart && chart.resize();
|
});
|
|
|
</script>
|
</body>
|
</html>
|