anychart.onDocumentReady(function () {
var chart = anychart.pareto([
{x: "Defect 1", value: 19},
{x: "Defect 2", value: 9},
{x: "Defect 3", value: 28},
{x: "Defect 4", value: 87},
{x: "Defect 5", value: 14},
chart.title("Pareto Chart: Basic Sample");
chart.container("container");