作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Angular 9 连同 "ngx-echarts": "5.2.2"
和 "echarts": "5.0.0"
一切正常接受设置icon: 'circle'
为传奇。它说下面的事情。
Type '{ icon: string; top: string; left: string; orient: "vertical";}' is not assignable to type 'LegendOption | ScrollableLegendOption |(LegendOption | ScrollableLegendOption)[]'.
import { EChartOption } from 'echarts'
;
s
选项
import { EChartsOption } from 'echarts';
并删除了@types/echarts 库。我暂时无法更改图例图标:(
最佳答案
当你使用 echarts 5 时,你不能安装 @types/echarts,因为 echarts 5 现在是用 typescript 编写的:即 echarts 包已经包含了这个版本的正确类型。
echarts 4 和 echarts5 之间发生了很多变化——其中之一是 EchartOption 现在被称为 EchartsOption(带有复数“s”)
关于javascript - "echarts"' has no exported member named ' EChartOption '. Did you mean ' EChartsOption' 代替?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66344990/
我正在使用 Angular 9 连同 "ngx-echarts": "5.2.2"和 "echarts": "5.0.0"一切正常接受设置icon: 'circle'为传奇。它说下面的事情。 Type
我是一名优秀的程序员,十分优秀!