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
- 자바스크립트
- 정규식
- Java Tips
- Linux
- Java
- java web start
- Column Chart
- Jakarta Project
- Flex 2.0 Lecture
- FLEX2.0
- Session
- download
- ActionScript 3.0
- 신혼여행
- data
- objective-c
- Renderer
- Spring
- xml
- examples
- flex
- Upload Component
- 소스
- LOG4J
- Flex 2.0
- JSP
- Melbourne
- events
- 3d
- Spring Framework
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';
}