Highstock/Highchart cannot set Individual Point color

前端 未结 2 1486
情书的邮戳
情书的邮戳 2020-12-19 06:42

I am working on Highstock, I am trying to set a color to a specific point in "data" in Highstock, like in the example, but I couldn\'t get it to work, no matter ho

2条回答
  •  一个人的身影
    2020-12-19 06:48

    Highstock has point markers disabled by default. You will need to enable them explicitly as follows:

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

    See more at http://api.highcharts.com/highstock/plotOptions.series.marker

提交回复
热议问题