0.1.2 • Published 3 years ago

native-echarts-yw v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

维护记录

1、index.js 安卓环境问题解决 需要将tpl.html 复制到android assets 下

2、toString.js 问题替换 \n换行符 %u unicode 编码问题

3、renderChart.js echarts 外部参数无法进入 formatter回调中

解决安卓环境问题

formatter回调问题

fork 项目从https://github.com/somonus/react-native-echarts

发布打包使用修改问题 (2021.07.12)

1、bug formatter时候无法 获取外部传入的 customData formater函数应该写成 g_chartContext

    _serisesOptions.xAxis.axisLabel.formatter = function (data, index) {
					let date = new Date(g_chartContext.start + data)
					let month = date.getMonth() + 1
					month = ("0" + month).slice(-2);
					let day = date.getDate()
					day = ("0" + day).slice(-2);
					let hour = date.getHours()
					hour = ("0" + hour).slice(-2);
					let min = date.getMinutes()
					min = ("0" + min).slice(-2);
					let second = date.getSeconds()
					second = ("0" + second).slice(-2);
					// return hour + ":" + min + ":" + second
					return `${month}-${day}` + '\nn' + `${hour}:${min}:${second}`
				}