<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:ofc="*" width="100%" height="100%">
<mx:Script>
<![CDATA[
[Bindable]
private var dataJSON:String='{ "elements": [ { "type": "bar","alpha":0.8,"colour":"#663366", "values": [ 9.5, 9, 8.5,8, 7.5, 7, 6.5, 6, 5.5,5, 4.5, 4, 3.5, 3, 2.5, 2, 1.5, 1 ] } ], "title": { "text": "Wed May 20 2009" },"bg_colour":"#fcfcfc" }';
]]>
</mx:Script>
<mx:Panel id="chartContainer" title="Flex Chart" width="100%" height="100%">
<ofc:Chart id="myChart" width="900" height="600" loadingString="Loading…" chartData="{dataJSON}"/>
</mx:Panel>
</mx:Application>