Question

I am using Highstock to draw graph on my website. It is working fine. But when only single data is present I have to hover over to see the graph data. Please help me to find a solution for this.

Was it helpful?

Solution

you can use markers:

plotOptions: {
    series: {
        marker: {
            enabled: true
        }
    }
},

DEMO

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top