我在应用中使用了“ native-echarts”:“ ^ 0.4.0”,但无法显示type: 'bar'
。
const option = {
angleAxis: {
type: 'category',
data: ['yi', 'si', 'er', 'san', 'wu', 'liu', 'r'],
z: 10
},
radiusAxis: {
},
polar: {
},
series:[{
type: 'bar',
data: [1, 2, 3, 4, 3, 5, 1],
coordinateSystem: 'polar',
name: 'A',
stack: 'A',
itemStyle:{
normal:{
color:'#4A90E2'
}
}
},
// {
// type: 'line',
// data: [2, 4, 6, 1, 3, 2, 1],
// coordinateSystem: 'polar',
// name: 'B',
// stack: 'B'
// }, {
// type: 'line',
// data: [1, 2, 3, 4, 1, 2, 5],
// coordinateSystem: 'polar',
// name: 'C',
// stack: 'C'
// }
],
legend: {
show: true,
data: ['A', 'B', 'C']
}