<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:SMO="SMO.*" viewSourceURL="srcview/index.html">
    
    <mx:Panel layout="vertical">
        <SMO:Graph width="200" height="200" id="graph"/>
        <mx:HBox>
            <mx:ToggleButtonBar id="tbb" itemClick="{graph.blueSelected = tbb.selectedIndex==0}">
                <mx:dataProvider>
                    <mx:String></mx:String>
                    <mx:String></mx:String>
                </mx:dataProvider>
            </mx:ToggleButtonBar>
            <mx:Button label="学習!!" click="{graph.exec()}" />
            <mx:Button label="クリア" click="{graph.clear()}" />
        </mx:HBox>
    </mx:Panel>
</mx:Application>