I know this may sound picky for someone. But we are migrating an existing app to a new UI design provided. So far we have accomplished most of the items but there are some that we don’t know how to do like for example change the axis font size and color of a bars visualization like this:
And in the options object you will have the full echarts configuration for that instance. You can modify the configurations and set it back in a similar fashion:
myChart.set('__CHART__', options)
The documentation for every parameter and configuration for Echarts is the same link provided by @oliver.
Thanks @eduardo, that helps. The problem is that is done once the visualization is created and rendered. Is there any way to do that from the beginning? The other thing is that I haven’t found the right configuration, echarts has soooo many, but at least I have something to test.
Yes, Echarts documentation is extensive but once you learn how to use it becomes easier. I haven’t tried with other visualization besides the Bars, but I guess it will be the same. Here is the how I did it (combined with @eduardo and @william solutions):