Treemaps take advantage of the human brain’s ability, called preattentive processing, to analyze very complex visual information in a very short time and to distinguish different graphical properties such as colors, sizes, directions.
Treemaps provide compact visual display of large hierarchical collections of quantitative data. The hierarchical structure is revealed by the nesting level and location of each rectangle. Convenient drill-down capabilities are used to navigate through the hierarchy. The area and color of each rectangle represent any other quantitative properties. Continue reading ‘Flex TreeMap’
Archive for the 'Flex Components' Category
Flex TreeMap
Learn Flex® in India
Flex 3.0 : Level 1 and Level 2
Duration: 40 Hrs.
Flex 3.0: Developing Rich Client Applications – Level 1
Description:
Flex 3: Developing Rich Internet Client Application provides experienced application developers with hands-on, practical experience using Flex. This three day course introduces developers to all the primary features of Flex they’ll need to know in orbuild a fully functional, well architected front end for a Rich Internet Application (RIA). Continue reading ‘Learn Flex® in India’
Free Flex components
Data visualization and diagramming Download free AS3 components
Adobe - Flex Components
RIAs with Adobe Flex 3.0
Create engaging, cross-platform rich Internet applications
Flex is a highly productive, free open source framework for building and maintaining expressive web applications that deploy consistently on all major browsers, desktops, and operating systems. While Flex applications can be built using only the free open source framework, developers can use Adobe® Flex® Builder™ software to dramatically accelerate development.
When developing applications with the DataGrid component, you may want to use a custom font so the data grid fits with your overall design. YOu change fonts by setting a custom text format using a TextFormat object, and the setStyle() or setRendererStyle() methods. If you want to set the text format for a DataGrid component’s header, use the setStyle() method along with the headerTextFormat style. If you want to set the text format for each row in the DataGrid component, use the setRendererStyle() method along with the textFormat style.
Example
import fl.controls.DataGrid; import fl.controls.dataGridClasses.DataGridColumn; import fl.data.DataProvider; var comicTextFormat:TextFormat = new TextFormat(); comicTextFormat.font = "Comic Sans MS"; var comicBoldTextFormat:TextFormat = new TextFormat(comicTextFormat.font); comicBoldTextFormat.bold = true; var dp:DataProvider = new DataProvider(); dp.addItem({columnA:"Row 1A", columnB:"Row 1B"}); dp.addItem({columnA:"Row 2A", columnB:"Row 2B"}); dp.addItem({columnA:"Row 3A", columnB:"Row 3B"}); var colA:DataGridColumn = new DataGridColumn("columnA"); colA.headerText = "Column A:"; var colB:DataGridColumn = new DataGridColumn("columnB"); colB.headerText = "Column B:"; var myDataGrid:DataGrid = new DataGrid(); myDataGrid.setStyle("headerTextFormat", comicBoldTextFormat); myDataGrid.setRendererStyle("textFormat", comicTextFormat); myDataGrid.addColumn(colA); myDataGrid.addColumn(colB); myDataGrid.dataProvider = dp; myDataGrid.width = 200; myDataGrid.rowCount = myDataGrid.length; myDataGrid.move(10, 10); addChild(myDataGrid);
Result
To download the source files for this example, click here.


