Skip to content

Commit

Permalink
Update changelog, symbolSize doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Apr 29, 2015
1 parent 89969cb commit ece77f6
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 14 deletions.
13 changes: 13 additions & 0 deletions doc/changelog-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@
<h2>ChangeLog</h2>
<span>[+]Added [-]Deleted [^]Upgraded [#]Fixed 【】Important</span>
<div class="row-fluid">
<div>
<h3>2.2.2<small> (2015-04-30) </small></h3>
<ul>
<li>【+】 Add Venn chart. See example <a href="./example/venn.html">Venn</a></li>
<li>【+】 Add Treemap,See example <a href="./example/treemap.html">Treemap</a></li>
<li>【+】 Add logarithmic axis,See example <a href="./example/line9.html">line9</a></li>
<li>【+】 Release <a href="http://ecomfe.github.io/echarts-builder-web/">ECharts online builder</a></li>
<li>[^] Add data filter for line chart with large data. <a href="https://github.com/ecomfe/echarts/issues/1370">#1370 »</a></li>
<li>[^] symbolSize can configure width and height with an array</li>
<li>[^] Fix <a href="https://github.com/ecomfe/echarts/issues/1308">#1308 »</a></li>
<li>[^] Add configuration of z and zlevel</li>
</ul>
</div>
<div>
<h3>2.2.1<small> (2015-03-11) </small></h3>
<ul>
Expand Down
13 changes: 13 additions & 0 deletions doc/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@
<h2>修改记录</h2>
<span>[+]新增 [-]删除 [^]升级 [#]修复 【】重要</span>
<div class="row-fluid">
<div>
<h3>2.2.2<small> (2015-04-30) </small></h3>
<ul>
<li>【+】 新增韦恩图(venn),示例查看 <a href="./example/venn.html">韦恩图</a></li>
<li>【+】 新增 Treemap,示例查看 <a href="./example/treemap.html">手机占有率</a></li>
<li>【+】 新增对数轴,示例查看 <a href="./example/line9.html">对数轴示例</a></li>
<li>【+】 发布 <a href="http://ecomfe.github.io/echarts-builder-web/">ECharts 在线构建工具</a></li>
<li>[^] 大规模折线图添加数据抽希策略配置。详见 <a href="https://github.com/ecomfe/echarts/issues/1370">#1370 »</a></li>
<li>[^] symbolSize 支持通过数组分别设置宽高</li>
<li>[^] 修复 <a href="https://github.com/ecomfe/echarts/issues/1308">#1308 »</a></li>
<li>[^] 支持 z, zlevel 的配置</li>
</ul>
</div>
<div>
<h3>2.2.1<small> (2015-03-11) </small></h3>
<ul>
Expand Down
14 changes: 7 additions & 7 deletions doc/doc-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -2885,10 +2885,10 @@ <h5>series (Cartesian) <a name="SeriesCartesian"> </a></h5>
</td>
</tr>
<tr>
<td> <b>{number | Function} </b>symbolSize </td>
<td> <b>{number | Array | Function} </b>symbolSize </td>
<td> 2 | 4</td>
<td> line (2), scatter(4) </td>
<td> size of the symbol. When "calculable" is enabled, it's recommended to increase symbolSize for better interactive experience. When implementing a bubble chart, symbolSize should be a Function, and the bubble size depends on the return value of the method, the parameter passed in is the current data item (value array). </td>
<td> size of the symbol. It is usually a number. But if you use an image as symbol. To prevent stretching of image caused by same width and height, you can use an array as symbolSize which first element is width and the second is height. When "calculable" is enabled, it's recommended to increase symbolSize for better interactive experience. When implementing a bubble chart, symbolSize should be a Function, and the bubble size depends on the return value of the method, the parameter passed in is the current data item (value array). </td>
</tr>
<tr>
<td> <b>{number}</b> symbolRotate </td>
Expand Down Expand Up @@ -3009,7 +3009,7 @@ <h5>series (radar)<a name="SeriesRadar"> </a></h5>
<td> same as <a href="#SeriesCartesian" title="">series (Cartesian). </a></td>
</tr>
<tr>
<td> <b>{number | Function} </b>symbolSize </td>
<td> <b>{number | Array | Function} </b>symbolSize </td>
<td> 2 </td>
<td> same as <a href="#SeriesCartesian" title="">series (Cartesian). </a></td>
</tr>
Expand Down Expand Up @@ -3198,7 +3198,7 @@ <h5>series (force)<a name="SeriesForce"> </a></h5>
<td> as <a href="#SeriesCartesian" title="">series (Cartesian)</a></td>
</tr>
<tr>
<td> <b>{number}</b> symbolSize </td>
<td> <b>{number | Array}</b> symbolSize </td>
<td></td>
<td> size of the node. </td>
</tr>
Expand Down Expand Up @@ -3873,7 +3873,7 @@ <h5>series.markPoint<a name="SeriesMarkPoint"> </a></h5>
<td> the symbol of markPoint, same as series' <a href="#Series">symbol</a>. </td>
</tr>
<tr>
<td> <b>{number | Function} </b> symbolSize </td>
<td> <b>{number | Array | Function} </b> symbolSize </td>
<td> 10 </td>
<td> the size of markPoint symbol, same as series' <a href="#Series">symbolSize</a>. </td>
</tr>
Expand Down Expand Up @@ -4737,7 +4737,7 @@ <h5>categories<a name="categories"></a></h5>
<td> See <a href="#SeriesCartesian" title="">series (Cartesian)</a></td>
</tr>
<tr>
<td> {number} symbolSize </td>
<td> {number | Array} symbolSize </td>
<td></td>
<td> Size of symbol </td>
</tr>
Expand Down Expand Up @@ -4781,7 +4781,7 @@ <h5>nodes(data)<a name="nodes(data)"></a></h5>
<td> See <a href="#SeriesCartesian" title="">series (Cartesian)</a></td>
</tr>
<tr>
<td> {number} symbolSize </td>
<td> {number | Array} symbolSize </td>
<td></td>
<td> Size of symbol </td>
</tr>
Expand Down
14 changes: 7 additions & 7 deletions doc/doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -2905,10 +2905,10 @@ <h5>series(直角系)<a name="SeriesCartesian"> </a></h5>
</td>
</tr>
<tr>
<td> <b>{number | Function} </b>symbolSize </td>
<td> <b>{number | Function | Array} </b>symbolSize </td>
<td> 2 | 4</td>
<td> 折线图 (2),散点图(4) </td>
<td> 标志图形大小,可计算特性启用情况建议增大以提高交互体验。实现气泡图时symbolSize需为Function,气泡大小取决于该方法返回值,传入参数为当前数据项(value数组)</td>
<td> 标志图形大小,可计算特性启用情况建议增大以提高交互体验。可以是单个值,如果在 symbol 为图片的时候想要分别设置宽高防止图片被拉伸,可以使用数组,其中数组第一个值是高,第二个值是宽。 实现气泡图时symbolSize需为Function,气泡大小取决于该方法返回值,传入参数为当前数据项(value数组)</td>
</tr>
<tr>
<td> <b>{number}</b> symbolRotate </td>
Expand Down Expand Up @@ -3029,7 +3029,7 @@ <h5>series(雷达图)<a name="SeriesRadar"> </a></h5>
<td><a href="#SeriesCartesian" title="">series(直角系)</a></td>
</tr>
<tr>
<td> <b>{number | Function} </b>symbolSize </td>
<td> <b>{number | Function | Array} </b>symbolSize </td>
<td> 2 </td>
<td><a href="#SeriesCartesian" title="">series(直角系)</a></td>
</tr>
Expand Down Expand Up @@ -3218,7 +3218,7 @@ <h5>series(力导向布局图)<a name="SeriesForce"> </a></h5>
<td><a href="#SeriesCartesian" title="">series(直角系)</a></td>
</tr>
<tr>
<td> <b>{number}</b> symbolSize </td>
<td> <b>{number|Array}</b> symbolSize </td>
<td></td>
<td> 节点的大小 </td>
</tr>
Expand Down Expand Up @@ -3893,7 +3893,7 @@ <h5>series.markPoint<a name="SeriesMarkPoint"> </a></h5>
<td> 标注类型,同series中的<a href="#Series">symbol</a> </td>
</tr>
<tr>
<td> <b>{number | Function} </b> symbolSize </td>
<td> <b>{number | Array | Function} </b> symbolSize </td>
<td> 10 </td>
<td> 标注大小,同series中的<a href="#Series">symbolSize</a> </td>
</tr>
Expand Down Expand Up @@ -4755,7 +4755,7 @@ <h5>categories<a name="categories"></a></h5>
<td><a href="#SeriesCartesian" title="">series(直角系)</a></td>
</tr>
<tr>
<td> {number} symbolSize </td>
<td> {number|Array} symbolSize </td>
<td></td>
<td> 所有该类目的节点的大小 </td>
</tr>
Expand Down Expand Up @@ -4799,7 +4799,7 @@ <h5>nodes(data)<a name="nodes(data)"></a></h5>
<td><a href="#SeriesCartesian" title="">series(直角系)</a></td>
</tr>
<tr>
<td> {number} symbolSize </td>
<td> {number|Array} symbolSize </td>
<td></td>
<td> 强制指定节点的大小 </td>
</tr>
Expand Down

0 comments on commit ece77f6

Please sign in to comment.