<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function() {
var chart = anychart.column([10, 1, 7, 10]);
// put your license key here and uncomment the next line
// anychart.licenseKey("COPY-PASTE-YOUR-LICENSE-KEY");
var credits = chart.credits();
// credits are enabled by default. The only exception is our playground site. You can remove next line in production.
credits.enabled(true);
// new text for credits
credits.text("Company");
// draw
chart.container("container");
chart.draw();
});