You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
3.0 KiB
63 lines
3.0 KiB
|
3 months ago
|
## 0.3.1(2021-06-21)
|
||
|
|
- fix: 修复 app-nvue ios is-enable 无效的问题
|
||
|
|
- ## [代码示例 站点1](https://limeui.qcoon.cn/#/echart-example)
|
||
|
|
- ## [代码示例 站点2](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.3.0(2021-06-14)
|
||
|
|
- fix: 修复 头条系小程序 2d 报 JSON.stringify 的问题
|
||
|
|
- 目前 头条系小程序 2d 无法在开发工具上预览,划动图表页面无法滚动,axisLabel 字体颜色无法更改,建议使用非2d。
|
||
|
|
## 0.2.9(2021-06-06)
|
||
|
|
- fix: 修复 头条系小程序 2d 放大的BUG
|
||
|
|
- 头条系小程序 2d 无法在开发工具上预览,也存在划动图表页面无法滚动的问题。
|
||
|
|
## [代码示例:http://liangei.gitee.io/limeui/#/echart-example](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.2.8(2021-05-19)
|
||
|
|
- fix: 修复 微信小程序 PC 显示过大的问题
|
||
|
|
## 0.2.7(2021-05-19)
|
||
|
|
- fix: 修复 微信小程序 PC 不显示问题
|
||
|
|
## [代码示例:http://liangei.gitee.io/limeui/#/echart-example](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.2.6(2021-05-14)
|
||
|
|
- feat: 支持 `image`
|
||
|
|
- feat: props 增加 `ec.clear`,更新时是否先删除图表样式
|
||
|
|
- feat: props 增加 `isDisableScroll` ,触摸图表时是否禁止页面滚动
|
||
|
|
- feat: props 增加 `webviewStyles` ,webview 的样式, 仅nvue有效
|
||
|
|
## 0.2.5(2021-05-13)
|
||
|
|
- docs: 插件用到了css 预编译器 [stylus](https://ext.dcloud.net.cn/plugin?name=compile-stylus) 请安装它
|
||
|
|
## 0.2.4(2021-05-12)
|
||
|
|
- fix: 修复 百度平台 多个图表ctx 和 渐变色 bug
|
||
|
|
- ## [代码示例:http://liangei.gitee.io/limeui/#/echart-example](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.2.3(2021-05-10)
|
||
|
|
- feat: 增加 `canvasToTempFilePath` 方法,用于生成图片
|
||
|
|
```js
|
||
|
|
this.$refs.chart.canvasToTempFilePath({success: (res) => {
|
||
|
|
console.log('tempFilePath:', res.tempFilePath)
|
||
|
|
}})
|
||
|
|
```
|
||
|
|
## 0.2.2(2021-05-10)
|
||
|
|
- feat: 增加 `dispose` 方法,用于销毁实例
|
||
|
|
- feat: 增加 `isClickable` 是否派发点击
|
||
|
|
- feat: 实验性的支持 `nvue` 使用要慎重考虑
|
||
|
|
- ## [代码示例:http://liangei.gitee.io/limeui/#/echart-example](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.2.1(2021-05-06)
|
||
|
|
- fix:修复 微信小程序 json 报错
|
||
|
|
- chore: `reset` 更改为 `setChart`
|
||
|
|
- feat: 增加 `isEnable` 开启初始化 启用这个后 无须再使用`init`方法
|
||
|
|
```html
|
||
|
|
<l-echart ref="chart" is-enable />
|
||
|
|
```
|
||
|
|
```js
|
||
|
|
// 显示加载
|
||
|
|
this.$refs.chart.showLoading()
|
||
|
|
// 使用实例回调
|
||
|
|
this.$refs.chart.setChart(chart => ...code)
|
||
|
|
// 直接设置图表配置
|
||
|
|
this.$refs.chart.setOption(data)
|
||
|
|
```
|
||
|
|
## 0.2.0(2021-05-05)
|
||
|
|
- fix:修复 头条 百度 偏移的问题
|
||
|
|
- docs: 更新文档
|
||
|
|
## [代码示例:http://liangei.gitee.io/limeui/#/echart-example](http://liangei.gitee.io/limeui/#/echart-example)
|
||
|
|
## 0.1.0(2021-05-02)
|
||
|
|
- chore: 第一次上传,基本全端兼容,使用方法与官网一致。
|
||
|
|
- 已知BUG:非2d 无法使用背景色,已反馈官方
|
||
|
|
- 已知BUG:头条 百度 有许些偏移
|
||
|
|
- 后期计划:兼容nvue
|