Quick question, I've got a div being created in javascript:
var chartDiv = document.createElement("div");
this.viewElement.appendChild(chartDiv);
But I want to set a border style around this div after its created. Whats the best way to do this in the javascript? Thanks