197 lines
6.1 KiB
HTML
Generated
197 lines
6.1 KiB
HTML
Generated
|
|
<!--
|
|
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">
|
|
<script src="lib/simpleRequire.js"></script>
|
|
<script src="lib/config.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="lib/reset.css" />
|
|
<script src="lib/testHelper.js"></script>
|
|
<script src="tooltipTestHelper.js"></script>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
h1 {
|
|
line-height: 60px;
|
|
height: 60px;
|
|
background: #871;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
color: #eee;
|
|
font-size: 14px;
|
|
}
|
|
.chart {
|
|
height: 350px;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
<h1>xAxis.axisPointer override tooltip.axisPointer | axisPointer label should not show</h1>
|
|
<div class="chart" id="line-style"></div>
|
|
<h1>coordSys.tooltip and series.tooltip override global tooltip in one ec-instance</h1>
|
|
<div class="chart" id="coords"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
require(['echarts'], function (echarts) {
|
|
|
|
var option = {
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'line',
|
|
lineStyle: {
|
|
color : 'blue',
|
|
shadowBlur: 4,
|
|
shadowColor: '#000',
|
|
shadowOffsetX: 3,
|
|
shadowOffsetY: 3
|
|
}
|
|
}
|
|
}
|
|
};
|
|
var baseTop = 90;
|
|
var height = 150;
|
|
var gap = 50;
|
|
makeCategoryGrid(option, {
|
|
grid: {top: baseTop, height: height},
|
|
yAxis: {name: 'tooltip lineStyle: "blue"'}
|
|
});
|
|
baseTop += height + gap;
|
|
makeCategoryGrid(option, {
|
|
grid: {top: baseTop, height: height},
|
|
yAxis: {name: 'xAxis lineStyle override tooltip lineStyle: "red"'},
|
|
xAxis: {
|
|
axisPointer: {
|
|
lineStyle: {
|
|
color: 'red'
|
|
}
|
|
}
|
|
}
|
|
});
|
|
baseTop += height + gap;
|
|
|
|
createChart('line-style', echarts, option, baseTop);
|
|
})
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
require(['echarts'], function (echarts) {
|
|
|
|
var option = {
|
|
tooltip: {
|
|
}
|
|
};
|
|
var baseTop = 90;
|
|
var height = 150;
|
|
var gap = 100;
|
|
makeCategoryGrid(option, {
|
|
grid: {
|
|
top: baseTop,
|
|
height: height,
|
|
tooltip: {
|
|
trigger: 'axis'
|
|
}
|
|
},
|
|
xAxis: {nameGap: 40, nameLocation: 'middle',
|
|
name: 'grid.tooltip trigger "axis"'}
|
|
});
|
|
baseTop += height + gap;
|
|
makeCategoryGrid(option, {
|
|
grid: {
|
|
top: baseTop,
|
|
height: height,
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {type: 'cross'},
|
|
formatter: 'this is a formatter:<br>{a0}<br>{a1}<br>{a2} '
|
|
}
|
|
},
|
|
xAxis: {nameGap: 40, nameLocation: 'middle',
|
|
name: 'grid.tooltip trigger "axis" and "cross", and use formatter'}
|
|
});
|
|
baseTop += height + gap;
|
|
|
|
option.series.push({
|
|
name: '访问来源',
|
|
type: 'pie',
|
|
radius : 80,
|
|
center: ['50%', baseTop + 80],
|
|
tooltip: {
|
|
formatter: "{a} <br/>{b} : {c} ({d}%)"
|
|
},
|
|
data:[
|
|
{value:335, name:'series.tooltip'},
|
|
{value:310, name:'邮件营销'},
|
|
{value:234, name:'联盟广告'},
|
|
{value:135, name:'视频广告'},
|
|
{value:1548, name:'搜索引擎'}
|
|
],
|
|
itemStyle: {
|
|
emphasis: {
|
|
shadowBlur: 10,
|
|
shadowOffsetX: 0,
|
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
|
}
|
|
}
|
|
});
|
|
baseTop += height + gap;
|
|
|
|
makeCategoryGrid(option, {
|
|
grid: {
|
|
top: baseTop,
|
|
height: height
|
|
},
|
|
xAxis: {nameGap: 40, nameLocation: 'middle',
|
|
name: 'default item trigger'}
|
|
});
|
|
baseTop += height + gap;
|
|
|
|
|
|
createChart('coords', echarts, option, baseTop);
|
|
})
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |