ddd

Posted DaMengZhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ddd相关的知识,希望对你有一定的参考价值。

var option = {
    tooltip: {
        trigger: ‘item‘,
        formatter: "{a} <br/>{b}: {c} ({d}%)"
    },
    legend: {
        orient: ‘vertical‘,
        x: ‘right‘,
        y:‘middle‘,
        /*formatter:function () {
            debugger;
        },*/
        data:[{name:‘已用335个‘,icon:‘pin‘},
              {name:‘可用310个‘,icon:‘arrow‘}]
    },
    series: [
        {
            name:‘vCPU‘,
            type:‘pie‘,
            radius: [‘50%‘, ‘70%‘],
            avoidLabelOverlap: false,
            /*silent:true,*/
            markPoint:{
                label:{
                    normal:{
                        show:false
                    },
                    emphasis:{
                        show:false
                    }
                }
            },
            label: {
                normal: {
                    show: false,
                    position: ‘center‘
                },
                emphasis: {
                    show: true,
                    textStyle: {
                        fontSize: ‘30‘,
                        fontWeight: ‘bold‘
                    }
                }
            },
            labelLine: {
                normal: {
                    show: false
                }
            },
            data:[
                {value:335, 
                 name:‘已用335个‘,
                 selected:false,
                 labelLine:{
                    normal:{
                        show:true
                    }
                 },
                 itemStyle:{
                    normal:{
                        color:‘grey‘
                    }
                 }
                },
                {value:310, 
                 name:‘可用310个‘,
                 label:{
                    normal:{
                        show:true,
                        fontSize:16,
                        fontWeight:‘bold‘
                    },
                    emphasis:{
                        show:true
                    }
                 },
                 labelLine:{
                    normal:{
                        show:true
                    }
                 },
                 itemStyle:{
                    normal:{
                        color:‘green‘
                    }
                 }
             },
            ]
        }
    ]
};

var resource = echarts.init($(‘#resource‘)[0]);
resource.setOption(option);

  

以上是关于ddd的主要内容,如果未能解决你的问题,请参考以下文章

DDD as Code:如何用代码诠释领域驱动设计?

在分布式系统中使用 DDD

DDD专栏10DDD的架构变化之道

图片上传 - 使用 CQRS 和 DDD 放置代码的位置

我如何设计具有受保护/私有成员 DDD 样式的 EF5 代码优先实体

DDD领域模型