<template>
<div>
<div id="echarts" style="width: 200px; height: 200px"></div>
</div>
</template>
<script>
export default {
name: "SzCityMobileMianIndex",
data() {
return {
myCharts: null,
};
},
mounted() {
this.myCharts = this.$echarts.init(document.getElementById("echarts"));
this.initView();
},
methods: {
initView() {
let option1 = {
// 设置标题
title: {
text: "获奖状况",
},
//
toolTip: {
trigger: "none",
},
// 设置网格的区域
grid: {
left: "20%",
top: "20%",
right: "10%",
bottom: "30%",
// 是否包含刻度
containLabel: false,
},
// x轴设置
xAxis: {
// type为值
type: "value",
// X轴标签
axisLabel: {
show: false,
},
// x轴的细线是否显示
axisLine: {
show: false,
},
// x轴的刻度线是否显示
axisTick: {
show: false,
},
// 分割线是否显示
splitLine: {
show: false,
},
},
yAxis: [
{
type: "category",
data: ["区级", "市级", "国家级"],
axisLine: {
show: false,
},
axisTick: {
show: false,
},
},
{
type: "category",
axisLine: {
show: false,
},
axisTick: {
show: false,
},
data: [10, 20, 30],
},
],
series: [
{
name: "下",
type: "bar",
data: [30, 30, 30],
yAxisIndex: 1,
// 关闭鼠标hover时高亮效果
emphasis: {
disabled: true,
focus: "none",
},
// 柱子宽度
barWidth: 15,
itemStyle: {
// 柱子的圆角
borderRadius: 7.5,
// 设置颜色
color: () => {
return {
type: "linear",
x: 1,
y: 0,
x2: 0,
y2: 0,
colorStops: [
{
offset: 0,
color: "#4E5969", // 0% 处的颜色
},
{
offset: 1,
color: "#272C36", // 100% 处的颜色
},
],
global: false, // 缺省为 false
};
},
},
},
{
name: "上",
type: "bar",
barWidth: 15,
itemStyle: {
borderRadius: 7.5,
color: (params) => {
var colorList = [
["#272C36", "#57A9FB"],
["#272C36", "#ED6A0C"],
["#272C36", "#F1924E"],
];
var colorItem = colorList[params.dataIndex];
return {
type: "linear",
x: 0,
y: 0,
x2: 1,
y2: 0,
colorStops: [
{
offset: 0,
color: colorItem[0], // 0% 处的颜色
},
{
offset: 1,
color: colorItem[1], // 100% 处的颜色
},
],
global: false, // 缺省为 false
};
},
},
data: [12, 18, 25],
yAxisIndex: 0,
label: {
show: true,
position: "insideTopRight",
offset: [0, -20],
color: "#F1924E",
formatter: (params) => {
switch (params.dataIndex) {
case 0:
return params.data / 3;
break;
case 1:
return params.data / 1.5;
break;
case 2:
return params.data;
break;
}
},
},
},
],
};
this.myCharts.setOption(option1);
},
},
};
</script>
<style scoped>
</style>
echarts练习一:柱状图
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 最近对echarts的使用过分的多,需求很多,很多地方都需要自定义重写,本文主要分享两个案例:温度计类型的现存与容...
- 这个demo是从一个博主那拷贝过来之后,按照自己的需求修改之后的,原博主的地址我找不到了,希望对有需求的人有些许的帮助吧
- 单独添加itemStyleitemStyle: { color: '#ccc' } 封装 主要在series里的i...
- ajax动态赋值echarts饼图 其中的关键代码是: 定义一个数组为names,在 legend中通过 data...
- 例子来源: Make A Pie - 上海居民活动点分布可视化[https://www.makeapie.com/...