anychart.onDocumentReady(function () {
stage = anychart.graphics.create('container');
createChart(anychart.column, 0, 0, '100%', '50%', 'Column chart', 'column');
createChart(anychart.line, 0, '50%', '100%', '50%', 'Line chart', 'line');
function createChart(type, x, y, width, height, text, id) {
{x: 'September', value: 5},
chart.bounds(x, y, width, height);
function getChartById() {
var chartById = anychart.getChartById('line');
chartById.background('#7fff00 0.2');