Formatting grid lines with CSS : DataGrid « Grid « Flex






Formatting grid lines with CSS

Formatting grid lines with CSS
      
<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->
<!-- charts/GridLinesFormatCSS.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        import mx.collections.ArrayCollection;
        [Bindable]
        public var expenses:ArrayCollection = new ArrayCollection([
            {Month:"Jan", Profit:2000, Expenses:1500},
            {Month:"Feb", Profit:1000, Expenses:200},
            {Month:"Mar", Profit:1500, Expenses:500}
            ]);
      </mx:Script>
    <mx:Style>
        .myStyle { direction:"both"; horizontalShowOrigin:true;
        horizontalTickAligned:false; horizontalChangeCount:1;
        verticalShowOrigin:false; verticalTickAligned:true;
        verticalChangeCount:1; horizontalFill:#990033;
        horizontalAlternateFill:#00CCFF; }
    </mx:Style>
    <mx:Array id="bge">
        <mx:GridLines styleName="myStyle">
            <mx:horizontalStroke>
                <mx:Stroke weight="3" />
            </mx:horizontalStroke>
            <mx:verticalStroke>
                <mx:Stroke weight="3" />
            </mx:verticalStroke>
        </mx:GridLines>
    </mx:Array>
    <mx:Panel title="Column Chart">
        <mx:ColumnChart id="myChart" dataProvider="{expenses}"
            backgroundElements="{bge}">
            <mx:horizontalAxis>
                <mx:CategoryAxis dataProvider="{expenses}"
                    categoryField="Month" />
            </mx:horizontalAxis>
            <mx:series>
                <mx:ColumnSeries xField="Month" yField="Profit"
                    displayName="Profit" />
                <mx:ColumnSeries xField="Month" yField="Expenses"
                    displayName="Expenses" />
            </mx:series>
        </mx:ColumnChart>
        <mx:Legend dataProvider="{myChart}" />
    </mx:Panel>
</mx:Application>

   
    
    
    
    
    
  








Related examples in the same category

1.Scroll DataGridScroll DataGrid
2.Set selected index for DataGridSet selected index for DataGrid
3.Variable row heightsVariable row heights
4.Multi-line data grid rowMulti-line data grid row
5.variable scope for DataGridvariable scope for DataGrid
6.Creating inline item renderer and editorCreating inline item renderer and editor
7.Using a DataGridUsing a DataGrid
8.Set editing position for DataGridSet editing position for DataGrid
9.Append new value to DataGrid from Form fieldsAppend new value to DataGrid from Form fields
10.Item click event for DataGridItem click event for DataGrid
11.Editable DataGridEditable DataGrid
12.Variable row height DataGridVariable row height DataGrid
13.DataGrid change eventDataGrid change event
14.Use Panel to layout controls and hold DataGridUse Panel to layout controls and hold DataGrid
15.DataGrids take a dataProvider to populate themDataGrids take a dataProvider to populate them
16.Default setting for DataGridDefault setting for DataGrid
17.Call HTTP server and set result to DataGrid
18.Binding XML to DataGridBinding XML to DataGrid
19.DataGrid Configuration through ActionScriptDataGrid Configuration through ActionScript
20.DataGrid Validate NowDataGrid Validate Now
21.DataGrid Validate Now Selected indexDataGrid Validate Now Selected index
22.DataGrid with static string valuesDataGrid with static string values
23.DataGrid DataDataGrid Data
24.DataGrid EventsDataGrid Events
25.Sort a DataGridSort a DataGrid
26.Inline DataGrid Image ScopeInline DataGrid Image Scope
27.Print DataGrid outPrint DataGrid out
28.Enabling the user to move many items at onceEnabling the user to move many items at once
29.data provider contains fields for an artist, album name, and price.data provider contains fields for an artist, album name, and price.