From 847b2080c6cba7309f483f7089201db57486fb54 Mon Sep 17 00:00:00 2001 From: stla Date: Mon, 11 Jan 2021 19:39:42 +0100 Subject: [PATCH] version 1.3.0 --- DESCRIPTION | 2 +- NEWS.md | 2 +- R/shiny.R | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e1df98c..86dccbe 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: rAmCharts4 Title: Interface to the JavaScript Library 'amCharts 4' -Version: 1.2.0.9000 +Version: 1.3.0 Authors@R: c( person(given = "Stéphane", family = "Laurent", diff --git a/NEWS.md b/NEWS.md index 70812df..94a8698 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# rAmCharts4 1.2.0.9000 (xxx) +# rAmCharts4 1.3.0 (2021-01-11) * New options for legends: `maxWidth`, `maxHeight`, and `scrollable`. * New chart: pie chart. diff --git a/R/shiny.R b/R/shiny.R index 717d165..7d64de7 100644 --- a/R/shiny.R +++ b/R/shiny.R @@ -348,5 +348,5 @@ updateAmGaugeChart <- function(session, outputId, score){ #' @export updateAmPieChart <- function(session, outputId, data){ stopifnot(is.data.frame(data)) - session$sendCustomMessage(paste0(outputId, "pie"), score) + session$sendCustomMessage(paste0(outputId, "pie"), data) }