| Package | kor.elements |
| Class | public class AxisMarker |
<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>