ehcarts line先從折線變弧線

屬性值

smooth: true

在這裏插入圖片描述
要的是這種效果,
一般我們組合的時候的圖是這樣的
在這裏插入圖片描述
所以需要設置一下
修改

  series: [
        {
            name: '蒸發量',
            type: 'bar',
            stack :"bar",
            itemStyle:{
                color:"#2C9DFF",
                barBorderRadius:20
            },
            data: [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3]
        },
        {
            name: '降水量',
            type: 'line',
            smooth: true,
            itemStyle:{
                color:"#2C9DFF"
            },
            data: [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]
        },
        {
            name: '平均溫度',
            type: 'line',
            yAxisIndex: 1,
            smooth: true,
            itemStyle:{
                color:"#FFAE53"
            },
            data: [2.0, 2.2, 3.3, 4.5, 6.3, 10.2, 20.3, 23.4, 23.0, 16.5, 12.0, 6.2]
        }
    ]

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章