Add Flag based on button event
问题 series: [{ type: 'flags', name: 'Flags on axis', data: [{ x: Date.UTC(2011, 2, 1), title: 'A' }, { x: Date.UTC(2011, 5, 1), title: 'C' }], shape: 'squarepin' }] $("#btnAddFlag").click(function () { chart.series[0].setData( { x: Date.UTC(2011, 2, 1), title: 'B' }); }); Above code is part of highstock chart option and I want to add flag based on user event click. However I able to add the new point flag into the chart but the existing flags which title A and C will be missed out. how can I add