仪表盘自定义标题和数值样式

仪表盘自定义标题和数值样式

javascript 复制代码
fn()
var myEcharts;
function fn(v) {
    var chartDom = document.getElementById('myEcharts');
    myEcharts&& myEcharts.dispose();
    myEcharts= echarts.init(chartDom, 'walden');
    var option;
    option = {
        series: [
            {
                type: 'gauge',
                radius: '85%',
                center: ['50%', '45%'],
                max: 1,
                axisLine: {
                    lineStyle: {
                        width: 5,
                        color: [
                            [0.3, '#00a2ff'],
                            [0.7, '#00e9fb'],
                            [1, '#00a2ff']
                        ]
                    }
                },
                pointer: {
                    itemStyle: {
                        color: 'auto'
                    }
                },
                axisTick: {
                    distance: 0,
                    length: 3,
                    lineStyle: {
                        color: 'auto',
                        width: 2
                    }
                },
                splitLine: {
                    show: true,
                    distance: 0,
                    length: 8,
                    lineStyle: {
                        color: 'transparent',
                        width: 0,
                        // type: "dashed"
                    },
                },

                axisLabel: {
                    color: 'auto',
                    distance: 0,
                    fontSize: 10
                },
                detail: {
                    valueAnimation: true,
                    formatter: '{title|累计用电}' +'\n' +'{value|{value}}',
                    // color: '#666666', //或者放开这里注释的两行,将{value|{value}}=》{value} 也可
                    // fontSize: 23,
                    offsetCenter: [0, '70%'],
                    rich: { //特定样式
                        title: {
                            fontSize: 16,
                            fontWeight: 'bolder',
                            color:"#666666",
                        },
                        value: {
                            fontSize: 23, 
                            fontWeight: 'bolder',
                            color: '#666666',
                        },
                    },
                },
                data: [
                    {
                        value: 3034467.56,
                    }
                ]
            }
        ]
    };


    option && myEcharts.setOption(option);

    //图表自适应
    window.addEventListener("resize", function (event) {
        myEcharts.resize();
    })

}
相关推荐
希忘auto2 天前
详解Redis的常用命令
redis·1024程序员节
yaosheng_VALVE3 天前
探究全金属硬密封蝶阀的奥秘-耀圣控制
运维·eclipse·自动化·pyqt·1024程序员节
dami_king3 天前
SSH特性|组成|SSH是什么?
运维·ssh·1024程序员节
一个通信老学姐8 天前
专业125+总分400+南京理工大学818考研经验南理工电子信息与通信工程,真题,大纲,参考书。
考研·信息与通信·信号处理·1024程序员节
sheng12345678rui8 天前
mfc140.dll文件缺失的修复方法分享,全面分析mfc140.dll的几种解决方法
游戏·电脑·dll文件·dll修复工具·1024程序员节
huipeng9269 天前
第十章 类和对象(二)
java·开发语言·学习·1024程序员节
earthzhang20219 天前
《深入浅出HTTPS》读书笔记(19):密钥
开发语言·网络协议·算法·https·1024程序员节
爱吃生蚝的于勒10 天前
计算机基础 原码反码补码问题
经验分享·笔记·计算机网络·其他·1024程序员节
earthzhang202110 天前
《深入浅出HTTPS》读书笔记(20):口令和PEB算法
开发语言·网络协议·算法·https·1024程序员节
一个通信老学姐10 天前
专业140+总分410+浙江大学842信号系统与数字电路考研经验浙大电子信息与通信工程,真题,大纲,参考书。
考研·信息与通信·信号处理·1024程序员节