score:2

Accepted answer

"can anyone tell me how to get all the values of a line series in a highchart line plot(http://www.highcharts.com/demo/) through javascript?" you can get it from global object.

see example: http://jsfiddle.net/yr3eg/

$.each(chart.series,function(i,serie){

            $.each(serie.data,function(j,point){
                console.log(point.y);
            });

        });

"also, how to get tooltip value of a point of a scatter plot through javascript?" you need to get values of point in tooltip or somewhere different?


Related Query

More Query from same tag