码迷,mamicode.com
首页 > 其他好文 > 详细

按数值显示不同渐变颜色柱状图

时间:2020-01-04 14:35:53      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:fse   set   charts   null   lse   reac   color   lin   mat   

技术图片 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>按数值显示不同渐变颜色柱状图</title>
        <style>
            .chart-box {
                width: 500px;
                height: 300px;
                background: linear-gradient(to top right, #371a64, #1a48ba);
            }
        </style>
    </head>
    <body>
        <div class="chart-box" id="chart_box"></div>
    </body>    
    <script src="js/echarts.min.js"></script>
    <script>
        f_chart();

        function f_chart() {
            var dom = document.getElementById("chart_box");
            var myChart = echarts.init(dom);
            var app = {};
            var option = null;
            app.title = 柱状图分数划分;
            var namedate = [项目1, 项目2, 项目3, 项目4, 项目5, 项目6, 项目7];
            var numdate = [50, 40, 80, 70, 80, 100, 130];
            var colorlist = [];
            numdate.forEach(element => {
                if (element <= 50) {
                    colorlist.push(["#386ffd", "#74b3ff"])
                } else if (element > 50 && element < 100) {
                    colorlist.push(["#1aa8ce", "#49d3c6"])
                } else {
                    colorlist.push(["#fc7095", "#fa8466"])
                }
            });
            option = {
                title: {
                    text: 渐变柱状图,
                    textStyle: {
                        color: #0bccde,
                        fontSize: 16
                    },
                    top: 10px,
                    left: 10px
                },
                tooltip: {
                    trigger: item
                },
                xAxis: [{
                    type: category,
                    data: namedate,
                    axisTick: {
                        alignWithLabel: true
                    },
                    axisLine: {
                        lineStyle: {
                            color: "#0bccde",
                            width: 1
                        }
                    },
                    axisLabel: {
                        show: true,
                        textStyle: {
                            color: #0bccde
                        }
                    }
                }],
                yAxis: [{
                    type: value,
                    axisLabel: {
                        formatter: {value},
                        show: true,
                        textStyle: {
                            color: #0bccde
                        }
                    },
                    axisLine: {
                        lineStyle: {
                            color: "#0bccde",
                            width: 1
                        }
                    },
                    splitLine: {
                        show: true,
                        lineStyle: {
                            type: dashed,
                            color: rgba(255,255,255,0.1)
                        }
                    }
                }],
                series: [{
                    name: 数据,
                    type: bar,
                    barWidth: 40%,
                    data: numdate,
                    itemStyle: {
                        normal: {                            
                            color: function(params) {
                                var colorList = colorlist
                                var index = params.dataIndex;
                                return new echarts.graphic.LinearGradient(0, 0, 0, 1,
                                    [{
                                            offset: 1,
                                            color: colorList[index][0]
                                        },
                                        {
                                            offset: 0,
                                            color: colorList[index][1]
                                        }
                                    ]);
                            }
                        },
                    },
                }]
            };

            if (option && typeof option === "object") {
                myChart.setOption(option, true);
            }
        }
    </script>
</html>

按数值显示不同渐变颜色柱状图

标签:fse   set   charts   null   lse   reac   color   lin   mat   

原文地址:https://www.cnblogs.com/hzhjxx/p/12148834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!