Packagekor.elements
Classpublic class AxisMarker

AxisMarker 클래스는 Chart의 좌표영역에 좌표를 기준으로 라인이나 범위를 표시하기 위해 사용됩니다.

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

레이아웃은 아래와 같이 작성합니다.

 <rMateChart backgroundColor="0xFFFFFF" borderStyle="solid" cornerRadius="12">
 ...
 <Line2DChart showDataTips="true" fontFamily="Myriad" selectionMode="single">
  ...
  <backgroundElements>
   <GridLines/>
   <AxisMarker>
    <lines>
     <AxisLine value="1000" label="Label 01" stroke="{stroke1}" labelUpDown="up" color="0xFF0000"/>
     <AxisLine value="1500" label="Label 02" stroke="{stroke1}" labelAlign="left" labelUpDown="down" color="0xFF0000"/>
     <AxisLine startValue="1000" endValue="2000" label="From-To Line" color="0x0000FF" labelAlign="right" labelUpDown="up">
      <stroke><Stroke color="0x0099FF" weight="1"/></stroke>
     </AxisLine>
    </lines>
   </AxisMarker>
  </backgroundElements>
 </Line2DChart>
 </rMateChart>
  



Styles
 StyleDescriptionDefined by
  
lines
Type: Array
좌표영역에 표시할 라인들을 나타내는 AxisLine의 배열. The default value is null.
AxisMarker
  
ranges
Type: Array
좌표영역에 표시할 범위들을 나타내는 AxisRange의 배열. The default value is null.
AxisMarker