Skip to content

Releases: XD-DENG/ECharts2Shiny

"Good to Go"

02 Aug 12:51
Compare
Choose a tag to compare

Version published on CRAN.

Covers all new features added after V0.1.2.

More Customizable + Heat Map

27 Jul 11:54
Compare
Choose a tag to compare
Pre-release

New features in V0.1.5

[1] Line Charts, Bar Charts and Scatter Plots can deal with NA values now.

[2] Added font.size.legend argument for all charts with legend bar applicable, to help users better customize the legend bar.

[3] Added arguments font.size.axis.x, font.size.axis.y, rotate.axis.x, and rotate.axis.y for line charts, bar charts, and scatter plots. These arguments can help users better customize the charts.

[4] Added Heat Map function.

A Version Equipped with Richer Options & More Compressed JS Lib

25 Jul 01:20
Compare
Choose a tag to compare

Based on pre-release version V0.1.3,

[1] Added point.size, point.type, line.width and line.type arguments for line charts;

[2] Added point.size and point.type argument for scatter plots;

[3] Added Step Line Chart. Users can use it by specifying step in line chart functioon.

[4] Figured out the conflict between word cloud and other charts. Now we can use all kinds of charts in one application (previously, the word cloud can't be used together other charts)

[5] Compressed ECharts library file. Also merged the main JS library with the word cloud extension file, so that users don't need to load extension JS file separately for word cloud.

A Good-to-Go Version

21 Jul 08:44
Compare
Choose a tag to compare
A Good-to-Go Version Pre-release
Pre-release

Features added in this version (compared with V1.0.2 on CRAN)

  1. Added STACK line plot;
  2. Added STACK bar plot.
  3. For bar chart, added one more option about "stack" or "tiled", so that end-users can choose and change between "stack" and "tiled" in the final interactive charts;
  4. Added options to determine if we show legends or not, and if we show tool bar or not.
  5. Added Scatter plots (including the auto.scale argument for it).
  6. We use includeScript() function to help include JS files into the apps, so that we no longer need to explicitly build a "www" folder and copy the JS scripts into the users' Shiny apps. This is a quite big progress for this pacakge.
  7. Figured out the reactive data issue. Previously, if we use reactive() function to introduce some data and use it to plot with this package, we will encounter scope error. But now we can use reactive data seamlessly (by making use of isolate() function in our functions). This is a big progress too.
  8. Additiaonlly, regarding the reactive data, we solved the issue in which the chart can't respond to the change in the reactive data. That is, we can use input$ to change the reactive data, but the chart will not be updated accordingly automatically. Fortunately, we found that this issue can be perfectly solved by using the chart rendering function together with the observeEvent() function.
  9. Added Radar charts feature.
  10. Added wordcloud feature using the extension publised by ECharts team recently.