score:0
Seting plotOptions.column.borderWidth to 0 should help remove breaks between stacked column segments.
According to the documentation: The width of the border surrounding each column or bar. Defaults to 1 when there is room for a border, but to 0 when the columns are so dense that a border would cover the next column.
plotOptions: {
column: {
stacking: 'normal',
borderWidth: 0,
},
},
Live demo: https://jsfiddle.net/BlackLabel/1kut32c8/
API References: https://api.highcharts.com/highcharts/plotOptions.column.borderWidth
score:1
Yes, you can set borderWidth and that should fix the problem: https://api.highcharts.com/highcharts/plotOptions.column.borderWidth
Code in R:
library('highcharter')
highchart() %>%
hc_chart(type = "column") %>%
hc_series(
list(data=list(5, 4, 3, 5)),
list(data=list(5, 4, 3, 5))
) %>%
hc_plotOptions(column = list(
stacking = "normal",
borderWidth = 0
)
)
Source: stackoverflow.com
Related Query
- HighChart And R weird Column chart breaks
- Highchart Js Column Chart Stacked and Grouping
- How can i reduce gap between legend and chart in highchart of type column where legend is aligned at top without reducing height of chart?
- How to create a column range chart in Highcharts using range and navigator functions?
- Remove Export and print button plugin on highchart chart
- How to create a new Highstock chart with new Highchart and not jquery?
- High chart - Column Range Chart with Time range. How to get tooltip as Start and End time
- Customize Stacked column chart in highChart
- put the highchart legend to the bottom of the chart and horizontally centered
- Fire click event on a highchart column drilldown chart on clicking x axis for drill down reports
- How to dynamically add point placement and point padding in fixed column chart (highcharts)
- hide a particular column on xAxis highchart Column Chart
- trying to dynamically update Highchart column chart but series undefined
- Highchart / Highstock stack column chart show one series's tooltip at a time
- how to change color of line chart in highchart based on a categorical column in r?
- How to set border in column chart - Highchart
- how to dynamically change column chart to mirror chart using highchart
- How to change tooltip of a column chart programmatically in highchart
- highchart column comparison chart like xrange
- Column chart with negative values and categories on xAxis in HighCharts
- How to have first level as column chart and second level as Fixed placement columns in drill down highcharts
- Convert and Sort Data for HighChart Column Range Representation
- combination chart (area and bar) highchart
- Highchart multiple column range in same series on bar chart
- Highchart min/max values doesn't set and chart not plotted properly
- Zoom function breaks the xAxis labels and creates chart gaps when exiting zoom
- How to get chart min and max values after Drag zooming in highChart chart?
- why its difficult to set point padding and placement dynamically according to the data in fixed column chart (highcharts)?
- Reversing the min and max values in column chart
- Highcharts.js column chart labels and data not displaying properly after 60 columns
More Query from same tag
- How to fix Prototype conflict with Highchart?
- Highcharts x-axis datetime issue
- How to display monthly data in Highcharts graph?
- Changing tootip data on pie chart in highcharts
- Highcharts - Same chart multiple times in same page
- Highcharts downsampling - CSV
- highcharts image not resized after window resize
- Drawing a line between 2 points in line chart using Highcharts?
- Highcarts function not being recognized
- time data with irregular intervals in HighChart
- How can I pass my sqlite data to django, and make chart?
- xAxis type: 'category' without stacking duplicate names?
- How to convert HTML table to Chart?
- issue on Adding Multi Text To Chart in Highcharts
- Highcharts overlapping and stacked column
- Add labels to columns in highcharts pie chart legend
- Legends Name Over Bar Charts Instead of Value
- rangeSelector input and export button missalignment
- Highcharts with database
- Highcharts - How to populate date with Mysql and PHP?
- Increase size of rCharts on Shiny Dashboard
- How to align highchart legend when using multiple pie chart in one container?
- HighCharts numericSymbols in French and German
- Highcharts Drilldown charts CodeIgniter
- Error using Highcharts (>= 8.0.1) function stockChart() in Angular
- High chart Displaying wrong month value in xaxis
- Is it possible to have multiple highcharts with one id?
- Highcharts with dynamic yaxis labels as strings
- Highcharts renderer in websharper
- Highcharts show loading icon when fetching data in javascript