일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Android
- 개발자
- androidstudio
- library
- 어플리케이션
- UIButton
- Chart
- UIKit
- ui
- 그래프
- TableView
- modal
- Swift
- Chrats
- charts
- graph
- kotlin
- Storyboard
- cocoapods
- UITableView
- PyQt
- ios
- button
- Xcode
- alamofire
- Apple
- 개발
- Python
- PyQt5
- 라이브러리
Archives
- Today
- Total
Jiwift
[iOS/Swift] DGCharts 그래프 라이브러리 범례 모양 변경 | charts graph form shape 본문
라이브러리/DGCharts
[iOS/Swift] DGCharts 그래프 라이브러리 범례 모양 변경 | charts graph form shape
지위프트 2022. 11. 23. 20:45반응형
// 데이터 범례 form 모양
self.myBarChartView.legend.form = .square
우리는 위 메서드를 통해서 legend의 form 모양을 수정 가능합니다.
바로 위 빨간색 네모 안 모양을 변경할 수 있는데요. 저는 기본적으로 legend를 없애고 사용해서 신경 쓰지는 않았지만 누군가는 필요할 수 있다고 생각이 들어서 알려드립니다.
아래는 기본적으로 지원하는 shape입니다.
public enum Form: Int {
/// Avoid drawing a form
case none
/// Do not draw the a form, but leave space for it
case empty
/// Use default (default dataset's form to the legend's form)
case `default`
/// Draw a square
case square
/// Draw a circle
case circle
/// Draw a horizontal line
case line
}
반응형