最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Changing the color of the point dynamically in highcharts - Stack Overflow

programmeradmin3浏览0评论

I have been able to change the color of point in a graph dynamically, but when I hover over that point then the color of that point is changing to previous color.

I have a fiddle here: jfiddle

$(function () {
var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
    }]
});

// the button handler
$('#button').click(function() {

    chart.series[0].data[2].graphic.attr({ fill: '#FF0000' });        
    chart.redraw();
});

How can I change the color of the point dynamically in a graph?

I have been able to change the color of point in a graph dynamically, but when I hover over that point then the color of that point is changing to previous color.

I have a fiddle here: jfiddle

$(function () {
var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
    }]
});

// the button handler
$('#button').click(function() {

    chart.series[0].data[2].graphic.attr({ fill: '#FF0000' });        
    chart.redraw();
});

How can I change the color of the point dynamically in a graph?

Share Improve this question edited Apr 29, 2013 at 19:34 Sandeep asked Apr 29, 2013 at 19:26 SandeepSandeep 3,6765 gold badges20 silver badges22 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

I think you are looking to update the marker color dynamically.

you can use update functionality for this

chart.series[0].data[0].update();

Here is a jsFiddle for your reference. I hope this will be useful for you.

is this what you are looking for?

http://jsfiddle/gh/get/jquery/1.7.1/highslide-software/highcharts./tree/master/samples/highcharts/plotoptions/series-marker-states-select-fillcolor/

plotOptions: {
    series: {
        allowPointSelect: true,
        marker: {
            states: {
                select: {
                    fillColor: 'red',
                    lineWidth: 0
                }
            }
        }
    }
}
发布评论

评论列表(0)

  1. 暂无评论