Use solid color to fill an Ellipse : Ellipse « Graphics « Flex






Use solid color to fill an Ellipse

Use solid color to fill an Ellipse
          

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:s="library://ns.adobe.com/flex/spark">

    <s:Group id="group">
        
        <s:layout>
            <s:TileLayout orientation="columns" />
        </s:layout>
        
        <s:Rect width="100" height="100">
            <s:fill>
                <mx:SolidColor color="#DDDDDD" />
            </s:fill>
        </s:Rect>
        <s:Ellipse>
            <s:fill>
                <mx:SolidColor color="#FF5500" />
            </s:fill>
        </s:Ellipse>
        
    </s:Group>
    
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Display Bitmap Data in a Graphic ElementDisplay Bitmap Data in a Graphic Element
2.Mask clip a shape in MXMLMask clip a shape in MXML