Questions tagged [r-highcharter]

Questions related to the usage of the Highcharts JavaScript library in R.

Highcharter is a R wrapper for the javascript library which is a charting library offering numerous interactive chart types such as line, area, bar, pie, scatter, bubble, gauge, polar charts.

Links:

Vignettes

533 questions
0
votes
1 answer

HighcharteR multiple tooltips open with hideDelay

Basically I'm trying to make the tooltips stay around for a few seconds and not close when hovering on another region, i.e., to leave a trail of old open tooltips like in this example Test data: require(dplyr) require(highcharter) mapdata <-…
runr
  • 1,142
  • 1
  • 9
  • 25
0
votes
1 answer

How to change chart height in hchart() function in R (highcharter package) without using pipe operator?

I built a Shiny app where I create some plot from hist() and density() objects, both saved in a list into an .RDS file from another script file. So, in shiny I only read the .RDS and make the plot. Everything is working now, except that I am not…
0
votes
0 answers

R highcharter graphic x axis 1 jan 1970

I am trying to plot a data frame that has two columns in r that have the following format: Col1-----name:"Date"-----class:"Date"----example: 2001-01-01 Col2-----name:TC---------class:"Numeric"----example:"4.50" Here is a summary of the data frame I…
0
votes
1 answer

Visualisation with highcharter - Error with highcharter in R

I am trying to plot basic charts with library: highcharter but getting the error : highchart()%>% hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight)) Warning: Error in mutate_impl: Column `x` is of unsupported type quoted…
user10594807
0
votes
1 answer

Disable No data to display message

I have a chart in Shiny generated with the HighCharter package. I would like to surpress the "No data to display" message which is shown when the series to be plotted is empty. In my case, the actual content of the plot is shown as a plotLines…
Damian
  • 79
  • 1
  • 11
0
votes
1 answer

could not find function "hc_add_series_density" Highcharter R

I'm using Highcharter version 0.6.0 (R) I need to build density plots and each plot needs to have multiple series. I looked up online and came across hc_add_series_density by Nuno Agostinho. I tried using it in the code below but i get the error -…
0
votes
1 answer

Is it possible to create a Word Cloud with highcharter?

I tried it with the following code, but somehow it didn't work for me: x4 is a dataframe, n1 a character string, and n2 the number of counts per word. hchart(x4 ,"wordcloud", hcaes(name = "n1", weight = "n2"))
hrng
  • 51
  • 7
0
votes
1 answer

Clickable Points Popup in Highcharter R Shiny

Here is my question. Is it possible to replicate the following example from Highcharts in R Highchart? The idea is to introduce various text inside a popup which appears when a point is selected. Example here: https://jsfiddle.net/jnupf62x/ This…
gabzo
  • 198
  • 1
  • 13
0
votes
1 answer

Error in rendering Highcharter Pie chart in Shiny App

I am trying to plot a pie chart using highcharter in a Shiny app with 2 user controls. Here's the relevant UI code: column( 6, fluidRow( column(6,selectInput('type','Select Builder/Owner', …
Dhiraj
  • 1,650
  • 1
  • 18
  • 44
0
votes
1 answer

highcharter custom animation

I'm trying to add a custom animation using highcharter R package like in this example where I use a polar chart. I'm able to do this using JS, but I can't translate the animation function (from ease repository) to highcharter. Here is my R code: #…
patL
  • 2,259
  • 1
  • 17
  • 38
0
votes
0 answers

HighcharteR in OfficeR/RVG package possible?

I have to implement a download function in shiny app. This is an example code: library(rvg) library(ggplot2) library(officer) library(highcharts) library(jpeg) library(ggplot2) font.add.google("Open Sans",…
user7353167
0
votes
1 answer

inner radius polar Highcharter

I'm trying to change the inner radius of a polar chart using highcharter so I can visualize the data by hoving the tooltip like in this awesome D3 charts from fivethirtyeight. I know that it's possible to visualize data with solid gauge like in this…
patL
  • 2,259
  • 1
  • 17
  • 38
0
votes
0 answers

Creating a Column Graph using Highcharter in R

I am having trouble creating an interactive column chart in R using highcharter. Here is the code that I am trying to work…
0
votes
1 answer

R Highcharter: Formatting tooltip

I have a "stacked bar" chart and I put it against a wider bar to see if it fits in my criteria or not. I have the graph looking the way I want due to a trick (using grouping = FALSE and having the total of each column be the sum of the ones in front…
Kevin
  • 1,974
  • 1
  • 19
  • 51
0
votes
1 answer

R Highcharter: Formatting dual y-Axis chart

I have a column & line chart, using primary and secondary y-axis. I am wondering how I can format each axis separately. I want to be able to do 2 things: Have the primary axis maximum be set at 100 Be able to use colorByPoint for the column…
Kevin
  • 1,974
  • 1
  • 19
  • 51