상세 컨텐츠

본문 제목

columnChart GridLines Style

FLEX

by 코드공작소 2010. 2. 1. 19:26

본문

반응형

<fx:Declarations>
        <!-- Background element array. -->
        <fx:Array id="bge">
            <mx:GridLines styleName="myStyle">
                <mx:horizontalStroke>
                    <mx:SolidColorStroke weight="3"/>
                </mx:horizontalStroke>
                <mx:verticalStroke>
                    <mx:SolidColorStroke weight="3"/>
                </mx:verticalStroke>
            </mx:GridLines>
        </fx:Array>
    </fx:Declarations>

  <fx:Style>
     .myStyle {
        gridDirection:"both";
        horizontalShowOrigin:true;
        horizontalTickAligned:false;
        horizontalChangeCount:1;
        verticalShowOrigin:false;
        verticalTickAligned:true;
        verticalChangeCount:1;
        horizontalFill:#990033;
        horizontalAlternateFill:#00CCFF;     
     } 
  </fx:Style>
반응형

'FLEX' 카테고리의 다른 글

[Flex4] spark Label Tip  (0) 2010.02.16
[Flex4] autoDrawBackground="false"  (0) 2010.02.10
[Flex4]mx컴포넌트에 font Embed  (0) 2010.01.28
[Flex4]FlairSkin  (0) 2010.01.28
[Flex4] CSS Advanced Selectors  (0) 2010.01.28

관련글 더보기