anychart.onDocumentReady(function () {
var chart = anychart.bar();
chart.title().text("Bar Chart With A Point View Defined From Data Set");
chart.xAxis().title().text("Retail Channel");
chart.yAxis().title().text("Sales");
["Discount Stores", 721630],
{x: "Department Stores", value: 737166, fill:{color: "red", opacity: ".7"}, hatchFill:{hatchType:"diagonal-brick",color: "gray"}, marker:{type:"star5", fill:"gold", size: 12, enabled: true}, hoverMarker: {size: 22}},
["Juvenile Specialty Stores", 78662],
["All other outlets", 90000]
chart.container("container").draw();