score:2
Accepted answer
Look at the the series.addPoint method.
Your updateChart
function becomes:
function updateChart()
{
for (var source = 1; source <=3; source++)
{
var point = [
23,
Math.floor((Math.random() * 10*source) + 5+source*2),
source
];
Highcharts.charts[0].series[0].addPoint(point, false, true); // add the point, don't redraw and shift off a point
}
Highcharts.charts[0].redraw(); // 3 points added, now redraw
}
Update fiddle.
Source: stackoverflow.com
Related Articles
- Update HighCharts chart when AJAX Updates my data on my page
- Highcharts: update chart when data actualized
- Highcharts cloud issue with data source when duplicating chart
- Using Highcharts and displaying a message over or on the chart when there is no data
- Update Chart Colors When Using Styled HighCharts Version
- Highcharts display label for pie chart using html table as data source
- Highcharts not displaying data but drawing chart when reading from CSV file
- HighCharts : Update a point when grouping data
- How to update chart only on unique data in HighCharts
- Update chart title when drilling up and down in highcharts
- How to pass JSON data to update Highcharts Pie chart
- Highcharts chart update function causes missing data point
- Highcharts - Sankey chart not displaying all the data when series font increased
- Animate Highcharts series when chart appears in view when using Data Module
- When I automatically update a HighCharts chart every minute, the CPU gradually overloads, and the browser locks up
- HighCharts - When I download csv, can I switch data source to new one?
- Reload chart data via JSON with Highcharts
- Highcharts => Getting the id of a point when clicking on a line chart
- Highcharts saying undefined is not a function when trying to add a new chart
- Highcharts not displaying data labels for Pie chart in arabic
- Dynamically update Highcharts chart in react
- Highcharts stacked bar chart hide data labels not to overlap
- highcharts organization chart is throwing error when loading module
- Highcharts drilldown - when useing setData chart doesn't stay drilled down
- Ajax and Highcharts - Display 'loading' until data is retrieved, then populate chart
- Add dynamic data to line chart from mysql database with highcharts
- How get data name in Highcharts pie chart legend instead of "Slice" using array of values?
- angular2-highcharts: update rendered chart data
- Show HighCharts tooltip when chart loads
- Highcharts - Global configuration with common code and unique data & Headings
- highcharts positioner tooltip - general javascript
- highmap Data point click event breaks after zoom on a mobile (touch screen)
- Highstock- show full data sets on x axis
- how do you create muliple charts with the same options but with different data
- 31 days on the highcharts x-axis
- Javascript Highcharts v3.0.5 - How to hide Y Axis Title when using multiple Y Axis
- Highchart with label in custom intervals
- Highcharts: how to change line color when hovering a scatterplot series
- HighCharts.js: How to Create a Boxplot with stems representing confidence intervals, NOT max/min?
- Append the data values in Highcharts
- Django - 'SafeText' object has no attribute 'get'
- Removing/Hiding Null label from x-axis of Chart
- First tick on min and last tick on max
- Angular High Chart - Loading data from Observable
- How to remove the grid line overlappings in highcharts?
- Include export csv in highcharter
- how to set exporting default as disable
- Highchart doesn't dispaly a datarange even if there is data
- xAxis Image Disappears in Highcharts After First Refresh
- Toggle Show/Hide on Highcharts custom export button