aliger的gravatar头像
aliger 2015-12-10 10:44:52

echarts鼠标靠转点上时圆点如何自定义设置大小?

echarts当鼠标靠转点上时,圆点变大,我想靠近的时候圆点变得更大,自己设置大小,,这个怎么写啊??

echarts鼠标靠转点上时圆点如何自定义设置大小?

option = {
    title : {
        text: '未来一周气温变化',
        subtext: '纯属虚构'
    },
    tooltip : {
        trigger: 'axis'
    },
    legend: {
        data:['最高气温','最低气温']
    },
    toolbox: {
        show : true,
        feature : {
            mark : {show: true},
            dataView : {show: true, readOnly: false},
            magicType : {show: true, type: ['line', 'bar']},
            restore : {show: true},
            saveAsImage : {show: true}
        }
    },
    calculable : true,
    xAxis : [
        {
            type : 'category',
            boundaryGap : false,
            data : ['周一','周二','周三','周四','周五','周六','周日']
        }
    ],
    yAxis : [
        {
            type : 'value',
            axisLabel : {
                formatter: '{value} °C'
            }
        }
    ],
    series : [
        {
            name:'最高气温',
            type:'line',
            data:[11, 11, 15, 13, 12, 13, 10],
            markPoint : {
                data : [
                    {type : 'max', name: '最大值'},
                    {type : 'min', name: '最小值'}
                ]
            },
            markLine : {
                data : [
                    {type : 'average', name: '平均值'}
                ]
            }
       
        },
        {
            name:'最低气温',
            type:'line',
            data:[1, -2, 2, 5, 3, 2, 0],
            markPoint : {
                data : [
                    {name : '周最低', value : -2, xAxis: 1, yAxis: -1.5}
                ]
            },
            markLine : {
                data : [
                    {type : 'average', name : '平均值'}
                ]
            }
        }
    
    ]
};
                    

所有回答列表(0)
最近浏览
吴昌华  LV1 2021年5月18日
1739496132  LV2 2021年2月1日
飞翔的灰灰  LV1 2020年2月20日
1jj15j  LV6 2019年10月8日
宋文豪  LV10 2019年8月6日
zhouan1985  LV2 2018年10月26日
youyingying 2018年10月15日
暂无贡献等级
dodohu1 2018年7月11日
暂无贡献等级
painxperia  LV1 2018年7月2日
2560173068 2018年6月20日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友