itemStyle.normal.label is deprecated, use label instead.

itemStyle.normal.label is deprecated, use label instead.

'normal'hierarchy in label has been removed since 4.0. All style properties are configured in label directly now.

错误写法:

javascript 复制代码
itemStyle: {
        normal: {
          // color: '#00E0FF',  // 设置折线点颜色 
         
          label: {  //在折线拐点上显示数据
          
          },

        }
      },

正确写法:label移动到最外层和itemStyle同级

javascript 复制代码
     label: {  //在折线拐点上显示数据
   
      },
     itemStyle: { 
   
      },
      
相关推荐
TeamDev7 分钟前
如何在 DotNetBrowser 中使用本地 AI 模型
前端·后端·.net
谢尔登26 分钟前
10_从 React Hooks 本质看 useState
前端·ubuntu·react.js
辰同学ovo27 分钟前
从全局登录状态管理学习 Redux
前端·javascript·学习·react.js
爱看书的小沐31 分钟前
【小沐杂货铺】基于Three.js绘制三维艺术画廊3DArtGallery (Three.js,WebGL)
javascript·3d·webgl·three.js·babylon.js·三维画廊
陈随易1 小时前
2年没用Nodejs了,Bun很香
前端·后端·程序员
donecoding1 小时前
Corepack 完全解析:从懵到懂,包管理器自由了
前端·node.js·前端工程化
yqcoder1 小时前
端经典面试题:为什么 0.1 + 0.2 !== 0.3?
前端·css
ZC跨境爬虫1 小时前
跟着 MDN 学 HTML day_12:(HTML网页图片嵌入)
前端·javascript·css·ui·html
光影少年1 小时前
reeact虚拟DOM、Diff算法原理、key的作用与为什么不能用index
前端·react.js·掘金·金石计划
用户059540174461 小时前
大模型记忆存储踩坑实录:LangChain 的 ConversationBufferMemory 让我排查了 6 小时
前端·css