Dimas,
Yes its possible to set color at dataPoint level. In your case, you can set the color at datapoint level while parsing the JSON data. Please find the code-snippet for the same below.
for (var i = 0; i <= data.length - 1; i++) {
var color = null;
if (data[i].status != 1)
color = "red";
dataPoints.push({
label: data[i].region,
y: parseInt(data[i].status),
color: color
});
}
Please check this JSFiddle for working code.
—
Vishwas R
Team CanvasJS