sushuang
sushuang
Currently, `stack` is only supported on `'category'` axis. In fact, we've been considering whether support `stack` on `'time'` or event `'value'` axis, since it is a bit complicated than supporting...
ECharts is rendered by Canvas or SVG, not HTML. A good pattern of this job I think it probably be: Get user parameters (like data select, bar click, ...) and...
Try `stroke` instead of `fill` please.
Some remaining feature defects: 1. The select box will be overflow the thumbnail container. 2. When the select box is overflow the thumbnail, it disappears. Keeping display is expected. ---...
> I can't remember the reason exactly. Seems it's because other baseline configuration may have unexpected result in some font-family like Microsoft Yahei. Yes, I remember for Canvas renderer, it...
提供的信息太少没有明白你的问题。
If the original requirement is: > We need to hide or disable those charts with no data. If there is no data, the series will not be displayed automatically.
Could we know the original requirement?
`log(0)` is `-Infinity`. So after removing `0` it will be OK. But it is needed to be think whether to trade `0` as an empty data.
@dvago If using bundler (like webpack, rollup, etc.), for example: ```sh npm install echarts-stat npm install echarts ``` ```js import * as echarts from 'echarts'; import {transform} from 'echarts-stat'; echarts.registerTransform(transform.histogram);...