anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var dataSet = anychart.data.set([
["Department Stores", 637166, 254463, 353554, 856175],
["Discount Stores", 721630, 366655, 734634, 365654],
["Men's/Women's Specialty Stores", 148662, 252522, 123488, 903112],
["All other outlets", 90000, 61000, 72000, 94000, 83000]
anychart.theme([barTheme, columnTheme, splineTheme]);
barChart = anychart.bar();
columnChart = anychart.column();
splineChart = anychart.line();
seriesData_1 = dataSet.mapAs({x: 0, value: 1});
seriesData_2 = dataSet.mapAs({x: 0, value: 2});
seriesData_3 = dataSet.mapAs({x: 0, value: 3});
seriesData_4 = dataSet.mapAs({x: 0, value: 4});
seriesBar = barChart.bar(seriesData_1);
seriesBar.fill("#cac4b0");
columnChart.column(seriesData_1);
columnChart.column(seriesData_3);
splineChart.spline(seriesData_1);
splineChart.spline(seriesData_2);
splineChart.spline(seriesData_3);
splineChart.spline(seriesData_4);
barChart.container(stage);
columnChart.container(stage);
splineChart.container(stage);
"defaultXAxisSettings": {
"title": "Retail Channel"
"defaultYAxisSettings": {
"bounds": [0, 0, '50%', '50%']
"defaultXAxisSettings": {
"title": "Retail Channel"
"defaultYAxisSettings": {
"background":"#999999 .1",
"items": ["#9f8170", "#828282"]
"bounds": ['50%', 0, '50%', '50%']
"text": "Bar and Column Charts",
"displayMode": "separated"
"defaultXAxisSettings": {
"title": "Retail Channel"
"defaultYAxisSettings": {
"items": ["#9f8170", "#000", "#911e42", "#21421e"]
"bounds": [0, '50%', '100%', '50%']
"text": "Bar, Column and Spline Charts",