新手必看!Echarts图表制作入门教程视频全解析,轻松学会可视化数据展示

2026-09-04 0 阅读

一、Echarts简介

Echarts是一款使用JavaScript实现的开源可视化库,它可以帮助用户轻松地实现各种图表的绘制,广泛应用于数据可视化、大数据展示等领域。Echarts具有丰富的图表类型,包括但不限于折线图、柱状图、饼图、散点图、地图等,能够满足用户在数据可视化方面的多种需求。

二、Echarts安装与配置

1. 安装Echarts

首先,您需要从Echarts的官方网站(https://echarts.apache.org/)下载Echarts库。下载完成后,将Echarts库的文件放置在您的项目中。

2. 引入Echarts

在HTML文件中,通过<script>标签引入Echarts库。

<script src="path/to/echarts.min.js"></script>

3. 配置Echarts

在HTML文件中,创建一个div元素作为Echarts图表的容器。

<div id="main" style="width: 600px;height:400px;"></div>

然后,在JavaScript代码中,通过echarts.init()方法初始化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);

三、Echarts图表类型介绍

1. 折线图

折线图主要用于展示数据随时间变化的趋势。以下是一个简单的折线图示例:

var option = {
    title: {
        text: '折线图示例'
    },
    tooltip: {},
    legend: {
        data:['销量']
    },
    xAxis: {
        data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
    },
    yAxis: {},
    series: [{
        name: '销量',
        type: 'line',
        data: [5, 20, 36, 10, 10, 20]
    }]
};

2. 柱状图

柱状图主要用于展示不同类别的数据对比。以下是一个简单的柱状图示例:

var option = {
    title: {
        text: '柱状图示例'
    },
    tooltip: {},
    legend: {
        data:['销量']
    },
    xAxis: {
        data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
    },
    yAxis: {},
    series: [{
        name: '销量',
        type: 'bar',
        data: [5, 20, 36, 10, 10, 20]
    }]
};

3. 饼图

饼图主要用于展示数据的占比关系。以下是一个简单的饼图示例:

var option = {
    title: {
        text: '饼图示例'
    },
    tooltip: {
        trigger: 'item',
        formatter: "{a} <br/>{b}: {c} ({d}%)"
    },
    legend: {
        orient: 'vertical',
        left: 10,
        data: ['衬衫','羊毛衫','雪纺衫','裤子','高跟鞋','袜子']
    },
    series: [
        {
            name: '销量',
            type: 'pie',
            radius: '55%',
            center: ['50%', '60%'],
            data: [
                {value: 5, name: '衬衫'},
                {value: 20, name: '羊毛衫'},
                {value: 36, name: '雪纺衫'},
                {value: 10, name: '裤子'},
                {value: 10, name: '高跟鞋'},
                {value: 20, name: '袜子'}
            ],
            emphasis: {
                itemStyle: {
                    shadowBlur: 10,
                    shadowOffsetX: 0,
                    shadowColor: 'rgba(0, 0, 0, 0.5)'
                }
            }
        }
    ]
};

4. 散点图

散点图主要用于展示两个变量之间的关系。以下是一个简单的散点图示例:

var option = {
    title: {
        text: '散点图示例'
    },
    tooltip: {},
    legend: {
        data:['销量']
    },
    xAxis: {
        type: 'value'
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        name: '销量',
        type: 'scatter',
        data: [
            [10, 20],
            [20, 10],
            [30, 40],
            [40, 30],
            [50, 20],
            [60, 10]
        ]
    }]
};

5. 地图

地图主要用于展示地理空间数据。以下是一个简单的地图示例:

var option = {
    title: {
        text: '地图示例'
    },
    tooltip: {},
    legend: {
        orient: 'vertical',
        left: 'left',
        data:['销量']
    },
    visualMap: {
        min: 0,
        max: 100,
        left: 'left',
        top: 'bottom',
        text: ['高','低'],           // 文本,默认为数值文本
        calculable: true
    },
    geo: {
        map: 'china',
        roam: true,
        label: {
            emphasis: {
                show: false
            }
        },
        itemStyle: {
            normal: {
                areaColor: '#323c48',
                borderColor: '#111'
            },
            emphasis: {
                areaColor: '#2a333d'
            }
        }
    },
    series: [
        {
            name: '销量',
            type: 'map',
            mapType: 'china',
            roam: true,
            label: {
                normal: {
                    show: true
                },
                emphasis: {
                    show: true
                }
            },
            data: [
                {name: '北京',value: Math.round(Math.random() * 1000)},
                {name: '天津',value: Math.round(Math.random() * 1000)},
                {name: '上海',value: Math.round(Math.random() * 1000)},
                {name: '重庆',value: Math.round(Math.random() * 1000)},
                {name: '河北',value: Math.round(Math.random() * 1000)},
                {name: '河南',value: Math.round(Math.random() * 1000)},
                {name: '云南',value: Math.round(Math.random() * 1000)},
                {name: '辽宁',value: Math.round(Math.random() * 1000)},
                {name: '黑龙江',value: Math.round(Math.random() * 1000)},
                {name: '湖南',value: Math.round(Math.random() * 1000)},
                {name: '安徽',value: Math.round(Math.random() * 1000)},
                {name: '山东',value: Math.round(Math.random() * 1000)},
                {name: '新疆',value: Math.round(Math.random() * 1000)},
                {name: '江苏',value: Math.round(Math.random() * 1000)},
                {name: '浙江',value: Math.round(Math.random() * 1000)},
                {name: '江西',value: Math.round(Math.random() * 1000)},
                {name: '湖北',value: Math.round(Math.random() * 1000)},
                {name: '广西',value: Math.round(Math.random() * 1000)},
                {name: '甘肃',value: Math.round(Math.random() * 1000)},
                {name: '山西',value: Math.round(Math.random() * 1000)},
                {name: '内蒙古',value: Math.round(Math.random() * 1000)},
                {name: '陕西',value: Math.round(Math.random() * 1000)},
                {name: '吉林',value: Math.round(Math.random() * 1000)},
                {name: '福建',value: Math.round(Math.random() * 1000)},
                {name: '贵州',value: Math.round(Math.random() * 1000)},
                {name: '青海',value: Math.round(Math.random() * 1000)},
                {name: '西藏',value: Math.round(Math.random() * 1000)},
                {name: '四川',value: Math.round(Math.random() * 1000)},
                {name: '宁夏',value: Math.round(Math.random() * 1000)},
                {name: '海南',value: Math.round(Math.random() * 1000)},
                {name: '台湾',value: Math.round(Math.random() * 1000)},
                {name: '香港',value: Math.round(Math.random() * 1000)},
                {name: '澳门',value: Math.round(Math.random() * 1000)}
            ]
        }
    ]
};

四、Echarts进阶技巧

1. 动画效果

Echarts支持丰富的动画效果,例如渐变、缩放、旋转等。以下是一个简单的动画效果示例:

var option = {
    title: {
        text: '动画效果示例'
    },
    tooltip: {},
    legend: {
        data:['销量']
    },
    xAxis: {
        data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
    },
    yAxis: {},
    series: [{
        name: '销量',
        type: 'bar',
        data: [5, 20, 36, 10, 10, 20],
        animationDuration: 1000,
        animationEasing: 'elasticOut'
    }]
};

2. 交互效果

Echarts支持丰富的交互效果,例如点击、悬停、拖拽等。以下是一个简单的交互效果示例:

var option = {
    title: {
        text: '交互效果示例'
    },
    tooltip: {},
    legend: {
        data:['销量']
    },
    xAxis: {
        data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
    },
    yAxis: {},
    series: [{
        name: '销量',
        type: 'bar',
        data: [5, 20, 36, 10, 10, 20],
        label: {
            show: true,
            position: 'top'
        },
        itemStyle: {
            emphasis: {
                color: 'red'
            }
        }
    }]
};

五、总结

本文详细介绍了Echarts图表制作入门教程,包括Echarts简介、安装与配置、图表类型介绍、进阶技巧等内容。通过学习本文,您可以快速掌握Echarts的使用方法,并将其应用于实际项目中。希望本文对您有所帮助!

分享到: