라인 차트 컬러
fills 설정 시 아이템 내부의 색상이 fills 의 순서대로 반복되어 나타납니다.
    lineStroke : 선에 대한 색상 입니다.
    fills : itemRenderer의 안쪽의 공백의 채우기 색상 입니다.
    stroke : itemRenderer의 테두리 선 색상 입니다.
<Line2DSeries yField="Profit" itemRenderer="CircleItemRenderer">
	<lineStroke>
		<Stroke color="#FF5050" weight="2"/>
	</lineStroke>
	<fills>
		<SolidColor color="#316a9d"/>
		<SolidColor color="#ffca9b"/>
		<SolidColor color="#ff66cc"/>
	</fills>
	<stroke>
		<Stroke color="#FF5050" weight="2"/>
	</stroke>
</Line2DSeries>
  • Source
  • Layout
  • Data
  • Layout과 Data를 수정 후 적용 할 수 있습니다.
    수정적용