问题整理——echarts

  • echarts图表调整图在画布中的大小位置等信息 , 可以设置grid
  • echarts中图中添加事件

    graphic: {

            elements: [{
                    type: "image",
                    zlevel: 10,
                    style: {
                        image: problemImg,
                        width: 17,
                        height: 16
                    },
                    left: '46%',
                    top: '60%',
                    onmouseover:function() {
                      alert('mouse')
                    }
                },
                {
                    type: "image",
                    z: 4,
                    style: {
                        image: gridImg,
                        width: 17,
                        height: 16
                    },
                    left: '52%',
                    top: '60%',
                    onclick: function() {
                        alert(12)
                    }
                }]

你可能感兴趣的:(javascript,前端,html)