apache / echarts

Apache ECharts is a powerful, interactive charting and data visualization library for browser
https://echarts.apache.org
Apache License 2.0
60.44k stars 19.61k forks source link

[Bug]invalid configuration of radiusAxis.axisLabel.inside and radiusAxis.axisTick.inside #17434

Open zning02 opened 2 years ago

zning02 commented 2 years ago

Version

5.3.1

Link to Minimal Reproduction

No response

Steps to Reproduce

配置如下 option = { angleAxis: { clockwise:false }, radiusAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu'], z: 10, axisTick:{ inside:true, }, axisLabel:{ inside:true } }, polar: {}, series: [ { type: 'bar', data: [1, 2, 3, 4], coordinateSystem: 'polar', name: 'A', stack: 'a', emphasis: { focus: 'series' } } ], };

Current Behavior

标签(axisLabel)和刻度线(axisTick)没有朝内

Expected Behavior

标签(axisLabel)和刻度线(axisTick)朝内

Environment

- OS:
- Browser:
- Framework:

Any additional comments?

No response

echarts-bot[bot] commented 2 years ago

@zning02 It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗

TRANSLATED
**TITLE** [Bug] invalid configuration of radiusAxis.axisLabel.inside and radiusAxis.axisTick.inside **BODY** ### Version 5.3.1 ### Link to Minimal Reproduction _No response_ ### Steps to Reproduce The configuration is as follows option = { angleAxis: { clockwise: false }, radiusAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu'], z: 10, axisTick:{ inside:true, }, axisLabel:{ inside:true } }, polar: {}, series: [ { type: 'bar', data: [1, 2, 3, 4], coordinateSystem: 'polar', name: 'A', stack: 'a', emphasis: { focus: 'series' } } ], }; ### Current Behavior Labels (axisLabel) and tick marks (axisTick) are not facing inwards ### Expected Behavior Labels (axisLabel) and tick marks (axisTick) face inwards ### Environment ````markdown - OS: - Browser: - Framework: ```` ### Any additional comments? _No response_
qidasheng369 commented 1 year ago

我也遇到了同样的问题,设置不生效 I also encountered the same problem. The settings do not take effect

radiusAxis: {
  axisLabel: {
      inside: true,  //   not effect--不生效
  },
  },
Soljourner commented 2 weeks ago

Any solutions to this? I am experiencing the same issue