blob: 8c82907153534e877d1d9962c1335dc4f2d9ebcd [file] [log] [blame]
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="lib/esl.js"></script>
<script src="lib/config.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="lib/facePrint.js"></script>
<script src="lib/testHelper.js"></script>
<!-- <script src="ut/lib/canteen.js"></script> -->
<link rel="stylesheet" href="lib/reset.css" />
</head>
<body>
<style>
</style>
<div id="main0"></div>
<div id="main1"></div>
<div id="main2"></div>
<script>
require(['echarts'/*, 'map/js/china' */], function (echarts) {
var option;
option = {
"dataset": [
{
"source": [
[
"Mark3",
"Mark3_desc",
"Role4",
"Role4_desc"
],
[
"01",
"高档",
6789,
"6789.00"
],
[
"03",
"中档",
9546,
"9546.00"
],
[
"04",
"低档",
16892,
"16892.00"
]
]
}
],
"series": [
{
"type": "pie",
"datasetIndex": 0,
"name": "销售数量",
"encode": {
"value": "Role4",
"itemName": "Mark3_desc"
}
}
],
"visualMap": [
{
"show": false,
"inRange": {
"color": [
"#6EB9FF",
"#99DFA2",
"#FDAD29"
]
},
"dataDefIndex": 0,
"field": "FA_XS_MONTH.JGDC",
"type": "piecewise",
"categories": [
"高档",
"中档",
"低档"
],
"dimension": "Mark3_desc",
"seriesIndex": 0
}
],
"legend": {
"show": true
}
};
var chart = testHelper.create(echarts, 'main0', {
title: [
'Legend use color from visualMap',
'Test case from #10766'
],
option: option
});
});
</script>
<script>
require(['echarts'/*, 'map/js/china' */], function (echarts) {
var data = [
{value:335, name:'直接访问'},
{value:310, name:'邮件营销'},
{value:274, name:'联盟广告'},
{value:235, name:'视频广告'},
{value:400, name:'搜索引擎'}
].sort(function (a, b) { return a.value - b.value; });
var option = {
backgroundColor: '#2c343c',
legend: {
textStyle: {
color: '#fff'
}
},
visualMap: {
show: false,
min: 200,
max: 600,
inRange: {
colorLightness: [0, 1]
}
},
series : [
{
name:'访问来源',
type:'pie',
radius : '55%',
center: ['50%', '50%'],
data: data,
roseType: 'radius',
label: {
normal: {
textStyle: {
color: 'rgba(255, 255, 255, 0.3)'
}
}
},
labelLine: {
normal: {
lineStyle: {
color: 'rgba(255, 255, 255, 0.3)'
},
smooth: 0.2,
length: 10,
length2: 20
}
},
itemStyle: {
normal: {
color: '#c23531',
shadowBlur: 200,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
},
animationType: 'scale',
animationEasing: 'elasticOut',
animationDelay: function (idx) {
return Math.random() * 200;
}
}
]
};
var chart = testHelper.create(echarts, 'main1', {
title: [
'Legend use color from lightness visualMap.'
],
option: option
});
});
</script>
<script>
require(['echarts'/*, 'map/js/china' */], function (echarts) {
var option = {
legend: {
},
series: {
type: 'pie',
itemStyle: {
color: function (params) {
var colorList = ['#ff3322', '#232211', '#aabbcc'];
return colorList[params.dataIndex];
}
},
data: [
{name: 'First', value: 1222},
{name: 'Second', value: 2333},
{name: 'Third', value: 3444},
]
}
};
var chart = testHelper.create(echarts, 'main2', {
title: [
'Legend use color from callback'
],
option: option
});
});
</script>
</body>
</html>