echart 동적 로드 데이터의 떡 모양도

2291 단어
    
layui.define('echarts', function(exports) {
    var echarts = layui.echarts,
        $ = layui.jquery;
    var myecharts = echarts.init(document.getElementById('echarts'));
    myecharts.showLoading({
        text : " 。。。。。",
    })
    var option = {
            title: {
                text: ' ',
                subtext: ' ',
                x: 'center'
            },
            tooltip: {
                trigger: 'item',
                formatter: "{a} 
{b} : {c} ({d}%)" }, legend: { orient: 'vertical', left: 'left', data: [] }, series: [{ name: ' ', type: 'pie', radius: '55%', center: ['50%', '60%'], data : [], /*data: [ { value: 335, name: ' ' }, { value: 310, name: ' ' }, { value: 234, name: ' ' }, { value: 135, name: ' ' }, { value: 1548, name: ' ' } ],*/ itemStyle: { emphasis: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } }] }; $.ajax({ type : "post", async : false, // url : contextpath + '/merchantintegral/integralcountlist?&time='+ new Date().getTime(), dataType : "json", // json success : function(result) { if(result){ // option.xAxis[0] data for(var i=0;i
  • 1 떡 모양 그림 시리즈 적재 방식
  •  option.series[0].data.push({'name':result[i].name,'value':result[i].count})
    
    

    좋은 웹페이지 즐겨찾기