score:2
Accepted answer
certainly you can
setinterval(function () {
var point = chart.series[0].points[0],
newval,
inc = 0;
$.get('squaking', function (data) {
newval = point.y + data.inc;
if (newval < 0 || newval > 20) {
newval = point.y - data.inc;
}
point.update(newval);
});
}, 3000);
i'm assuming here that "squaking" is a server side function that returns a json result containing a value for inc. once the data is returned, the chart is then updated.
Source: stackoverflow.com
Related Query
- Highcharts speedometer gauge change label
- Strange character in the Highstock source code
- Gauge Speedometer
- The needle in highcharts speedometer gauge is very slow to react to changes in the speed value in an animation is there a way to make it more dynamic?
- Highcharts Solid Gauge Width
- Plot Highchart Gauge with JSON Data
- Optimize JavaScript DrillDown code
- getting error#17 from highcharts while using solid gauge from backbone rails
- HIghcharts 4 solid gauge max value
- how to make specific labels outside gauge chart
- Replacing highcharts.each in my code as it is being deprecated
- Highcharts Gauge
- Dynamically update gauge on highcharts
- Not rendering VU-meter Gauge chart using HighCharts in Durandal
- Highcharts - Color coded legend for solid gauge
- Highcharts Gauge misplaced labels
- How to get Highchart Gauge to work in Sencha Touch 2
- Display the sum of track values in activity gauge inner radius while rendering
- Highcharts gauge not rendering text
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Code works on fiddle but not when I do /show
- Highcharts Gauge Spacing
- How do I use an Highcharts Solid Gauge in angular 6 with typescript?
- Highcharts - Global configuration with common code and unique data & Headings
- Show more data on Gauge chart with Highcharts
- Show some specefic number on gauge highcharts axis labels
- JavaScript code inside TypeScript file .ts not working
- Highcharts Solid Gauge with min number NOT zero
- How to center an image in a gauge
- How do I change speedometer caption style changes in highcharts
More Query from same tag
- highcharts scatter 1 second update with user defined lables on x-axis for each point
- Populate JSON object to highchart bar chart
- How to set highchart legend style?
- Highstock chart not rendering data completely on first load
- Highcharts stock chart Unix date format
- How to format Highcharts to get specific json data?
- How to make histogram from already aggregated data?
- X-Axis date fromatting in highcharts
- Why is this Highcharts xAxis actual max greater than the xAxis.max I have set?
- Adding a pattern fill to a black and white column graph in Highcharter
- Highstock Change tick interval on range selector change
- Cannot Run HighChart GWT Demo Example - Area Range
- highcharts symbols without connected lines
- HighCharts.js: How to Create a Boxplot with stems representing confidence intervals, NOT max/min?
- Highcharts - how to set custom content in point tooltip (popup) on 3D scatter chart or how to customize point tooltip information?
- Highcharts pie graph with two rings filtering
- Highcharts yAxis plotlines not showing on 'line' chart type
- How to add class name for each columns of highcharts?
- How to reduce the area around a highcart?
- Initialize Highcharts treemap at specific drilldown level
- how to get dynamic color change based on values in highcharts
- dynamic plotbands in Highcharts
- How to enable/disable sections in Pie chart in Highcharts
- Highcharts x-range series: difficulty removing numerical labels on y-axis
- MySQL date shown as year in Highstock
- highcharts: Object doesn't support this property or method IE8
- Map for Highmaps with England, Wales and Scotland etc
- redraw method is not refreshing polar chart
- Highcharts - Get container ID from barclick
- Highcharts/HighcharteR Tooltip: access all y-values within a series, print the difference