Skip to content

Releases: apache/echarts

4.0.0

16 Jan 02:58
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

3.8.5

14 Nov 06:04
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

3.8.4

13 Nov 14:43
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

v3.8.4

2017-11-13
  • [^] Fixed that registerMap is null on index*.js.
  • [^] Fixed some CommonJS incorrect brought by injection.

3.8.3

10 Nov 14:58
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

v3.8.3

2017-11-10

Fixed thatregisterMap is null on index*.js.

3.8.2

10 Nov 05:43
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

v3.8.2

2017-11-10
  • [^] Fixed backward compatibility problems brounght by 3.8.0:
    • In 3.8.0, the content in lib directory is the same as the content in src directory (both are ES Module), which may not compatible with the old verisons of node and webpack. So rollback to commonJS format in lib of 3.8.2.
    • In 3.8.0, the source code in src constains global variable __DEV__ (which prints dev helper info for echarts users). To get the declaration of the global variable, users should include echarts/src/config.js manually or make some settings in webpack/rollup (Check custom build tutorial please), which is not backward compatible. So we have removed __DEV__ from the codes in echarts/lib/** in 3.8.2. If dev helper info is required, use codes in echarts/src/**.
    • After 3.8, echarts/src/echarts.js (the same as echarts/lib/echarts.js in 3.8.0) does not include util methods, which used to be mounted on it. Now util methods are listed in echarts/src/export and mounted on echarts/echarts*.js. But it is not backward compatibility, so we have rollbacked to mount them on echarts/lib/echarts.js in 3.8.2.
    • The way of including echarts/extension/dataTool, havs been rollbacked to the original approach before 3.8, where it must be included explicitly, and the namespace will be mounted on echarts namespame.
  • [^] Fixed the problem that SVG renderer throws error when encounter null value.

3.8.0

08 Nov 07:30
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

v3.8.0

2017-11-08
  • [+] Supported Tree Chart, including horizontal layout, vertical layout, radial layout.

  • [+] Supported SVG Renderer (beta), enable developers to choose SVG or Canvas renderer based on their platfroms and functional requirments.

  • [+] Source code of echarts has been switched to ES Module, which enabled tree shaking of bundle and reduced size.

  • [+] Supported build scripts for creating custom build, including multiple language support. See custom build tutorial. And added Finnish support, which is contributed by xvaara in PR #6863.

  • [+] Supported axis arrow. See #6675.

  • [+] Supported strokeWidth and strokeColor in treemap. See #6804.

  • [+] Supported show adjacent nodes in graph. See #6772.

  • [^] Fixed the area calculation when grid.containLabel is true and axis is rotated. Thanks xvaara for PR #6951.

  • [^] Fixed that the calculation of interval is not incorrect when axisLabel.rotate is set in category axis. See #4170. Thankslanyuechen for PR #6903.

  • [^] Fixed the negative problem in dataTool.prepareBoxplotData. Thanks d-rudolf for PR #6749.

  • [^] Enhanced the label interval of time axis. Thanks xiaoshan00 for PR #6808.

  • [^] Supported radiusAxis.inverse. See #6805 and #4253.

  • [^] Renamed some variables to avoid webpack special variable name. See #6788.

  • [^] Fixed position problem of scrollable legend. See #6756.

  • [^] Fixed that the themeRiver legend color is incorrect. See #6932.

  • [^] Fixed that brush empty value caused error thrown. See #6892.

  • dist/echarts/echarts.simple.js do not includ utils, which used to be mounted on echarts. dist/echarts/echarts.common.js and dist/echarts/echarts.js keep including them as before. And developers can custom build to include them.

  • Changes about dataTool: When using dist/echarts/echarts.simple.js or dist/echarts/echarts.common.js, dist/echarts/extension/dataTool.js should be manually included as before, but the namespace dataTool will not be mounted to echarts. When using dist/echarts/echarts.js, echarts.dataTool is included automatically by default.

3.7.2

27 Sep 07:55
Compare
Choose a tag to compare

v3.7.2

2017-09-27

3.7.1

31 Aug 08:46
Compare
Choose a tag to compare

v3.7.1

2017-08-31

[Recovery Build]

3.7.0

22 Aug 05:08
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

v3.7.0

2017-08-16
  • [+] Supported Rich Text, which has enabled style configuring to some text snippets or the entire text block, and supported using images in text, and supported alignment or rotation of text block or snippets.

  • [+] Supported Scrollable Legend, which provides a solution for displays planty of legend items. See vertical legendhorizontal legend.

  • [+] Flatten textStyle option. textStyle exist in echarts option everywhere, for example, series-bar.label.normal.textStyle, xAxis.axisLabel.textStyle. It seems that some of them are to deep and verbose. So we removed the level of textStyle to flatten them. That is, previous label.normal.textStyle.fontSize, axisLabel.textStyle.fontSize is modified to label.normal.fontSize, axisLabel.fontSize after v3.7. Of course, the previous style is compatible all the same. Those options are flattened:

    • axisPointer.textStyle
    • xAxis.axisLabel.textStyle
    • yAxis.axisLabel.textStyle
    • radar.axisLabel.textStyle
    • singleAxis.axisLabel.textStyle
    • radiusAxis.axisLabel.textStyle
    • angleAxis.axisLabel.textStyle
    • parallel.parallelAxisDefault.axisLabel.textStyle
    • parallelAxis.axisLabel.textStyle
    • series.label[normal|emphasis].textStyle
    • series.data.label[normal|emphasis].textStyle
    • series-gauge.axisLabel.textStyle
    • series-gauge.title.textStyle
    • series-gauge.detail.textStyle
    • series-treemap.upperLabel[normal|emphasis].textStyle
    • series-graph.edgeLabel[normal|emphasis].textStyle
    • calendar.dayLabel.textStyle
    • calendar.monthLabel.textStyle
    • calendar.yearLabel.textStyle
    • markPoint.label[normal|emphasis].textStyle
    • markPoint.data.label[normal|emphasis].textStyle
    • markLine.label[normal|emphasis].textStyle
    • markLine.data.label[normal|emphasis].textStyle
    • markArea.label[normal|emphasis].textStyle
    • markArea.data.label[normal|emphasis].textStyle
    • tooltip.axisPointer.crossStyle.textStyle
    • axisPointer.label.textStyle
    • timeline.label.textStyle
    • radar.name.textStyle
  • [+] Supported minInterval on time axis (that is, axis.type is 'time'), and supported maxInterval on value axis (that is axis.type is 'value'). So that it is enabled to controll the precision of label when data zooming.

  • [+] Supported xAxis.axisLine.onZeroAxisIndex, which enables specifing corresponding relationship when multiple axes used and onZero is required. See #5069

  • [+] Supported that do not use coordinate system in custom series.

  • [+] Supported rotation and alignment of label in bar chart. See rotate, align, verticalAlign. See example. See #5309.

  • [+] Supported radar.indicator.color, which enables setting different color for each indicator of radar chart. See #6128.

  • [+] Supported dataZoom.rangeMode, which can fixing zoom window according to data when data updated. See #6128.

  • [+] Supported using dataIndex in action.legend.legendToggleSelect, action.legend.legendSelect, action.legend.legendUnSelect. See #4242.

  • [+] Supported map.label.formatter, which enables using rich text in map series. See Map Labels.

  • [+] Supported title.borderRadius and legend.borderRadius, which enables round corner of background or border in title and legend component.

  • [^] Fixed that error thrown when using shadow in pie series in some version of IE. See #5777.

  • [^] Fixed that name can not be obtained in tooltip when nameMap was used in map serise and there was no data in some areas. See #5633.

  • [^] Fixed tooltip location incorrect after roamed in bmap extension. See #6211.

  • [^] Fixed null pointer exception of axisPointer. See #6121.

  • [^] Fixed that error occured when height of heatmap was 0. See #6214.

  • [+] Fixed the incorrect rendering when the first entry was empty in candlestick. See #6059.

  • [^] Fixed that series-bar.dimensions did not work. See #6252

  • [^] Fixed that when chilren number of group was not fixed, they could not be removed correctly in custom series.

  • [^] Fixed the error that calling connect before setOption called. See #6281.

  • [^] Fixed the edge judgement of tooltip.confine. See #6277 and 0da06d8.

  • [^] Fixed that bar series displayed abnormal when viewport was narrow and bar series were overlapped (both set barWidth and barGap: '-100%'). See #6312.

  • [^] Fixed precision problems. See #6371.

3.6.2

15 Jun 08:54
Compare
Choose a tag to compare

NOTE: This is a Non-Apache Release

3.6.2

2017-06-15