v-chars各种样式设置
【摘要】 echarts设置柱状图颜色渐变及柱状图粗细大小,主标题和副标题属性设置。
echarts设置柱状图颜色渐变及柱状图粗细大小
series: [
{
name: '值',
type: 'bar',
stack: '总量',
//设置柱状图大小
barWidth : 20,
//设置柱状图渐变颜色
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(
0, 0, 1, 0, // 0,0,1,0表示从左向右 0,0,0,1表示从右向左
[
{offset: 1, color: '#83bff6'},
{offset: 0, color: '#188df0'}
]
)
}
},
data:valueArr
}
]
echarts设置柱状图颜色渐变及柱状图粗细大小
1、标题设置
title: {
text: '学生生源地来源分布图',
subtext: '模拟数据',
// x 设置水平安放位置,默认左对齐,可选值:'center' ¦ 'left' ¦ 'right' ¦ {number}(x坐标,单位px)
x: 'center',
// y 设置垂直安放位置,默认全图顶端,可选值:'top' ¦ 'bottom' ¦ 'center' ¦ {number}(y坐标,单位px)
y: 'top',
// itemGap设置主副标题纵向间隔,单位px,默认为10,
itemGap: 30,
backgroundColor: '#EEE',
// 主标题文本样式设置
textStyle: {
fontSize: 26,
fontWeight: 'bolder',
color: '#000080'
},
// 副标题文本样式设置
subtextStyle: {
fontSize: 18,
color: '#8B2323'
}
},
2、图例设置
legend: {
// orient 设置布局方式,默认水平布局,可选值:'horizontal'(水平) ¦ 'vertical'(垂直)
orient: 'vertical',
// x 设置水平安放位置,默认全图居中,可选值:'center' ¦ 'left' ¦ 'right' ¦ {number}(x坐标,单位px)
x: 'left',
// y 设置垂直安放位置,默认全图顶端,可选值:'top' ¦ 'bottom' ¦ 'center' ¦ {number}(y坐标,单位px)
y: 'center',
itemWidth: 24, // 设置图例图形的宽
itemHeight: 18, // 设置图例图形的高
textStyle: {
color: '#666' // 图例文字颜色
},
// itemGap设置各个item之间的间隔,单位px,默认为10,横向布局时为水平间隔,纵向布局时为纵向间隔
itemGap: 30,
backgroundColor: '#eee', // 设置整个图例区域背景颜色
data: ['北京','上海','广州','深圳','郑州']
},
3、值域设置
series: [
{
name: '生源地',
type: 'pie',
// radius: '50%', // 设置饼状图大小,100%时,最大直径=整个图形的min(宽,高)
radius: ['30%', '60%'], // 设置环形饼状图, 第一个百分数设置内圈大小,第二个百分数设置外圈大小
center: ['50%', '50%'], // 设置饼状图位置,第一个百分数调水平位置,第二个百分数调垂直位置
data: [
{value:335, name:'北京'},
{value:310, name:'上海'},
{value:234, name:'广州'},
{value:135, name:'深圳'},
{value:148, name:'郑州'}
],
// itemStyle 设置饼状图扇形区域样式
itemStyle: {
// emphasis:英文意思是 强调;着重;(轮廓、图形等的)鲜明;突出,重读
// emphasis:设置鼠标放到哪一块扇形上面的时候,扇形样式、阴影
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(30, 144, 255,0.5)'
}
},
// 设置值域的那指向线
labelLine: {
normal: {
show: false // show设置线是否显示,默认为true,可选值:true ¦ false
}
},
// 设置值域的标签
label: {
normal: {
position: 'inner', // 设置标签位置,默认在饼状图外 可选值:'outer' ¦ 'inner(饼状图上)'
// formatter: '{a} {b} : {c}个 ({d}%)' 设置标签显示内容 ,默认显示{b}
// {a}指series.name {b}指series.data的name
// {c}指series.data的value {d}%指这一部分占总数的百分比
formatter: '{c}'
}
}
}
],
4、提示框设置
tooltip: {
// trigger 设置触发类型,默认数据触发,可选值:'item' ¦ 'axis'
trigger: 'item',
showDelay: 20, // 显示延迟,添加显示延迟可以避免频繁切换,单位ms
hideDelay: 20, // 隐藏延迟,单位ms
backgroundColor: 'rgba(255,0,0,0.7)', // 提示框背景颜色
textStyle: {
fontSize: '16px',
color: '#000' // 设置文本颜色 默认#FFF
},
// formatter设置提示框显示内容
// {a}指series.name {b}指series.data的name
// {c}指series.data的value {d}%指这一部分占总数的百分比
formatter: '{a} <br/>{b} : {c}个 ({d}%)'
},
主标题和副标题属性设置
option = {
title: {
text: '百度一下',//主标题
link: 'http://www.baidu.com',//主标题超链接
target: 'blank',//副标题的超链接打开方式
subtext: "中国\n杭州", //副标题 \n 用于换行
sublink: 'http://www.baidu.com',//副标题超链接
subtarget: 'blank',//副标题超链接打开方式
itemGap: 5,//主副标题间距
left: 'center',//主副标题的水平位置
top: 'center',//主副标题的垂直位置
padding: 20,//标题内边距,
backgroundColor: '#ccc',//背景颜色;
borderColor: '#000',//边框的颜色
borderWidth: 5,//标签线框
borderRadius: 10,//边框切圆角
shadowBlur: 10,//图形阴影模糊大小.
shadowColor: 'aqua',//阴影颜色
shadowOffsetX: '60',//阴影水平方向上的偏移距离
shadowOffsetY: '70',//阴影垂直方向上的偏移距离
// textAlign: 'auto',//整体(包括 text 和 subtext)的水平对齐
// textVerticalAlign: 'auto',//整体(包括 text 和 subtext)的垂直对齐。
textStyle: {//主标题的属性
color: '#C28D21',//颜色
fontSize: 40,//大小
fontStyle: 'oblique',//斜体
fontWeight: '700',//粗细
fontFamily: 'monospace',//字体
// textBorderColor: "#000",//描边
// textBorderWidth: '2',//描边的宽度
textShadowColor: 'red',//阴影颜色
textShadowBlur: '10',//阴影的宽度
textShadowOffsetX: '-0',//阴影向X偏移
textShadowOffsetY: '-70',//阴影向Y偏移
},
subtextStyle: {//副标题的属性
color: '#25664A',
// 同主标题
},
},
}
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)