您的位置:

echarts渐变色设置详解

一、echarts设置渐变色

在echarts中,通过设置渐变色可以为图表区域增加更加绚丽的颜色,让图表看起来更加美观。在echarts中设置渐变色,我们可以通过以下方式来实现。

1、首先,我们需要在echarts中定义一个渐变色。

var colorList = [[0, '#00ff00'], [1, '#ff0000']];

2、然后,在我们的图表中,在需要设置渐变色的地方,我们可以通过以下代码来引用定义好的渐变色。

myChart.setOption({
    series: [{
        type: 'bar',
        itemStyle: {
            normal: {
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    colorList
                )
            }
        },
        data: [10, 20, 30, 40]
    }]
});

通过以上代码,我们可以轻松的为柱状图设置渐变色。

二、echarts背景色设置为渐变色

不仅可以为图表设置渐变色,我们也可以为echarts整个区域的背景色设置为渐变色。为echarts背景设置渐变色,我们可以通过以下方式来实现。

1、首先,我们需要在echarts中定义一个渐变色。

var colorList = [[0, '#00ff00'], [1, '#ff0000']];

2、然后,在我们的图表中,在option中加入以下代码来将echarts背景色设置为渐变色。

myChart.setOption({
    backgroundColor: {
        type: 'linear',
        x: 0,
        y: 0,
        x2: 1,
        y2: 1,
        colorStops: colorList
    },
    series: [{
        // 此处省略其他配置
    }]
});

通过以上代码,我们可以将整个echarts区域的背景色设置为渐变色。

三、echarts柱状图渐变

除了整个图表区域和背景色可以设置渐变色以外,我们也可以为柱状图的每个条目设置不同的渐变。

1、首先,我们需要定义好每个柱状图条目的渐变。

var itemStyles = [{
    // 第一条目的渐变
    normal: {
        color: new echarts.graphic.LinearGradient(
            0, 1, 0, 0,
            [{
                offset: 0,
                color: '#FF6D69'
            }, {
                offset: 1,
                color: '#FFC939'
            }]
        )
    }
}, {
    // 第二条目的渐变
    normal: {
        color: new echarts.graphic.LinearGradient(
            0, 1, 0, 0,
            [{
                offset: 0,
                color: '#42D9C8'
            }, {
                offset: 1,
                color: '#3687DC'
            }]
        )
    }
}];

2、然后,我们在series中的data中设置每个条目的itemStyle为我们先前定义好的itemStyles。

myChart.setOption({
    series: [{
        type: 'bar',
        data: [{
            name: '条目1',
            value: 100,
            itemStyle: itemStyles[0]
        }, {
            name: '条目2',
            value: 80,
            itemStyle: itemStyles[1]
        },{
            // 此处省略其他配置
        }]
    }]
});

通过以上代码,我们可以为柱状图的每个条目设置不同的渐变,从而增强柱状图的视觉效果。

四、echarts渐变色

在echarts中,我们可以使用不同的渐变方式来设置渐变色,以下是echarts支持的渐变方式。

1、线性渐变

线性渐变是在两个点之间进行的渐变色,我们可以通过以下代码来定义一个线性渐变。

new echarts.graphic.LinearGradient(
    x0, y0, x1, y1,
    colorStops
)

其中,x0,y0和x1,y1定义两个点的坐标,colorStops定义渐变的颜色和位置。

2、径向渐变

径向渐变是以一个圆为中心进行的渐变色,我们可以通过以下代码来定义一个径向渐变。

new echarts.graphic.RadialGradient(
    x, y, r,
    colorStops
)

其中,x和y定义圆心的坐标,r定义圆的半径,colorStops定义渐变的颜色和位置。

3、三角渐变

三角渐变是从一个三角形的一侧到另一侧进行的渐变色,我们可以通过以下代码来定义一个三角渐变。

new echarts.graphic.TriangleGradient(
    x0, y0, x1, y1, x2, y2,
    colorStops
)

其中,(x0, y0)、(x1, y1)、(x2, y2)定义三角形的三个顶点的坐标,colorStops定义渐变的颜色和位置。

五、echarts设置颜色

在echarts中,我们也可以直接设置颜色来为图表增加不同的颜色,而不是使用渐变色。为echarts设置颜色,我们可以通过以下方式来实现。

1、首先,我们定义一个含有多个颜色的数组。

var colorList = ['#FF6D69', '#FFC939', '#42D9C8', '#3687DC'];

2、然后,在我们的图表中,在需要设置颜色的地方,我们可以通过以下代码将颜色传入进去。

myChart.setOption({
    series: [{
        type: 'bar',
        itemStyle: {
            normal: {
                color: function(params) {
                    return colorList[params.dataIndex % colorList.length];
                }
            }
        },
        data: [10, 20, 30, 40]
    }]
});

通过以上代码,我们可以轻松的为柱状图设置颜色。

六、echarts图表渐变

除了单一的柱状图以外,我们还可以为其他的类型的图表设置渐变色。

1、如下代码为为折线图设置渐变色:

var gradientColor = new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
    offset: 0,
    color: 'red'
}, {
    offset: 0.5,
    color: 'orange'
}, {
    offset: 1,
    color: 'yellow'
}]);
myChart.setOption({
    series: [{
        type: 'line',
        smooth: true,
        lineStyle: {
            normal: {
                width: 3,
                color: gradientColor
            }
        },
        // 此处省略其他配置
    }]
})

2、如下代码为饼图设置渐变色:

myChart.setOption({
    backgroundColor: 'transparent',
    color: {
        type: 'linear',
        x: 0,
        y: 0,
        x2: 1,
        y2: 1,
        colorStops: [{
            offset: 0,
            color: '#FF6D69'
        }, {
            offset: 0.5,
            color: '#42D9C8'
        }, {
            offset: 1,
            color: '#3687DC'
        }]
    },
    series: [{
        type: 'pie',
        radius: '55%',
        center: ['50%', '50%'],
        data: [{
            value: 10,
            name: '数据1'
        }, {
            value: 20,
            name: '数据2'
        }, {
            value: 30,
            name: '数据3'
        }],
        // 此处省略其他配置
    }]
});

通过以上代码,我们可以为折线图和饼图设置渐变。

七、echarts仪表盘渐变色

在echarts中,我们还可以为仪表盘设置渐变色,以下是具体实现方式。

1、首先,我们定义仪表盘的颜色。

var colorList = [[0.2, '#2980B9'], [0.8, '#2C3E50'], [1, '#E74C3C']];

2、然后,在我们的图表中,我们可以通过以下代码将颜色传入仪表盘中。

option = {
    series: [
        {
            type: 'gauge',
            detail: {
                formatter: '{value}%'
            },
            axisLine: {
                lineStyle: {
                    color: colorList,
                    width: 15,
                    shadowBlur: 0,
                    shadowColor: '#fff',
                    shadowOffsetX: 0,
                    shadowOffsetY: 0
                }
            },
            // 此处省略其他配置
        }
    ]
};

通过以上代码,我们可以轻松的为仪表盘设置渐变色。