| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <mx:Application backgroundColor="0xFFFFFF" height="375" width="500" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:Components="Components.*"> |
| |
| <mx:Script><![CDATA[ |
| |
| import mx.collections.*; |
| |
| public var al:ArrayList = new ArrayList(); |
| public var lcv:ListCollectionView = new ListCollectionView(); |
| |
| <!-- Charts are in the Data Vis. team. |
| [Bindable] public var stockDataAC:ArrayCollection = new ArrayCollection( [ |
| { Date: "Values", Open: 40.55, High: 40.75, Low: 40.24, Close:40.31}, |
| { Date: "Values", Open: 40.55, High: 40.75, Low: 40.24, Close:40.31} ]); |
| --> |
| |
| ]]></mx:Script> |
| |
| <!-- Charts are in the Data Vis. team. |
| <mx:HLOCChart width="70" height="70" showDataTips="true" dataProvider="{stockDataAC}" id="hlocChart"> |
| <mx:verticalAxis> |
| <mx:LinearAxis baseAtZero="false" /> |
| </mx:verticalAxis> |
| |
| <mx:series> |
| <mx:HLOCSeries openField="Open" highField="High" lowField="Low" closeField="Close"/> |
| </mx:series> |
| </mx:HLOCChart> |
| --> |
| <mx:Array /> |
| <mx:HSlider id="hs" /> |
| <mx:CreditCardValidator id="ccv" /> |
| <mx:CurrencyFormatter id="cf" /> |
| <mx:CurrencyValidator id="cv" /> |
| <mx:DateChooser id="dc" /> |
| <mx:DateField id="df" /> |
| <mx:DateFormatter id="dfo" /> |
| <mx:DateValidator id="dv" /> |
| <mx:EmailValidator id="ev" /> |
| <Components:CLabel id="lbl" /> |
| <mx:NumberFormatter id="nf" /> |
| <mx:NumberValidator id="nv" /> |
| <mx:PhoneNumberValidator id="pnv" /> |
| <mx:PhoneFormatter id="pf" /> |
| <mx:ProgressBar id="pb" /> |
| <mx:RegExpValidator id="rev" /> |
| <mx:SocialSecurityValidator id="ssv"/> |
| <mx:StringValidator id="sv" /> |
| <mx:Validator id="v" /> |
| <mx:ZipCodeFormatter id="zcf" /> |
| <mx:ZipCodeValidator id="zcv" /> |
| |
| </mx:Application> |