Creating a chart that displays a static dataset is relatively simple. For example, if we have this array of objects as the data:
var data = [
    {title: "A", value: 53},
    {title: "B", value: 12},
    {title: "C", value: 91},
    {title: "D", value: 24...