584 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
91
views
Sankey Diagram: Categories are not in order
I want to create a sankey diagram using {highcharter} which shows a pre timepoint and a post timepoint. I have been working with this code. My problem is, that R sometimes mixes up the order of the ...
2
votes
1
answer
65
views
Multiple highcharter graphics with common legend
Based on my previous question (Multiple series radar plot with highcharter), I am trying now to create a frame of n graphics, all having the same legends.
Here is a repex :
library(highcharter)
...
2
votes
2
answers
91
views
Multiple series radar plot with highcharter
I am trying to create a radar plot with multiple series. Unfortunately I don't manage to make the polar = TRUE argument work.
Here is my attempt so far :
library(dplyr)
library(highcharter)
df <- ...
1
vote
1
answer
151
views
Highcharter/Highmaps - how to use TiledWebMap?
I am trying to build a map with highcharter/highmaps which includes a topographical map via a tiled web map.
As a test, I would like to replicate the OpenStreetMap demo (JSFiddle) as provided by ...
4
votes
1
answer
204
views
Trying to add a graph series in a separate panel to highcharter
I am trying to add a MACD graph section to the highcharter graph similar to volume section.
I have the code for creating same.
Not sure as how they will be added as separate section similar to volume.
...
2
votes
2
answers
144
views
Programatically export highcharts to SVG using highcharter R package load event
I am attempting to leverage the load events available inside the hc_chart() function of the highcharter package in order to export a highcharts object to SVG once the chart has loaded, but so far my ...
0
votes
1
answer
71
views
Highcharts not rendering inside floating container in Shiny app
I'm developing a Shiny app where I want a floating container (float-container) to appear when a user selects a country from a dropdown menu. This container should display two Highcharts (g3_output and ...
0
votes
0
answers
65
views
Highcharter line chart is showing one category x axis label not correctly
Using this code I am trying to select one category out of three using selectInput but in the line chart I am not able to see the x axis category with full name as it is showing only 'C' rather than ...
0
votes
1
answer
112
views
How to add a second y-axis to a bar chart?
I have been trying to add a second y-axis (showing percentages) to my highcharter plot, however I cannot get it right.
Using dummy data such as this one:
# Sample data
set.seed(1234)
df <- data....
1
vote
1
answer
30
views
Dates on x axis in Highcharter plots in R: How to specify x axis min/max?
I am generating highcharter interactive plots in a Shiny app. The values on the x axis are dates and I have a slider that allows the user to change the min and max limits for the x axis. Except it ...
1
vote
1
answer
56
views
Formatting Issue with Tooltip in Highcharter Dependency Wheel Chart
I'm using the highcharter package in R to create a dependency wheel chart visualizing export relationships between Brazilian regions and economic blocs. While most of the chart's formatting is correct,...
0
votes
1
answer
89
views
Not able to center align subtitle in highchart donut chart
I want to show subtitle at the center of the chart. When I set below subtitle properties it will center the subtitle by considering div height and width it is not showing subtitle at the center of ...
0
votes
0
answers
53
views
Issue with border, tooltip values, and custom colors
I am trying to create a treemap chart using the highcharter package in R. The chart has some specific requirements:
Border on Level 2 Only: I want a visible border only on level 2 of the treemap.
...
0
votes
1
answer
55
views
Inconsistent colors between legend and lines in Highcharter line chart
I'm creating a shiny dashboard with a line chart using the Highcharter package in R to visualize export data over time for various countries. My goal is to have a unique color for each country, which ...
2
votes
2
answers
120
views
Mapline not displaying connections on a Highcharts map
I'm trying to create a world map in R using the Highcharter package. The goal is to plot connections (lines) between São Paulo and the top 10 export destinations, with each connection represented by a ...