Aggaton,
Sorry, this feature is not available as of now. But in coming days, we will be exposing chart properties using which you can solve this issue.
Rohan,
Sorry this feature is not available as of now. But with few lines of jQuery code you can achieve this. Please check this jsfiddle.
Sathya,
We have just released v1.9.5 Beta which supports Secondary X Axis and Multiple X / Y Axis. Please refer to the release blog for more information.
Alex,
We have just released v1.9.5 Beta which supports Secondary X Axis and Multiple X / Y Axis. Please refer to the release blog for more information.
[Update]
Hi,
We have just released v1.9.5 Beta which supports Secondary X Axis and Multiple X / Y Axis. Please refer to the release blog for more information.

—
Vishwas R
B. Jansen,
Thanks for reporting. We have fixed the issue and releasing in couple of days.
—
Vishwas R
Akshada,
Sorry, as of now its not possible to access plotArea through css or to make plotArea cover the whole canvas. But giving user control over the padding to the entire chart/canvas is in our roadmap.
For security reasons, browsers restrict cross-origin requests. Please refer stackOverflow for more information.
Jansen,
Please refer to yValueFormatString documentation.
—
Vishwas R
Team CanvasJS
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
Jason C,
We are unable to reproduce the issue. Can you please create a jsfiddle with the issue, so that we can look into it and help you out.