zoukankan      html  css  js  c++  java
  • 配色

            series: [
                {
                    name: '本期收入',
                    type: 'bar',
                    itemStyle: { normal: { color: 'rgba(193,46,52,1)', label: { show: true, position: 'top' } } },
                    data: [40, 155, 95, 75, 0]
                },
                {
                    name: '同期收入',
                    type: 'bar',
                    itemStyle: { normal: { color: 'rgba(230,182,0,1)', label: { show: true, position: 'top', textStyle: { color: '#27727B' } } } },
                    data: [100, 200, 105, 100, 156]
                },
                {
                    name: '本期累计',
                    type: 'bar',
                    xAxisIndex: 1,
                    itemStyle: { normal: { color: 'rgba(193,46,52,0.5)', label: { show: true, position: 'top', formatter: function (p) { return p.value > 0 ? (p.value /*+ '
    '*/) : ''; } } } },
                    data: [96, 224, 164, 124, 0]
                },
                {
                    name: '同期累计',
                    type: 'bar',
                    xAxisIndex: 1,
                    itemStyle: { normal: { color: 'rgba(230,182,0,0.5)', label: { show: true, position: 'top' } } },
                    data: [491, 283, 389, 955, 347]
                }
            ]

  • 相关阅读:
    图论初步
    分块和块状链表
    线段树入门
    ST表与树状数组
    [luogu P1312]Mayan游戏
    [luoguP4139]上帝与集合的正确用法


    电解质
    无机盐
  • 原文地址:https://www.cnblogs.com/dotnetmvc/p/7221125.html
Copyright © 2011-2022 走看看