Unable to set color of individual dots in Series for Highstock API, it works for Highchart API

I'm working on Highstock, I'm trying to set the color to a specific point in the "data" in Highstock, as in the example, its using the Highchart API, but I could not get it to work with the Highstock API, no matter how I set the color, it displayed on the chart.

Can anybody help? Here is what I have tried so far

+1
source share
1 answer

Highstock has markers disabled by default, you will need to explicitly indicate them as follows:

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

API: http://api.highcharts.com/highstock#point.marker.enabled
: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/

jsFiddle : http://jsfiddle.net/jugal/nrRDg/

+3

All Articles