I know how to show marker at last point like this.
When the data is dynamic, don't know how to mark the last point.
plotOptions: {
column: {
stacking: 'normal'
},
spline: {
marker: {
enabled: true
}
}
}
When you are adding new points dynamically you can simultaneously remove the marker from the current last point (
Point.update
), while adding a new point with marker enabled (Series.addPoint
).For example (JSFiddle):
The
false
parameter for thePoint.update
is to prevent redrawing, as you are going to redraw after theSeries.addPoint
anyway, which should save some processing.