Exactly what I wanted, Thanks.
Now I have another Question,
How can I do the same, if I have multi chart with data like this ?
data: [{
name: "Error",
type: "area",
legendMarkerType: "triangle",
axisYIndex: 0, //defaults to 0
color: "#B61919",
showInLegend: true,
dataPoints: obj
},{
name: "WARNING",
type: "line",
legendMarkerType: "circle",
axisYIndex: 1,
color: "#f6a603",
showInLegend: true,
dataPoints : obj2
},{
name: "SIGNAL",
type: "area",
legendMarkerType: "cross",
axisYIndex: 2,
markerSize: 0,
color: "purple",
showInLegend: true,
dataPoints : obj3
}
]