Yes, you can define own colors, even conditionally with dataPointStyle rules:
var oRule = function (oContext) { //your rule which has to return true to apply the color } oVizFrame.setVizProperties({ plotArea : { dataPointStyle : { rules : [ { callback : oRule, properties : { color : "red" }, displayName : "customName" } ] } } }); } });
Hope this helps.