<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:MyComp="*" width="100%" height="100%" backgroundColor="#ECECEC" viewSourceURL="srcview/index.html">
<mx:Script>
<![CDATA[
[Bindable]
public var actualPercentage:Number = 65.21;
[Bindable]
public var lowGoalPercentage:Number = 58;
[Bindable]
public var highGoalPercentage:Number = 71;
]]>
</mx:Script>
<mx:HBox width="270" height="30" x="100" y="100">
<MyComp:ButtonGraph actualPercentage="{actualPercentage}" lowGoalPercentage="{lowGoalPercentage}" highGoalPercentage="{highGoalPercentage}" />
<mx:Label text="{actualPercentage}%" x="200"/>
</mx:HBox>
</mx:Application>