You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/10/25 03:08:08 UTC

[GitHub] dontry opened a new issue #9275: 箱线图Boxplot箱子宽度根据样本数量变化

dontry opened a new issue #9275: 箱线图Boxplot箱子宽度根据样本数量变化
URL: https://github.com/apache/incubator-echarts/issues/9275
 
 
   @leeight  你好,我在源码中见到TODO注释里面有关于添加箱子宽度根据样本数量显示的计划,请问什么时候可以实现?这个功能挺对箱线图重要的,如果可以我也希望能提供帮助。谢谢!
   ```js
   var BoxplotSeries = SeriesModel.extend({
   
       type: 'series.boxplot',
   
       dependencies: ['xAxis', 'yAxis', 'grid'],
   
       // TODO
       // box width represents group size, so dimension should have 'size'.
   
       /**
        * @see <https://en.wikipedia.org/wiki/Box_plot>
        * The meanings of 'min' and 'max' depend on user,
        * and echarts do not need to know it.
        * @readOnly
        */
       defaultValueDimensions: [
           {name: 'min', defaultTooltip: true},
           {name: 'Q1', defaultTooltip: true},
           {name: 'median', defaultTooltip: true},
           {name: 'Q3', defaultTooltip: true},
           {name: 'max', defaultTooltip: true}
       ],
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org