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
}
반응형