Home Forums Chart Support scatter datapoint color markerColor … all failed

scatter datapoint color markerColor … all failed

Viewing 3 posts - 1 through 3 (of 3 total)
  • #28432

    I created a scatter chart with all blue color.

    I want to change color of single data-point by click event for highlight the selection.

    However, the color and any other settings only affect on highlight mode when mouseover.

    Is it a bug or I have made any mistake.

    For example: (I borrowed the jsfiddle code from other and modified to show my problem)

    var chart = new CanvasJS.Chart(“chartContainer”, {
    title:{
    text: “Click to Highlight the dataPoint”
    },
    data: [
    {
    type: “scatter”,
    click: highlightDataPoint,
    highlightEnabled: true,
    dataPoints: [
    { y: 4181563, indexLabel: “PlayStation 3” },
    { y: 2175498, indexLabel: “Wii” },
    { y: 3125844, indexLabel: “Xbox 360” },
    { y: 1176121, indexLabel: “Nintendo DS”},
    { y: 1727161, indexLabel: “PSP” },
    { y: 4303364, indexLabel: “Nintendo 3DS”},
    { y: 1717786, indexLabel: “PS Vita”}
    ]
    }
    ]
    });
    chart.render();

    function highlightDataPoint(e) {
    e.dataPoint.color = “blue”;
    e.dataPoint.markerColor = “red”;
    e.dataPoint.markerBorderColor = “red”;
    e.dataPoint.markerSize = 20;
    console.log(e.dataPoint);
    }

    #28433

    solved.

    My stupid.
    I forgot to re-render the chart.

    #28436

    @locnguyen,

    Glad that you figured it out :)

    —-
    Manoj Mohan
    Team CanvasJS

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.