|
@@ -145,13 +145,32 @@ const deviceInfoOption = ref({
|
|
|
],
|
|
|
});
|
|
|
|
|
|
+const barWidth = 20;
|
|
|
const onLineOptions = ref({
|
|
|
xAxis: {
|
|
|
- data: ['Animals', 'Fruits', 'Cars']
|
|
|
+ data: ["春节", "元宵节", "端午节", "中秋节"],
|
|
|
+ axisTick: {
|
|
|
+ show: false,
|
|
|
+ },
|
|
|
+ axisLine: { lineStyle: { color: "#ffffff", opacity: 0.52, width: 1 } },
|
|
|
+ },
|
|
|
+ yAxis: {
|
|
|
+ splitLine: {
|
|
|
+ show: true,
|
|
|
+ lineStyle: {
|
|
|
+ type: "dashed",
|
|
|
+ color: "#ffffff",
|
|
|
+ opacity: 0.18,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ axisLabel: {
|
|
|
+ show: true,
|
|
|
+ textStyle: {
|
|
|
+ color: "#BFC8D7",
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
- yAxis: {},
|
|
|
- dataGroupId: '',
|
|
|
- animationDurationUpdate: 500,
|
|
|
+ dataGroupId: "",
|
|
|
grid: {
|
|
|
left: "5%",
|
|
|
right: "5%",
|
|
@@ -159,31 +178,78 @@ const onLineOptions = ref({
|
|
|
top: "3%",
|
|
|
containLabel: true,
|
|
|
},
|
|
|
- series: {
|
|
|
- type: 'bar',
|
|
|
- id: 'sales',
|
|
|
- data: [
|
|
|
- {
|
|
|
- value: 5,
|
|
|
- groupId: 'animals'
|
|
|
+ series: [
|
|
|
+ {
|
|
|
+ type: "pictorialBar", // 象型柱状
|
|
|
+ symbol: "diamond",
|
|
|
+ symbolSize: [barWidth, 5], // 调整大小
|
|
|
+ // symbolOffset: [-13, -3], // 图形相对于原本位置的偏移
|
|
|
+ symbolOffset: ["0%", -3], // 图形相对于原本位置的偏移
|
|
|
+ symbolPosition: "end",
|
|
|
+ z: 12,
|
|
|
+ color: "#E1EEFF",
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ name: "春节",
|
|
|
+ value: 24,
|
|
|
+ },
|
|
|
+ { name: "端午节", value: 44 },
|
|
|
+ { name: "中秋节", value: 32 },
|
|
|
+ { name: "春节", value: 50 },
|
|
|
+ ], //Y轴上的高度
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "",
|
|
|
+ type: "bar",
|
|
|
+ barWidth: barWidth,
|
|
|
+ barGap: "10%",
|
|
|
+ // zlevel: 2,
|
|
|
+ stack: "1",
|
|
|
+
|
|
|
+ itemStyle: {
|
|
|
+ opacity: 0.7,
|
|
|
+ color: new echarts.graphic.LinearGradient(0, 1, 1, 1, [
|
|
|
+ {
|
|
|
+ offset: 0.5,
|
|
|
+ color: "rgba(199,217,243,0.99)",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ offset: 0.5,
|
|
|
+ color: "rgba(199,217,243,0.5)",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ offset: 0.5,
|
|
|
+ color: "#6C86C4",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ offset: 1,
|
|
|
+ color: "#6C86C4",
|
|
|
+ },
|
|
|
+ ]),
|
|
|
+ // barBorderRadius: 0,
|
|
|
+ borderRadius: 0,
|
|
|
},
|
|
|
- {
|
|
|
- value: 2,
|
|
|
- groupId: 'fruits'
|
|
|
+ // 是否在每个柱子显示 相应的值
|
|
|
+ label: {
|
|
|
+ show: false,
|
|
|
+ position: ["0", "-25"],
|
|
|
+ color: "#005dd9",
|
|
|
+ fontSize: 14,
|
|
|
+ fontWeight: "bold",
|
|
|
},
|
|
|
- {
|
|
|
- value: 4,
|
|
|
- groupId: 'cars'
|
|
|
- }
|
|
|
- ],
|
|
|
- universalTransition: {
|
|
|
- enabled: true,
|
|
|
- divideShape: 'clone'
|
|
|
- }
|
|
|
- }
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ name: "春节",
|
|
|
+ value: 24,
|
|
|
+ },
|
|
|
+ { name: "端午节", value: 44 },
|
|
|
+ { name: "中秋节", value: 32 },
|
|
|
+ { name: "春节", value: 50 },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
});
|
|
|
|
|
|
-
|
|
|
const initCharts = (domRefValue, options) => {
|
|
|
const myChart = echarts.init(domRefValue);
|
|
|
options && myChart.setOption(options);
|
|
@@ -230,7 +296,7 @@ onMounted(() => {
|
|
|
}
|
|
|
|
|
|
.pie-position-box {
|
|
|
- position: relative;
|
|
|
+ position: relative;
|
|
|
.pie-item {
|
|
|
margin-top: 20px;
|
|
|
}
|
|
@@ -251,7 +317,7 @@ onMounted(() => {
|
|
|
color: #ffffff;
|
|
|
padding-top: 5px;
|
|
|
padding-left: 18px;
|
|
|
-
|
|
|
+
|
|
|
.icon-label {
|
|
|
position: absolute;
|
|
|
width: 8px;
|
|
@@ -263,7 +329,7 @@ onMounted(() => {
|
|
|
.name {
|
|
|
font-size: 14px;
|
|
|
color: #9bb9dd;
|
|
|
-
|
|
|
+
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
.num {
|