hustcc / echarts-for-react

⛳️ Apache ECharts components for React wrapper. 一个简单的 Apache echarts 的 React 封装。
https://git.hust.cc/echarts-for-react
MIT License
4.56k stars 633 forks source link

Last Axis label shows different font than other label in Bar Chart #312

Closed AbhaysinghBhosale closed 5 years ago

AbhaysinghBhosale commented 5 years ago

I had used the echarts-for-react to add the barcharts

For this i had used the imports as follows import ReactEchartsCore from 'echarts-for-react/lib/core'; import echarts from 'echarts/lib/echarts'; import 'echarts/lib/chart/bar'; import 'echarts/lib/component/tooltip'; import 'echarts/lib/component/toolbox';

Issue last label always shows bold. image

AbhaysinghBhosale commented 5 years ago

Found the solution for this. It was due to interval: 0 in yAxis. ie yAxis: [{ interval: 0}] was causing this issue and there is no information about interval in echart API documentation.