native-echarts-类型:“ bar”,coordinateSystem:“ polar”,无法显示

时间:2019-06-25 08:22:59

标签: react-native

我在应用中使用了“ 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']
    }

0 个答案:

没有答案