Packagekor.elements
Classpublic class RadarGridLines

RadarGridLines 클래스는 레이더 차트의 배경에 그리드 라인을 그리는 역할을 합니다. 기본적으로 레이더의 중심에서 angularAxis 까지 일직선으로 그리는 radial 선과 radialAxis 라벨 간격을 서로 잇는 angular 선을 그립니다. 선 속성은 radial, angular, both 형태가 있습니다. 이 클래스를 사용하기 위해서는 RadarChart 의 backgroundElements property 에 이 클래스의 인스턴스를 할당하십시오.

<RadarGridLines> 는 기본적으로 parent classes 의 모든 properties 를 상속받으며 아래의 properties 를 추가로 갖습니다.

 <rMateChart backgroundColor="0xFFFFFF" cornerRadius="12" borderStyle="solid">
 ...
 <RadarChart id="chart1" isSeriesOnAxis="true" type="polygon" paddingTop="20" paddingBottom="20" showDataTips="true">
  ...
  <backgroundElements>
   <RadarGridLines direction='both' radarChangeCount='1' radarFill='0xEFFFFF' radarAlternateFill='0xFFFFFC'> <!--radarFill 과 radarAlternateFill 색이 차례로 나옵니다.-->
     <radialStroke> <!-- radial 선 정의 -->
     <Stroke color='0x000000' alpha='1' weight='1'/>
    </radialStroke>
     <angularStroke> <!-- angular 선 정의 -->
     <Stroke color='0xFF0000' alpha='1' weight='1'/>
    </angularStroke>
    </RadarGridLines>
  </backgroundElements>
 ...
 </RadarChart>
 </rMateChart>
  



Styles
 StyleDescriptionDefined by
  
angularStroke
Type: mx.graphics.IStroke
레이더 배경의 angular 선 형태를 결정합니다.
RadarGridLines
  
gridLines
Type: String
레이더 차트의 배경에 표시할 선 형태를 결정합니다. radial 은 중심에서 AngularAxis 축까지의 직선형태를 그립니다. angular 는 축 라벨들을 서로 잇는 선을 그립니다. 레이더 차트 type 이 circle 인 경우 원형태로 그리고 polygon 인 경우 다각형 형태로 그립니다. The default value is both.
RadarGridLines
  
radarAlternateFill
Type: mx.graphics.IFill
레이더 차트 배경의 채우기 색의 상대 색을 결정합니다. The default value is 0xFCFCFC.
RadarGridLines
  
radarChangeCount
Type: Number
radarFill 과 radarAlternateFill 간의 차이를 결정합니다. 이 차이 간격은 radialAxis의 tick interval 과 관련이 있습니다. The default value is 1.
RadarGridLines
  
radarFill
Type: mx.graphics.IFill
레이더 차트 배경의 채우기 색을 결정합니다. The default value is 0xFFFFFF.
RadarGridLines
  
radialStroke
Type: mx.graphics.IStroke
레이더 배경의 radial 선 형태를 결정합니다.
RadarGridLines