ECharts 备忘单,对于初学者和有经验的开发人员都是很好的参考,由Echarts社区ECharts图表集维护
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ECharts</title>
<!-- 引入刚刚下载的 ECharts 文件 -->
<script src="echarts.js"></script>
</head>
<body>
<!-- 为 ECharts 准备一个定义了宽高的 DOM -->
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data: ['销量']
},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [
{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
<script src="echarts.js"></script>
下载地址:echarts-release
npm install echarts
<!-- 以下任选其一 -->
<!-- staticfile【国内推荐】 -->
<script src="https://cdn.staticfile.org/echarts/5.4.1/echarts.js"></script>
<!-- jsdelivr【国外推荐】 -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.1/dist/echarts.js"></script>
<!-- unpkg【国外推荐】-->
<script src="https://unpkg.com/browse/echarts@5.4.1/dist/echarts.js"></script>
npm install echarts --save
import * as echarts from 'echarts';
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 绘制图表
myChart.setOption({
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [
{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
});
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
</script>
<style>
#main,
html,
body {
width: 100%;
}
#main {
height: 400px;
}
</style>
<div id="main"></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
window.onresize = function() {
myChart.resize();
};
</script>
myChart.resize({
width: 800,
height: 400
});
<div id="main"></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'), null, {
width: 600,
height: 400
});
</script>
myChart.on('click', function(params) {
// 控制台打印数据的名称
console.log(params.name);
});
请参阅:鼠标事件
// 基于准备好的dom,初始化ECharts实例
// var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [
{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
// 处理点击事件并且跳转到相应的百度搜索页面
myChart.on('click', function(params) {
window.open('https://www.baidu.com/s?wd=' + encodeURIComponent(params.name));
});
:- | - |
---|---|
click | 单击触发 |
dblclick | 双击触发 |
mousedown | 鼠标按下触发 |
mousemove | 元素内部移动不断触发 |
mouseup | 鼠标释放触发 |
mouseover | 鼠标移入触发 |
mouseout | 鼠标移出触发 |
globalout | 移出图表触发 |
contextmenu | 右键单击触发 |
var option = {
// 全图默认背景
// backgroundColor: 'rgba(0,0,0,0)',
// 默认色板,一级属性,是个数组,在折线图中,color里面有几种颜色就对应series里面的几组数据,一个颜色对应一条折线
// 也可以在series>itemStyle>color进行颜色设置
color: [
'#ff7f50',
'#87cefa',
'#da70d6',
'#32cd32',
'#6495ed',
'#ff69b4',
'#ba55d3',
'#cd5c5c',
'#ffa500',
'#40e0d0',
'#1e90ff',
'#ff6347',
'#7b68ee',
'#00fa9a',
'#ffd700',
'#6699FF',
'#ff6666',
'#3cb371',
'#b8860b',
'#30e0e0',
],
// 图表标题
title: {
text: '图表标题',
subtext: '二级标题',
x: 'left', // 水平安放位置,默认为左对齐,可选为:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x坐标,单位px)
y: 'top', // 垂直安放位置,默认为全图顶端,可选为:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y坐标,单位px)
//textAlign: null // 水平对齐方式,默认根据x设置自动调整
backgroundColor: 'rgba(0,0,0,0)',
borderColor: '#ccc', // 标题边框颜色
borderWidth: 0, // 标题边框线宽,单位px,默认为0(无边框)
padding: 5, // 标题内边距,单位px,默认各方向内边距为5,
// 接受数组分别设定上右下左边距,同css
itemGap: 10, // 主副标题纵向间隔,单位px,默认为10,
textStyle: {
fontSize: 18,
fontWeight: 'bolder',
color: '#333', // 主标题文字颜色
},
subtextStyle: {
color: '#aaa', // 副标题文字颜色
},
},
// 图例
legend: {
show: true,
orient: 'horizontal', // 布局方式,默认为水平布局,可选为:
// 'horizontal' ¦ 'vertical'
x: 'center', // 水平安放位置,默认为全图居中,可选为:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x坐标,单位px)
y: 'top', // 垂直安放位置,默认为全图顶端,可选为:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y坐标,单位px)
itemWidth: 20, // 图例图形宽度
itemHeight: 14, // 图例图形高度
backgroundColor: 'rgba(0,0,0,0)',
borderColor: '#ccc', // 图例边框颜色
borderWidth: 0, // 图例边框线宽,单位px,默认为0(无边框)
padding: 5, // 图例内边距,单位px,默认各方向内边距为5,
// 接受数组分别设定上右下左边距,同css
itemGap: 10, // 各个item之间的间隔,单位px,默认为10,
// 横向布局时为水平间隔,纵向布局时为纵向间隔
selectedMode: false, // 关闭legend鼠标点击事件和悬浮效果
textStyle: {
color: '#333', // 图例文字颜色
},
},
// 值域
dataRange: {
orient: 'vertical', // 布局方式,默认为垂直布局,可选为:
// 'horizontal' ¦ 'vertical'
x: 'left', // 水平安放位置,默认为全图左对齐,可选为:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x坐标,单位px)
y: 'bottom', // 垂直安放位置,默认为全图底部,可选为:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y坐标,单位px)
backgroundColor: 'rgba(0,0,0,0)',
borderColor: '#ccc', // 值域边框颜色
borderWidth: 0, // 值域边框线宽,单位px,默认为0(无边框)
padding: 5, // 值域内边距,单位px,默认各方向内边距为5,
// 接受数组分别设定上右下左边距,同css
itemGap: 10, // 各个item之间的间隔,单位px,默认为10,
// 横向布局时为水平间隔,纵向布局时为纵向间隔
itemWidth: 20, // 值域图形宽度,线性渐变水平布局宽度为该值 * 10
itemHeight: 14, // 值域图形高度,线性渐变垂直布局高度为该值 * 10
splitNumber: 5, // 分割段数,默认为5,为0时为线性渐变
color: ['#1e90ff', '#f0ffff'], //颜色
//text:['高','低'], // 文本,默认为数值文本
textStyle: {
color: '#333', // 值域文字颜色
},
},
// 可以显示下载当前图标按钮
toolbox: {
orient: 'horizontal', // 布局方式,默认为水平布局,可选为:
// 'horizontal' ¦ 'vertical'
x: 'right', // 水平安放位置,默认为全图右对齐,可选为:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x坐标,单位px)
y: 'top', // 垂直安放位置,默认为全图顶端,可选为:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y坐标,单位px)
color: ['#1e90ff', '#22bb22', '#4b0082', '#d2691e'],
backgroundColor: 'rgba(0,0,0,0)', // 工具箱背景颜色
borderColor: '#ccc', // 工具箱边框颜色
borderWidth: 0, // 工具箱边框线宽,单位px,默认为0(无边框)
padding: 5, // 工具箱内边距,单位px,默认各方向内边距为5,
// 接受数组分别设定上右下左边距,同css
itemGap: 10, // 各个item之间的间隔,单位px,默认为10,
// 横向布局时为水平间隔,纵向布局时为纵向间隔
itemSize: 16, // 工具箱图形宽度
featureImageIcon: {}, // 自定义图片icon
featureTitle: {
mark: '辅助线开关',
markUndo: '删除辅助线',
markClear: '清空辅助线',
dataZoom: '区域缩放',
dataZoomReset: '区域缩放后退',
dataView: '数据视图',
lineChart: '折线图切换',
barChart: '柱形图切换',
restore: '还原',
saveAsImage: '保存为图片',
},
},
// 提示框
tooltip: {
trigger: 'item', // 触发类型,默认数据触发,见下图,可选为:'item' ¦ 'axis'
showDelay: 20, // 显示延迟,添加显示延迟可以避免频繁切换,单位ms
hideDelay: 100, // 隐藏延迟,单位ms
transitionDuration: 0.4, // 动画变换时间,单位s
backgroundColor: 'rgba(0,0,0,0.7)', // 提示背景颜色,默认为透明度为0.7的黑色
borderColor: '#333', // 提示边框颜色
borderRadius: 4, // 提示边框圆角,单位px,默认为4
borderWidth: 0, // 提示边框线宽,单位px,默认为0(无边框)
padding: 5, // 提示内边距,单位px,默认各方向内边距为5,
// 接受数组分别设定上右下左边距,同css
// 绝对位置,相对于容器左侧 10px, 上侧 10 px
position: [10, 10], //['50%', '50%']相对位置,放置在容器正中间
axisPointer: {
// 坐标轴指示器,坐标轴触发有效
type: 'line', // 默认为直线,可选为:'line' | 'shadow'
lineStyle: {
// 直线指示器样式设置
color: '#48b',
width: 2,
type: 'solid',
},
shadowStyle: {
// 阴影指示器样式设置
width: 'auto', // 阴影大小
color: 'rgba(150,150,150,0.3)', // 阴影颜色
},
},
textStyle: {
color: '#fff',
},
},
// 区域缩放控制器
dataZoom: {
orient: 'horizontal', // 布局方式,默认为水平布局,可选为:
// 'horizontal' ¦ 'vertical'
// x: {number}, // 水平安放位置,默认为根据grid参数适配,可选为:
// {number}(x坐标,单位px)
// y: {number}, // 垂直安放位置,默认为根据grid参数适配,可选为:
// {number}(y坐标,单位px)
// width: {number}, // 指定宽度,横向布局时默认为根据grid参数适配
// height: {number}, // 指定高度,纵向布局时默认为根据grid参数适配
backgroundColor: 'rgba(0,0,0,0)', // 背景颜色
dataBackgroundColor: '#eee', // 数据背景颜色
fillerColor: 'rgba(144,197,237,0.2)', // 填充颜色
handleColor: 'rgba(70,130,180,0.8)', // 手柄颜色
},
// 网格配置,在折线图、柱状图中,指的是矩形图表和echarts容器盒子边框的距离,不含刻度标签、图例等
grid: {
x: 80,
y: 60,
x2: 80,
y2: 60,
containLabel: true, // grid 区域是否包含坐标轴的刻度标签;在柱状图折线图中,值为true表示刻度标签到画布边框的距离,值为false表示轴线与画布边框的距离
// width: {totalWidth} - x - x2,
// height: {totalHeight} - y - y2,
backgroundColor: 'rgba(0,0,0,0)',
borderWidth: 1,
show: true, //表格边框,搭配borderColor显示出边框
borderColor: '#ccc',
},
// 类目和值 =============
// valueAxis和categoryAxis指的是X轴(xAxis)和Y轴(yAxis),具体需要根据里面的type='category/value'选项,来对类目/值进行X轴还是Y轴摆放进行处理
// 类目轴
categoryAxis: {
position: 'bottom', // 位置
nameLocation: 'end', // 坐标轴名字位置,支持'start' | 'end'
boundaryGap: true, // 类目起始和结束两端空白策略,决定了刻度标签是在刻度正下方显示或者是在两个刻度之间显示
// 常用的三个属性axisLine轴线(X/Y轴),axisTick刻度,axisLabel刻度标签
axisLine: {
// 坐标轴线,指X/Y轴,不包含内部的网格线
show: true, // 默认显示,属性show控制显示与否
lineStyle: {
// 属性lineStyle控制线条样式
color: '#48b',
width: 2,
type: 'solid',
},
},
axisTick: {
// 坐标轴刻度线,通过show属性来决定显示与隐藏
show: true, // 属性show控制显示与否,默认不显示
interval: 'auto',
// onGap: null,
inside: false, // 控制小标记是否在grid里
length: 5, // 属性length控制线长
lineStyle: {
// 属性lineStyle控制线条样式
color: '#333',
width: 1,
},
},
axisLabel: {
// 坐标轴文本标签,详见axis.axisLabel
show: true,
interval: 'auto',
rotate: 0,
margin: 8,
// formatter: null,
textStyle: {
// 其余属性默认使用全局文本样式,详见TEXTSTYLE
color: '#333',
},
},
splitLine: {
// 分隔线,在折线图/柱状图中,如果想把坐标轴面板绘制成网格,那么可以在xAxis和yAxis都添加这个属性,也可以单独设置X轴或Y轴当中的一个,形成分割线
show: true, // 默认显示,属性show控制显示与否
// onGap: null,
lineStyle: {
// 属性lineStyle(详见lineStyle)控制线条样式
color: ['#ccc'],
width: 1,
type: 'solid', // solid/dashed/dotted 实/虚/点
},
},
splitArea: {
// 分隔区域
show: false, // 默认不显示,属性show控制显示与否
// onGap: null,
areaStyle: {
// 属性areaStyle(详见areaStyle)控制区域样式
color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)'],
},
},
},
// 数值型坐标轴默认参数
valueAxis: {
position: 'left', // 位置
min: 0, //最小值
max: 100,
interval: 5, //强制设置坐标轴分割间隔
splitNumber: 5, //坐标轴的分割段数,需要注意的是这个分割段数只是个预估值,最后实际显示的段数会在这个基础上根据分割后坐标轴刻度显示的易读程度作调整。在类目轴中无效。
// name、nameLocation、nameTextStyle三者结合,用于调整x、y轴箭头上方显示单位的位置、样式
name: '\n\n%', //这里的\n能实现名称的换行
nameLocation: 'end', // 坐标轴名字位置,支持'start' | 'end'
nameTextStyle: {
// 坐标轴文字样式,默认取全局样式
color: '#3D5063',
fontWeight: 400,
fontSize: 14,
padding: 10,
},
boundaryGap: [0, 0], // 类目起始和结束两端空白策略,决定了刻度标签是在刻度正下方显示或者是在两个刻度之间显示
splitNumber: 5, // 分割段数,默认为5
// axisLine轴线(X/Y轴),axisTick刻度,axisLabel刻度标签
axisLine: {
// 坐标轴线,指X/Y轴,不包含内部的网格线
show: true, // 默认显示,属性show控制显示与否
lineStyle: {
// 属性lineStyle控制线条样式
color: '#48b',
width: 2,
type: 'solid',
},
},
axisTick: {
// 坐标轴刻度线,通过show属性来决定显示与隐藏
show: false, // 属性show控制显示与否,默认不显示
inside: false, // 控制小标记是否在grid里
length: 5, // 属性length控制线长
lineStyle: {
// 属性lineStyle控制线条样式
color: '#333',
width: 1,
},
},
axisLabel: {
// 坐标轴文本标签,详见axis.axisLabel
show: true,
rotate: 0,
margin: 8,
// formatter: null,
textStyle: {
// 其余属性默认使用全局文本样式,详见TEXTSTYLE
color: '#333',
},
},
splitLine: {
// 分隔线,在折线图/柱状图中,如果想把坐标轴面板绘制成网格,那么可以在xAxis和yAxis都添加这个属性,也可以单独控制其中的一个
show: true, // 默认显示,属性show控制显示与否
lineStyle: {
// 属性lineStyle(详见lineStyle)控制线条样式
color: ['#ccc'],
width: 1,
type: 'solid', // solid/dashed/dotted 实/虚/点
},
},
splitArea: {
// 分隔区域
show: false, // 默认不显示,属性show控制显示与否
areaStyle: {
// 属性areaStyle(详见areaStyle)控制区域样式
color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)'],
},
},
series: [
{
name: 'Email',
type: 'line',
stack: 'Total', // 数据堆叠,一般不需要使用这个
data: [120, 132, 101, 134, 90, 230, 210], // 这里的数据跟legend里面的是一样的,所以legend里面可以不放data数据
},
],
},
polar: {
center: ['50%', '50%'], // 默认全局居中
radius: '75%',
startAngle: 90,
splitNumber: 5,
name: {
show: true,
textStyle: {
// 其余属性默认使用全局文本样式,详见TEXTSTYLE
color: '#333',
},
},
axisLine: {
// 坐标轴线
show: true, // 默认显示,属性show控制显示与否
lineStyle: {
// 属性lineStyle控制线条样式
color: '#ccc',
width: 1,
type: 'solid', //dashed/dotted
},
},
axisLabel: {
// 坐标轴文本标签,详见axis.axisLabel
show: false,
textStyle: {
// 其余属性默认使用全局文本样式,详见TEXTSTYLE
color: '#333',
},
},
splitArea: {
show: true,
areaStyle: {
color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)'],
},
},
splitLine: {
show: true,
lineStyle: {
width: 1,
color: '#ccc',
},
},
},
// 柱形图默认参数
bar: {
inverse: true, // 数据翻转,决定了x轴/y轴的数据是从左到右还是从右到左的顺序排列,跟饼图的clockWise类似,使数据反方向排列
barMinHeight: 0, // 最小高度改为0
barWidth: null, // 默认自适应
barGap: '30%', // series内有`多组`数据的时候可以设置,表示柱间距离,默认为柱形宽度的30%,可设固定值
barCategoryGap: '20%', // 针对series内`同一组`数据设置,表示类目间柱形距离,默认为类目间距的20%,可设固定值
itemStyle: {
normal: {
color: '各异', // 和option的一级属性一样,都可以设置对应类目的颜色
barBorderColor: '#fff', // 柱条边线
barBorderRadius: 0, // 柱条边线圆角,单位px,默认为0
barBorderWidth: 1, // 柱条边线线宽,单位px,默认为1
label: {
// 在柱子内部显示数据,一般搭配formatter:{}使用
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
emphasis: {
// color: '各异',
barBorderColor: 'rgba(0,0,0,0)', // 柱条边线
barBorderRadius: 0, // 柱条边线圆角,单位px,默认为0
barBorderWidth: 1, // 柱条边线线宽,单位px,默认为1
label: {
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
},
},
// 折线图默认参数,如果需要设置折线图的线为平滑曲线,需要在对应的series里面添加smooth属性
line: {
itemStyle: {
normal: {
label: {
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
color: '#ffc600', //改变折线点的颜色
lineStyle: {
// 线条的设置
color: '#ff0', //改变折线颜色
width: 2,
type: 'solid',
shadowColor: 'rgba(0,0,0,0)', //默认透明
shadowBlur: 5,
shadowOffsetX: 3,
shadowOffsetY: 3,
},
},
emphasis: {
// color: 各异,
label: {
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
},
smooth: true, //true曲线; false折线
symbol: 'circle', // 拐点样式,圆形/方形/箭头等
symbolSize: 2, // 拐点图形大小
showSymbol: false, // 标志图形默认只有主轴显示(随主轴标签间隔隐藏策略)
//symbolRotate : null, // 拐点图形旋转控制
},
// K线图默认参数
k: {
// barWidth : null // 默认自适应
// barMaxWidth : null // 默认自适应
itemStyle: {
normal: {
color: '#fff', // 阳线填充颜色
color0: '#00aa11', // 阴线填充颜色
lineStyle: {
width: 1,
color: '#ff3200', // 阳线边框颜色
color0: '#00aa11', // 阴线边框颜色
},
},
emphasis: {
// color: 各异,
// color0: 各异
},
},
},
// 散点图默认参数
scatter: {
//symbol: null, // 图形类型
symbolSize: 4, // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
//symbolRotate : null, // 图形旋转控制
large: false, // 大规模散点图
largeThreshold: 2000, // 大规模阀值,large为true且数据量>largeThreshold才启用大规模模式
itemStyle: {
normal: {
// color: 各异,
label: {
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
emphasis: {
// color: '各异'
label: {
show: false,
// position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
// 'inside'|'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
},
},
// 雷达图默认参数
radar: {
itemStyle: {
normal: {
// color: 各异,
label: {
show: false,
},
lineStyle: {
width: 2,
type: 'solid',
},
},
emphasis: {
// color: 各异,
label: {
show: false,
},
},
},
//symbol: null, // 拐点图形类型
symbolSize: 2, // 可计算特性参数,空数据拖拽提示图形大小
//symbolRotate : null, // 图形旋转控制
},
// 饼图默认参数
pie: {
center: ['50%', '50%'], // 默认全局居中,可以理解为圆环中心点的坐标
radius: [0, '75%'], // 饼图的大小,一个是内环半径,一个是外环半径,测试时可以将其中一个数值改为100%,方便看出圆环所处位置,再通过center调试中心点坐标
roseType: 'area', // area面积模式:通过面积来表现值、radius半径模式:通过半径来表现值的大小
animation: false, // 关闭初始动画
silent: true, // 关闭所有动画效果
clockWise: false, // 默认逆时针,修改参数对应方向,跟柱状图的inverse类似
startAngle: 90,
minAngle: 0, // 最小角度改为0
selectedOffset: 10, // 选中是扇区偏移量
itemStyle: {
normal: {
// color: 各异,
color: {
// 设置渐变色
// 完成的圆环的颜色
colorStops: [
{
offset: 0,
color: '#f00', // 0% 处的颜色
},
{
offset: 1,
color: '#367bec', // 100% 处的颜色
},
],
},
borderColor: '#fff',
borderWidth: 1,
label: {
// 图形上的文字标签
show: true,
position: 'outside', //提示词的位置,outside表示显示在饼图外面,跟视觉引导线连接,inside表示显示在饼图里面
padding: [10, 20],
formatter: '{c}万元\n\n', //能识别 \n
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
labelLine: {
// 标签视觉引导线,连接文字标签的线
show: true,
length: 20, // 连接图形的那条线
length2: 10, // 第一条线拐点处,连接文字的那条线
lineStyle: {
// color: 各异,
width: 1,
type: 'solid',
},
},
},
emphasis: {
// color: 各异,
borderColor: 'rgba(0,0,0,0)',
borderWidth: 1,
label: {
show: false,
// position: 'outer'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
labelLine: {
// 标签视觉引导线,连接文字标签的线
show: false,
length: 20,
lineStyle: {
// color: 各异,
width: 1,
type: 'solid',
},
},
},
},
},
map: {
mapType: 'china', // 各省的mapType暂时都用中文
mapLocation: {
x: 'center',
y: 'center',
// width // 自适应
// height // 自适应
},
showLegendSymbol: true, // 显示图例颜色标识(系列标识的小圆点),存在legend时生效
itemStyle: {
normal: {
// color: 各异,
borderColor: '#fff',
borderWidth: 1,
areaStyle: {
// 地图的背景色
color: '#ccc', //rgba(135,206,250,0.8)
},
label: {
show: false,
textStyle: {
color: 'rgba(139,69,19,1)',
},
},
},
emphasis: {
// 也是选中样式
// color: 各异,
borderColor: 'rgba(0,0,0,0)',
borderWidth: 1,
areaStyle: {
color: 'rgba(255,215,0,0.8)',
},
label: {
show: false,
textStyle: {
color: 'rgba(139,69,19,1)',
},
},
},
},
},
force: {
// 数据map到圆的半径的最小值和最大值
minRadius: 10,
maxRadius: 20,
density: 1.0,
attractiveness: 1.0,
// 初始化的随机大小位置
initSize: 300,
// 向心力因子,越大向心力越大
centripetal: 1,
// 冷却因子
coolDown: 0.99,
// 分类里如果有样式会覆盖节点默认样式
itemStyle: {
normal: {
// color: 各异,
label: {
show: false,
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
nodeStyle: {
brushType: 'both',
color: '#f08c2e',
strokeColor: '#5182ab',
},
linkStyle: {
strokeColor: '#5182ab',
},
},
emphasis: {
// color: 各异,
label: {
show: false,
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
nodeStyle: {},
linkStyle: {},
},
},
},
chord: {
radius: ['65%', '75%'],
center: ['50%', '50%'],
padding: 2,
sort: 'none', // can be 'none', 'ascending', 'descending'
sortSub: 'none', // can be 'none', 'ascending', 'descending'
startAngle: 90,
clockWise: false,
showScale: false,
showScaleText: false,
itemStyle: {
normal: {
label: {
show: true,
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
lineStyle: {
width: 0,
color: '#000',
},
chordStyle: {
lineStyle: {
width: 1,
color: '#666',
},
},
},
emphasis: {
lineStyle: {
width: 0,
color: '#000',
},
chordStyle: {
lineStyle: {
width: 2,
color: '#333',
},
},
},
},
},
island: {
r: 15,
calculateStep: 0.1, // 滚轮可计算步长 0.1 = 10%
},
markPoint: {
symbol: 'pin', // 标注类型
symbolSize: 10, // 标注大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
//symbolRotate : null, // 标注旋转控制
itemStyle: {
normal: {
// color: 各异,
// borderColor: 各异, // 标注边线颜色,优先于color
borderWidth: 2, // 标注边线线宽,单位px,默认为1
label: {
show: true,
position: 'inside', // 可选为'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
emphasis: {
// color: 各异
label: {
show: true,
// position: 'inside' // 'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
},
},
},
markLine: {
// 标线起始和结束的symbol介绍类型,如果都一样,可以直接传string
symbol: ['circle', 'arrow'],
// 标线起始和结束的symbol大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
symbolSize: [2, 4],
// 标线起始和结束的symbol旋转控制
//symbolRotate : null,
itemStyle: {
normal: {
// color: 各异, // 标线主色,线色,symbol主色
// borderColor: 随color, // 标线symbol边框颜色,优先于color
borderWidth: 2, // 标线symbol边框线宽,单位px,默认为2
label: {
show: false,
// 可选为 'start'|'end'|'left'|'right'|'top'|'bottom'
position: 'inside',
textStyle: {
// 默认使用全局文本样式,详见TEXTSTYLE
color: '#333',
},
},
lineStyle: {
// color: 随borderColor, // 主色,线色,优先级高于borderColor和color
// width: 随borderWidth, // 优先于borderWidth
type: 'solid',
shadowColor: 'rgba(0,0,0,0)', //默认透明
shadowBlur: 5,
shadowOffsetX: 3,
shadowOffsetY: 3,
},
},
emphasis: {
// color: 各异
label: {
show: false,
// position: 'inside' // 'left'|'right'|'top'|'bottom'
// textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
},
lineStyle: {},
},
},
yAxis: 50, // 与x轴线平行的标线,可以填写具体的数值,也可以填写平均值、最小值、最大值
xAxis: 80, // 与y轴线平行的标线
},
textStyle: {
decoration: 'none',
fontFamily: 'Arial, Verdana, sans-serif',
fontFamily2: '微软雅黑', // IE8- 字体模糊并且不支持不同字体混排,额外指定一份
fontSize: 12,
fontStyle: 'normal',
fontWeight: 'normal',
},
// 默认标志图形类型列表
symbolList: [
'circle',
'rectangle',
'triangle',
'diamond',
'emptyCircle',
'emptyRectangle',
'emptyTriangle',
'emptyDiamond',
],
loadingText: 'Loading...',
// 可计算特性配置,孤岛,提示颜色
calculable: false, // 默认关闭可计算特性
calculableColor: 'rgba(255,165,0,0.6)', // 拖拽提示边框颜色
calculableHolderColor: '#ccc', // 可计算占位提示颜色
nameConnector: ' & ',
valueConnector: ' : ',
animation: true,
animationThreshold: 2500, // 动画元素阀值,产生的图形原素超过2500不出动画
addDataAnimation: true, // 动态数据接口是否开启动画效果
animationDuration: 2000,
animationEasing: 'ExponentialOut', //BounceOut
}
贡献者:群友asdfg(陈烨)