borodovisin opened a new issue #9870: Echarts textStyle not work for axisLabel URL: https://github.com/apache/incubator-echarts/issues/9870 When you set textStyle as global in echarts, that configuration doesn't work on axisLabel inside xAxis or yAxis, the user must to set that property inside xAxis. For example var option = { textStyle: { fontSize: '24' } } Doesn't work. In this case it works: For example var option = { xAxis: { axisLabel: { fontSize: '24' } } }
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
