Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

雷达图设置axisLabel的show属性为true后报错 #7628

Closed
mike8625 opened this issue Jan 26, 2018 · 2 comments
Closed

雷达图设置axisLabel的show属性为true后报错 #7628

mike8625 opened this issue Jan 26, 2018 · 2 comments
Labels

Comments

@mike8625
Copy link

mike8625 commented Jan 26, 2018

One-line summary [问题简述]

雷达图设置axisLabel的show属性为true后报错
错误信息: Uncaught TypeError: e.getCategories is not a function

Version & Environment [版本及环境] x64

  • ECharts version [ECharts 版本]: 4.0.1
  • Browser version [浏览器类型和版本]: chrome 63
  • OS Version [操作系统类型和版本]: win10

Expected behaviour [期望结果]

能在雷达图上显示数字,结果js报错了

ECharts option [ECharts配置项]

option = {
//就是把示例中的代码加了一个 axisLabel:{show: true}
    title: {
        text: '基础雷达图'
    },
    tooltip: {},
    legend: {
        data: ['预算分配(Allocated Budget)', '实际开销(Actual Spending)']
    },
    radar: {
        // shape: 'circle',
        name: {
            textStyle: {
                color: '#fff',
                backgroundColor: '#999',
                borderRadius: 3,
                padding: [3, 5]
           }
        },
        //加的这里
        axisLabel:{
          show: true
        },
        indicator: [
           { name: '销售(sales)', max: 6500},
           { name: '管理(Administration)', max: 16000},
           { name: '信息技术(Information Techology)', max: 30000},
           { name: '客服(Customer Support)', max: 38000},
           { name: '研发(Development)', max: 52000},
           { name: '市场(Marketing)', max: 25000}
        ]
    },
    series: [{
        name: '预算 vs 开销(Budget vs spending)',
        type: 'radar',
        // areaStyle: {normal: {}},
        data : [
            {
                value : [4300, 10000, 28000, 35000, 50000, 19000],
                name : '预算分配(Allocated Budget)'
            },
             {
                value : [5000, 14000, 28000, 31000, 42000, 21000],
                name : '实际开销(Actual Spending)'
            }
        ]
    }]
};

Other comments [其他信息]

3.x是正常的

@zhangsundf
Copy link

那现在有解决办法没

@100pah
Copy link
Member

100pah commented May 13, 2019

Fixed in #10036

@100pah 100pah closed this as completed May 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants