| Package | kor.elements |
| Class | public class AxisRange |
<AxisRange>는 기본적으로 parent classes 의 모든 properties
를 상속받으며 아래의 properties 를 추가로 갖습니다.
레이아웃은 아래와 같이 작성합니다.
<rMateChart backgroundColor="0xFFFFFF" borderStyle="solid" cornerRadius="12">
...
<Line2DChart showDataTips="true" fontFamily="Myriad" selectionMode="single">
...
<backgroundElements>
<GridLines/>
<AxisMarker>
<ranges>
<AxisRange startValue="1000" endValue="2000" label="영역1" fontSize="11" labelHorizontalAlign="left" color="0xFF00FF">
<fill>
<SolidColor color="0x00FF99" alpha="0.2"/>
</fill>
</AxisRange>
<AxisRange startValue="Mar" endValue="May" label="영역2" fontSize="11" labelVerticalAlign="bottom" color="0x0066FF" horizontal="false">
<fill>
<SolidColor color="0x0099FF" alpha="0.2"/>
</fill>
</AxisRange>
<AxisRange startValue="Jul" endValue="Nov" label="영역3" fontSize="11" labelVerticalAlign="bottom" color="0x0066FF" horizontal="false">
<fill>
<SolidColor color="0xdd99FF" alpha="0.2"/>
</fill>
</AxisRange>
</ranges>
</AxisMarker>
</backgroundElements>
</Line2DChart>
</rMateChart>