How can I add a background color to a layer in kineticjs? I want to have multiple layers which have different background colors.
Something like:
var layer = new Kinetic.Layer({
x: 0,
y: 0,
width : that.locationData.getCreativeLeftLoc(),
height : that.locationData.getCreativeTopLoc(),
background-color : 'black'
});