I am wondering how data is defined to create a Highstock graph.
Here is the jsfiddle: http://jsfiddle.net/gh/get/jquery/1.6/highslide-software/highcharts.com/tree/master/samples/stock/demo/compare/
How to define data as [4, 5, 6] and startpoint?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The data in the example you linked is defined as an array consisting of
[<timestamp>, <value>], (inlined in this example):But you can use
pointStartandpointIntervalto specify the data as well but that will only work if all data points have equal distance between each other (example).