HI, is this what you are looking for...
<?xml version="1.0"?> <!-- formatters\FormatterDateField.mxml --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <!-- Declare a DateFormatter and define formatting parameters.--> <mx:DateFormatter id="dateFormatter" formatString="month: MM, day: DD, year: YYYY"/> <mx:Label text="Enter date (mm/dd/yyyy):"/> <mx:TextInput id="dob" text=""/> <mx:Label text="Formatted date: "/> <mx:TextInput id="formattedDate" text="" editable="false"/> <!-- Format and update the date.--> <mx:Button label="Format Input" click="formattedDate.text=dateFormatter.format(dob.text);"/> </mx:Application> On Fri, May 15, 2009 at 10:11 AM, Vinoth <[email protected]> wrote: > > I have a requirement that i need to display the Date/Time format as MM/ > DD/YY :HH along the horizontal axis. I have Data function and label > function. I'm not sure how to display this formatted date. > > I tried using DateTimeAxis it doesnt work well. Any suggestions or > examples on how to do this would be appreciated. > > Thanks in advance ! > > > > -- Regards Rahul --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

