Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Spring
- Jakarta Project
- Flex 2.0
- Melbourne
- Column Chart
- ActionScript 3.0
- flex
- events
- objective-c
- 정규식
- FLEX2.0
- Flex 2.0 Lecture
- 소스
- data
- examples
- download
- Java
- 3d
- JSP
- 자바스크립트
- LOG4J
- xml
- Linux
- Spring Framework
- 신혼여행
- Upload Component
- Session
- java web start
- Java Tips
- Renderer
Archives
- Today
- Total
宇而靜...
CategoryAxis와 LinearAxis에서의 Label Function 본문
두 축의 레이블의 값을 변경할 때 사용하는 함수이다.
각 축마다 labelFunction의 Parameter가 조금씩 다르다.
LinearAxis에서의 labelFunction
CategoryAxis 에서의 labelFunction
각 축마다 labelFunction의 Parameter가 조금씩 다르다.
LinearAxis에서의 labelFunction
public function getLabel(item:Object, prevValue:Object, axis:IAxis) : String
{
return 'something';
}
{
return 'something';
}
CategoryAxis 에서의 labelFunction
public function getLabel(categoryValue:Object, previousCategoryValue:Object,
axis:CategoryAxis, categoryItem:Object) : String
{
return 'something';
}
axis:CategoryAxis, categoryItem:Object) : String
{
return 'something';
}