一种ElementUI+Echarts+Vue的跑马灯数据图表思路
<template>
<div class="dashboard-editor-container">
<panel-group @handleSetLineChartData="handleSetLineChartData"/>
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
<line-chart :chart-data="lineChartData"/>
</el-row>
</div>
</template>
<script>
import PanelGroup from './PanelGroup'
import LineChart from './LineChart'
export default {
components: {
PanelGroup,
LineChart
},
data() {
return {
lineChartData: {
expectedData: [100, 120, 161, 134, 105, 160, 150, 130],
actualData: [120, 82, 91, 154, 162, 140, 145, 120]
}
}
},
methods: {
handleSetLineChartData(type) {
this.lineChartData = {
expectedData: [80, 100, 121, 104, 105, 100, 150, 130],
actualData: [120, 90, 100, 164, 152, 140, 165, 120]
}
}
}
}
</script>
<style lang="scss" scoped>
.dashboard-editor-container {
padding: 32px;
background-color: rgb(240, 242, 245);
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
}
</style>
在这个简化的代码示例中,我们定义了一个Vue组件,它包括了一个panel-group
子组件和一个line-chart
子组件。panel-group
负责展示各种数据指标的面板,每个面板可以点击触发一个事件来更新line-chart
中的数据。line-chart
是一个ECharts图表,用于展示数据的变化趋势。这个示例展示了如何在Vue应用中整合ElementUI、ECharts,并通过用户交互动态更新图表数据。
评论已关闭