【发布时间】:2022-01-18 20:40:19
【问题描述】:
native-echartsminorSpitLine 在 react native 应用程序中无法正常工作,但在网页(浏览器)上可以正常工作。 对这个问题有帮助吗?
package.json
"react-native": "^0.64.3",
"expo": "~43.0.0",
"echarts": "^5.2.2",
折线图代码:
xAxis: {
type: 'time',
minorSplitLine: {
show: true,
lineStyle:{
color: '#D3D3D3',
}
},
splitLine:{
show: true,
lineStyle:{
color: 'gray',
}
},
},
yAxis: {
type: 'value',
minorSplitLine: {
show: true,
lineStyle:{
color: '#D3D3D3',
}
},
splitLine:{
show: true,
lineStyle:{
color: 'gray',
}
},
},
谢谢
【问题讨论】:
标签: reactjs react-native