It also has step by step description of delegate creation for the RandomWalk component created by Ely.
Hope it helps!
When FlexBuilder Pro version is bought and a valid licensce key is entered the source code for the complete datavisulation.swc would get unzipped and get placed under
<FlexBuilder installation direcotry>sdk/3.0.0/fbpro/...
directory. Which means users would get access to AdvancedDataGrid, Charts and OLAP source code.
It is not open-source but source is available for you to take a look and override functions with more confidence and knowledge of the internal workings. And of-course suggest/complain !
Enjoy !
Here is OLAPTimeDimension to the rescue. It can be introduced as any other dimension in the OLAPCube schema and then configured to return year, half year, quarter, month and day in any combination.
<mx:OLAPCube id="salesCube" > <mx:OLAPDimension name="SalesData" > <mx:OLAPAttribute name="Company" dataField="company" /> <mx:OLAPAttribute name="Region" dataField="region" /> <mx:OLAPAttribute name="Market" dataField="market" /> <mx:OLAPAttribute name="Product" dataField="product" /> <mx:OLAPHierarchy name="Region-Market-Store" > <mx:OLAPLevel attributeName="Company" /> <mx:OLAPLevel attributeName="Region" /> <mx:OLAPLevel attributeName="Market" /> <mx:OLAPLevel attributeName="Product" /> </mx:OLAPHierarchy> </mx:OLAPDimension> <local:OLAPTimeDimension name="Years" dataField="date" /> <mx:OLAPMeasure name="Revenue" dataField="revenue" /> </mx:OLAPCube>
Using this we get the following result where in we can query revenue for different years.
It can be easily extended to query quarters and months by setting includeQuarter and includeMonth to true on OLAPTimeDimension. The source is here.
The sample shows how a companys product revenue over regions and markets can be compared. Click the "Create cube" button to process the input data which looks like this
<row> <company>Fiction</company> <region>Asia</region> <market>Digital publishing</market> <product>Frames</product> <date>3/31/2005</date> <revenue>10</revenue> </row>
and build the OLAP cube. Clicking on the "Query Revenue with Product by Region" button would display the result in OLAPDataGrid. The query returns the total revenue comparing product by region across all years (2005 and 2006 in the sample data case). The last row and last column display the totals by product and totals by region respectively.
Now different markets can be selected from the ComboBox and revenues from different markets can be compared.
The source can be found here.
private var salesCube:OLAPCube; private function createCube():void { salesCube = new OLAPCube(); var dim1:OLAPDimension = new OLAPDimension("SalesData"); //add attributes to the dimension var attr1:OLAPAttribute = new OLAPAttribute("Region"); attr1.dataField = "region"; var attr2:OLAPAttribute = new OLAPAttribute("Market"); attr2.dataField = "market"; var attr3:OLAPAttribute = new OLAPAttribute("Store"); attr3.dataField = "store"; var attr4:OLAPAttribute = new OLAPAttribute("LineOfBusiness"); attr4.dataField = "line_of_business"; var attr5:OLAPAttribute = new OLAPAttribute("Model"); attr5.dataField = "model"; dim1.attributes = new ArrayCollection([ attr1, attr2, attr3, attr4, attr5 ]); //add a user defined hierarchy var regionHierarchy:OLAPHierarchy = new OLAPHierarchy("Region-Market-Store"); //define the levels of the hierarchy var level1:OLAPLevel = new OLAPLevel(); level1.attributeName = "Region" ; var level2:OLAPLevel = new OLAPLevel(); level2.attributeName = "Market" ; var level3:OLAPLevel = new OLAPLevel(); level3.attributeName = "Store" ; var level4:OLAPLevel = new OLAPLevel(); level4.attributeName = "LineOfBusiness" ; var level5:OLAPLevel = new OLAPLevel(); level5.attributeName = "Model" ; //add levels to the hierarchy regionHierarchy.levels = new ArrayCollection([ level1, level2, level3, level4, level5 ]); //add hierarchy to the dim dim1.hierarchies = new ArrayCollection([ regionHierarchy ]); //more dimensions can be defined here var measure:OLAPMeasure = new OLAPMeasure("Revenue"); measure.dataField = "revenue" ; //more measures can be defined here //add the dimensions and measures to the cube. salesCube.elements = [ dim1, measure ]; }This creates the same OLAPCube as the following in MXML
<mx:OLAPCube id="salesCube" > <mx:OLAPDimension name="SalesData" > <mx:OLAPAttribute name="Region" dataField="region" /> <mx:OLAPAttribute name="Market" dataField="market" /> <mx:OLAPAttribute name="Store" dataField="store" /> <mx:OLAPAttribute name="LineOfBusiness" dataField="line_of_business" /> <mx:OLAPAttribute name="Model" dataField="model" /> <mx:OLAPHierarchy name="Region-Market-Store" > <mx:OLAPLevel attributeName="Region" /> <mx:OLAPLevel attributeName="Market" /> <mx:OLAPLevel attributeName="Store" /> <mx:OLAPLevel attributeName="LineOfBusiness" /> <mx:OLAPLevel attributeName="Model" /> </mx:OLAPHierarchy> </mx:OLAPDimension> <mx:OLAPMeasure name="Revenue" dataField="revenue" /> </mx:OLAPCube>
I took a look at DateChooser and CalendarLayout and realized that with the current design/implmentation it was not possible to add the backgroundColor support. The selection and rollOver indicators were lower in z order than date UITextFields.
I modified the CalenderLayout code to have three layers (UIComponents). One for background, second for indicators and third one for the dates. After modifying the addChild* and removeChild calls refer to the appropriate layers, the remaining work was to add "speicalDates" and "specialDatesColor" property and wire them up at appropirate places (commitProperties and updateDisplayList) to achive the following result :
I have randomnly generated the special dates in the above sample to keep the sample live on any day it is viewed!
I have added a alpha value of 0.7 in DateChooserIndicator to make the selection indicator show through the backgroundColor. Feel free to tweak this value to your flavor.
The project source to build the Flex3Ex.swc is here. It contains the modified DateChooser and CalendarLayout classes. I posted the complete Flex project here because Travis pointed out that it is difficult for newbies to understand how to use the component source files. Thanks Travis!
The source for the sample app is here.
The components can be further enhanced to support multiple specialDates (array of array of dates) and multiple specialDatesColors.
Update: I got to implement this. Source is available here.
Update: I have updated the source to support the following:
Now dates can be specified as strings "06/01/2009" (for 1st June 2009) but make sure that it succeeds to pass through Date.parse function and returns a valid Date.
Date ranges can be specified as follows:
{ rangeStart:"06/01/2009", rangeEnd:"06/05/2009" }
Update: There seems to be some problem with library path handling etc due to which a swc is not getting picked up properly in FB. The work around I came up for this is to include the Flex3Ex/src directory in the source path of the project as shown here