score:2
Accepted answer
It was because of the Highcharts animation when the bars are initialized.
Actually I had the animation disabled in the chart configuration, like:
$('#container').highcharts({
chart: {
type: 'bar',
animation: false
},
But this seems not to be enough. The animation must be disabled explicitly for the chart type:
plotOptions: {
bar: {
animation: false,
enableMouseTracking: false
}
}
Source: stackoverflow.com
Related Articles
- Highcharts missing bars when running through PhantomJS
- Highcharts bars are half missing after drillup
- Highcharts too slow when plotting 4000 bars (rCharts)
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts stock chart - Technical Indicators - Stock price is missing in the tooltip when selecting the 'All' range
- Adding round corners to Highcharts Bar Chart with stacked bars when value is 0
- Highcharts with angularjs: smooth transition of bars when updating values
- how to continue the graph line when missing series of data in middle of highcharts
- Missing points in HighCharts when applying event to exported button
- What's the code in Highcharts such that the bars (columns) in the same group use the same color?
- highcharts missing x axis labels when stacking two charts
- Highcharts version 6 dynamic annotations not applied when running getSVG()
- Highcharts - Change value of text box when drilling down through chart
- Highcharts numericSymbols when rendered server-side with Phantomjs
- scrollable highchart works in JS but has issues when running through Angular HighCharts?
- Highcharts displaying white space for bars when all values are zero
- highcharts 5.0.14 phantomjs issue with missing axis titles in exported image
- Highcharts cloud issue with data source when duplicating chart
- HighCharts Adding a Back Button when data is set through point.events.click
- line shown in bold when exporting Highcharts with Phantomjs
- Bars does not show up when loading JSON encoded data from PHP in Highcharts
- Error with PhantomJS when installing Highcharts export server on Azure VM (Ubuntu 20.04)
- Highcharts not defined when loading map data through requirejs
- HighCharts - When I download csv, can I switch data source to new one?
- Highcharts displays series names but missing data points from json source
- Dynamically changing Highcharts Theme through Jquery code not working
- Highcharts export : button is missing when website on IIS server
- How can I get access to a Highcharts chart through a DOM-Container?
- How to make highcharts default to 0 for missing data
- Highcharts => Getting the id of a point when clicking on a line chart
- how to set max min on highcharts dynamically
- rHighchart in R Shiny
- Adding data to a highchart chart using an array with IDs
- Marker with number in highcharts
- Is it possible use size (z) argument with RHighcharter and a categorical Y-axis?
- Set x-axis range in highcharts
- "pointAttr" attribute is missing in Highcharts library 5.0.0
- Is it possible to hide the line & symbol next to Highcharts legend items?
- How to export the whole page or html content with Highcharts not just the chart?
- Unable to use solid-gauge highchart in backboneJS from ruby on rails
- Include Highcharts in open-source project
- Highcharts - add custom information to tooltip what caused price raise or price drop
- how to get highchart data from external json
- set all div in html without vertical scrollbar
- Text overflow issue with highcharts
- Highcharts add tooltip that has a small arrow pointing toward the series
- HighCharts change default x-values spacing to 0.5
- How to set the highcharts interactive with select option
- Highcharts error #17 when adding series to the chart using angular 4
- How to display tooltips or legends on plotBands?